blob: efffbaf2dd8ddee97888d08863f639c65d84e5c0 [file] [log] [blame]
Ian Maxon928bbd12015-09-14 17:12:48 -07001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
vinayakb38b7ca42012-03-05 05:44:15 +000020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon44ae40a2015-09-30 18:20:07 -070024 <version>0.8.7-incubating</version>
vinayakb38b7ca42012-03-05 05:44:15 +000025 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000026 <artifactId>asterix-common</artifactId>
Ian4a816dc2014-11-26 15:46:32 -080027
28 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
36
vinayakb38b7ca42012-03-05 05:44:15 +000037 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070042 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000043 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000044 <source>1.7</source>
45 <target>1.7</target>
46 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000047 </configuration>
48 </plugin>
ramangrover296c282a12013-04-28 22:52:35 -070049 <plugin>
50 <groupId>org.jvnet.jaxb2.maven2</groupId>
51 <artifactId>maven-jaxb2-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070052 <version>0.9.0</version>
ramangrover296c282a12013-04-28 22:52:35 -070053 <executions>
54 <execution>
55 <id>configuration</id>
56 <goals>
57 <goal>generate</goal>
58 </goals>
59 <configuration>
60 <args>
61 <arg>-Xsetters</arg>
62 <arg>-Xvalue-constructor</arg>
63 </args>
64 <plugins>
65 <plugin>
66 <groupId>org.jvnet.jaxb2_commons</groupId>
67 <artifactId>jaxb2-basics</artifactId>
68 <version>0.6.2</version>
69 </plugin>
70 <plugin>
71 <groupId>org.jvnet.jaxb2_commons</groupId>
72 <artifactId>jaxb2-value-constructor</artifactId>
73 <version>3.0</version>
74 </plugin>
75 </plugins>
76 <schemaDirectory>src/main/resources/schema</schemaDirectory>
77 <schemaIncludes>
78 <include>asterix-conf.xsd</include>
79 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -070080 <generatePackage>org.apache.asterix.common.configuration</generatePackage>
ramangrover296c282a12013-04-28 22:52:35 -070081 <bindingDirectory>src/main/resources/schema</bindingDirectory>
82 <bindingIncludes>
83 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
84 </bindingIncludes>
85 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
86 </configuration>
87 </execution>
ramangrover29b2201c42013-05-30 15:40:24 -070088 <execution>
89 <id>cluster</id>
90 <goals>
91 <goal>generate</goal>
92 </goals>
93 <configuration>
94 <args>
95 <arg>-Xsetters</arg>
96 <arg>-Xvalue-constructor</arg>
97 </args>
98 <plugins>
99 <plugin>
100 <groupId>org.jvnet.jaxb2_commons</groupId>
101 <artifactId>jaxb2-basics</artifactId>
102 <version>0.6.2</version>
103 </plugin>
104 <plugin>
105 <groupId>org.jvnet.jaxb2_commons</groupId>
106 <artifactId>jaxb2-value-constructor</artifactId>
107 <version>3.0</version>
108 </plugin>
109 </plugins>
110 <schemaDirectory>src/main/resources/schema</schemaDirectory>
111 <schemaIncludes>
112 <include>cluster.xsd</include>
113 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -0700114 <generatePackage>org.apache.asterix.event.schema.cluster</generatePackage>
ramangrover29b2201c42013-05-30 15:40:24 -0700115 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
116 <bindingDirectory>src/main/resources/schema</bindingDirectory>
117 <bindingIncludes>
118 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
119 </bindingIncludes>
120 </configuration>
121 </execution>
Ian Maxon69375a12015-06-29 16:12:53 -0700122 <execution>
123 <id>yarn_cluster</id>
124 <goals>
125 <goal>generate</goal>
126 </goals>
127 <configuration>
128 <args>
129 <arg>-Xsetters</arg>
130 <arg>-Xvalue-constructor</arg>
131 </args>
132 <plugins>
133 <plugin>
134 <groupId>org.jvnet.jaxb2_commons</groupId>
135 <artifactId>jaxb2-basics</artifactId>
136 <version>0.6.2</version>
137 </plugin>
138 <plugin>
139 <groupId>org.jvnet.jaxb2_commons</groupId>
140 <artifactId>jaxb2-value-constructor</artifactId>
141 <version>3.0</version>
142 </plugin>
143 </plugins>
144 <schemaDirectory>src/main/resources/schema</schemaDirectory>
145 <schemaIncludes>
146 <include>yarn_cluster.xsd</include>
147 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -0700148 <generatePackage>org.apache.asterix.event.schema.yarnCluster</generatePackage>
Ian Maxon69375a12015-06-29 16:12:53 -0700149 <generateDirectory>${project.build.directory}/generated-sources/yarn_cluster</generateDirectory>
150 <bindingDirectory>src/main/resources/schema</bindingDirectory>
151 <bindingIncludes>
152 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
153 </bindingIncludes>
154 </configuration>
155 </execution>
ramangrover296c282a12013-04-28 22:52:35 -0700156 </executions>
157 </plugin>
ramangrover29330a5412013-04-29 20:59:17 -0700158 <plugin>
159 <groupId>org.apache.maven.plugins</groupId>
160 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -0700161 <version>2.4</version>
ramangrover29330a5412013-04-29 20:59:17 -0700162 <configuration>
163 <includes>
164 <include>**/*.class</include>
165 </includes>
166 </configuration>
167 <executions>
168 <execution>
169 <goals>
170 <goal>test-jar</goal>
171 </goals>
172 </execution>
173 </executions>
174 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +0000175 </plugins>
176 </build>
177
178 <dependencies>
179 <dependency>
Raman Grovercbc00342013-04-22 21:16:54 -0700180 <groupId>commons-io</groupId>
181 <artifactId>commons-io</artifactId>
Raman Grovercbc00342013-04-22 21:16:54 -0700182 </dependency>
183 <dependency>
184 <groupId>commons-httpclient</groupId>
185 <artifactId>commons-httpclient</artifactId>
186 <version>3.0.1</version>
187 </dependency>
188 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700189 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000190 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000191 </dependency>
192 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700193 <groupId>org.apache.hyracks</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000194 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000195 </dependency>
196 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700197 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000198 <artifactId>hyracks-storage-am-lsm-common</artifactId>
199 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700200 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700201 <groupId>org.apache.hyracks</groupId>
ramangrover29f9f78342013-05-23 15:07:39 -0700202 <artifactId>hyracks-storage-am-common</artifactId>
203 </dependency>
204 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700205 <groupId>org.apache.hyracks</groupId>
ramangrover29f9f78342013-05-23 15:07:39 -0700206 <artifactId>hyracks-api</artifactId>
207 </dependency>
208 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700209 <groupId>org.apache.asterix</groupId>
ramangrover29330a5412013-04-29 20:59:17 -0700210 <artifactId>asterix-test-framework</artifactId>
Ian Maxon44ae40a2015-09-30 18:20:07 -0700211 <version>0.8.7-incubating</version>
ramangrover29330a5412013-04-29 20:59:17 -0700212 <scope>test</scope>
213 </dependency>
214 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700215 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700216 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
217 </dependency>
218 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700219 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700220 <artifactId>
221 hyracks-storage-am-lsm-invertedindex
222 </artifactId>
223 </dependency>
224 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700225 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700226 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
zheilbronba60a382013-06-04 00:48:52 -0700227 </dependency>
228 <dependency>
Madhusudan.C.S117fdf92013-06-02 23:46:44 -0700229 <groupId>com.fasterxml.jackson.core</groupId>
230 <artifactId>jackson-core</artifactId>
231 <version>2.2.0</version>
232 </dependency>
233 <dependency>
234 <groupId>org.codehaus.jackson</groupId>
235 <artifactId>jackson-mapper-asl</artifactId>
236 <version>1.9.12</version>
zheilbron25cb8bf2013-06-04 00:04:04 -0700237 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000238 </dependencies>
239
240</project>
241