blob: f756fce9600b17b4f710174b103da3272cc45ebd [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001<?xml version="1.0" encoding="UTF-8"?>
Till Westmannea8ab392013-06-05 15:17:08 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
15 !-->
Eldon Carman0228b9c2014-11-25 18:13:46 -080016<project
17 xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
Ian Maxonf18bba22015-08-21 12:35:14 -070021 <groupId>org.apache.asterix</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080022 <artifactId>asterix</artifactId>
23 <version>0.8.7-SNAPSHOT</version>
24 <packaging>pom</packaging>
25
Ian Maxon5c058c62015-08-21 16:06:15 -070026 <parent>
27 <groupId>org.apache</groupId>
28 <artifactId>apache</artifactId>
29 <version>LATEST</version>
30 </parent>
31
Ian4a816dc2014-11-26 15:46:32 -080032 <licenses>
Preston Carmanc66d23a2015-07-08 23:44:13 -070033 <license>
34 <name>Apache License, Version 2.0</name>
35 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
36 <distribution>repo</distribution>
37 <comments>A business-friendly OSS license</comments>
38 </license>
Ian4a816dc2014-11-26 15:46:32 -080039 </licenses>
40
Eldon Carman0228b9c2014-11-25 18:13:46 -080041 <properties>
42 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43 <jvm.extraargs />
44 <runSlowAQLTests>false</runSlowAQLTests>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080045
46 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080047 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
48 <metadata.tests>**/metadata/*Test.java</metadata.tests>
49 <execution.tests>**/ExecutionTest.java</execution.tests>
Ian Maxonc9a3a9b2015-07-31 15:27:39 -070050 <repeated.tests>**/RepeatedTest.java</repeated.tests>
Eldon Carman0228b9c2014-11-25 18:13:46 -080051 <invalid.tests>**/DmlTest.java</invalid.tests>
52 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
Preston Carmanc66d23a2015-07-08 23:44:13 -070053 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070054 <!-- Versions under dependencymanagement or used in many projects via properties -->
Taewoo Kima12d8cd2015-03-04 13:47:08 -080055 <algebricks.version>0.2.16-SNAPSHOT</algebricks.version>
56 <hyracks.version>0.2.16-SNAPSHOT</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080057 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070058 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080059 <commons.io.version>2.4</commons.io.version>
60 <servlet.api.version>2.5</servlet.api.version>
61 <json.version>20090211</json.version>
62 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000063
Eldon Carman0228b9c2014-11-25 18:13:46 -080064 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-release-plugin</artifactId>
Ian Maxon35806392015-08-31 10:22:41 -100069 <version>2.5.2</version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080070 <configuration>
71 <goals>package source:jar javadoc:jar deploy:deploy</goals>
72 </configuration>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-surefire-plugin</artifactId>
77 <version>2.16</version>
78 <configuration>
79 <failIfNoTests>false</failIfNoTests>
80 <systemPropertyVariables>
81 <skipFredSlowTests>true</skipFredSlowTests>
82 </systemPropertyVariables>
83 <forkCount>1</forkCount>
84 <reuseForks>false</reuseForks>
85 <argLine>-enableassertions -Xmx${test.heap.size}m
86 -Dfile.encoding=UTF-8
87 -Djava.util.logging.config.file=${user.home}/logging.properties
88 -DrunSlowAQLTests=${runSlowAQLTests}
89 -Xdebug
90 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
91 <includes>
92 <include>${global.test.includes},${test.includes}</include>
93 </includes>
94 <excludes>
95 <exclude>${global.test.excludes},${test.excludes}</exclude>
96 </excludes>
97 </configuration>
98 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070099 <plugin>
100 <groupId>org.apache.rat</groupId>
101 <artifactId>apache-rat-plugin</artifactId>
102 <version>0.11</version>
103 <executions>
104 <execution>
105 <phase>verify</phase>
106 <goals>
107 <goal>check</goal>
108 </goals>
109 </execution>
110 </executions>
111 <configuration>
112 <excludeSubProjects>true</excludeSubProjects>
113 <licenses>
114 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
115 <licenseFamilyCategory>MIT</licenseFamilyCategory>
116 <licenseFamilyName>The MIT License</licenseFamilyName>
117 <notes>For JQuery MIT/GPL2 Dual License</notes>
118 <patterns>
119 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
120 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
121 <pattern>http://jquery.org/license</pattern>
122 <pattern>Dual licensed under the MIT</pattern>
123 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
124 </patterns>
125 </license>
126 </licenses>
127 <licenseFamilies>
128 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
129 <familyName>The MIT License</familyName>
130 </licenseFamily>
131 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
132 <familyName>Apache License Version 2.0</familyName>
133 </licenseFamily>
134 </licenseFamilies>
135 <excludes>
136 <exclude>**/*.adm</exclude>
137 <exclude>**/*.aql</exclude>
138 <exclude>**/*.csv</exclude>
139 <exclude>**/*.ddl</exclude>
140 <exclude>**/*.iml</exclude>
141 <exclude>**/*.out</exclude>
142 <exclude>**/*.tbl</exclude>
143 <exclude>**/*.tsv</exclude>
144 <exclude>**/*.txt</exclude>
145 <exclude>**/*.xsd</exclude>
146 </excludes>
147 <includes>
148 <include>**/asterix-*</include>
149 <include>**/*.java</include>
150 </includes>
151 </configuration>
152 </plugin>
Ian Maxon032a1782015-06-30 17:10:51 -0700153
Eldon Carman0228b9c2014-11-25 18:13:46 -0800154 </plugins>
155 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000156
Eldon Carman0228b9c2014-11-25 18:13:46 -0800157 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700158 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
159 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
160 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000161
Ian Maxon5c058c62015-08-21 16:06:15 -0700162 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000163
164 <profiles>
165 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800166 <id>slow-aql-tests</id>
167 <properties>
168 <runSlowAQLTests>true</runSlowAQLTests>
169 </properties>
170 </profile>
171 <profile>
172 <id>optimizer-tests</id>
173 <properties>
174 <optimizer.tests />
175 </properties>
176 </profile>
177 <profile>
178 <id>metadata-tests</id>
179 <properties>
180 <metadata.tests />
181 </properties>
182 </profile>
183 <profile>
184 <id>execution-tests</id>
185 <properties>
186 <execution.tests />
187 </properties>
188 </profile>
189 <profile>
190 <id>invalid-tests</id>
191 <properties>
192 <invalid.tests />
193 </properties>
194 </profile>
195 <profile>
196 <id>32bitvm</id>
197 <activation>
198 <property>
199 <name>sun.arch.data.model</name>
200 <value>32</value>
201 </property>
202 </activation>
203 <properties>
204 <test.heap.size>2048</test.heap.size>
205 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000206 </profile>
207
208 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800209 <id>64bitvm</id>
210 <activation>
211 <property>
212 <name>sun.arch.data.model</name>
213 <value>64</value>
214 </property>
215 </activation>
216 <properties>
217 <test.heap.size>3072</test.heap.size>
218 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000219 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800220
vinayakb38b7ca42012-03-05 05:44:15 +0000221 </profiles>
222
Eldon Carman0228b9c2014-11-25 18:13:46 -0800223 <modules>
224 <module>asterix-common</module>
225 <module>asterix-algebra</module>
226 <module>asterix-app</module>
227 <module>asterix-tools</module>
228 <module>asterix-transactions</module>
229 <module>asterix-runtime</module>
230 <module>asterix-om</module>
231 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700232 <module>asterix-external-data</module>
233 <module>asterix-examples</module>
234 <module>asterix-metadata</module>
235 <module>asterix-test-framework</module>
236 <module>asterix-maven-plugins</module>
237 <module>asterix-server</module>
238 <module>asterix-installer</module>
239 <module>asterix-events</module>
240 <module>asterix-doc</module>
241 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700242 <module>asterix-yarn</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800243 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000244
Eldon Carman0228b9c2014-11-25 18:13:46 -0800245 <repositories>
246 <repository>
247 <releases>
248 <enabled>true</enabled>
249 <updatePolicy>always</updatePolicy>
250 <checksumPolicy>warn</checksumPolicy>
251 </releases>
252 <snapshots>
253 <enabled>true</enabled>
254 <updatePolicy>always</updatePolicy>
255 <checksumPolicy>fail</checksumPolicy>
256 </snapshots>
257 <id>asterix-public</id>
258 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
259 </repository>
260 <repository>
261 <releases>
262 <enabled>true</enabled>
263 <updatePolicy>always</updatePolicy>
264 <checksumPolicy>warn</checksumPolicy>
265 </releases>
266 <snapshots>
267 <enabled>true</enabled>
268 <updatePolicy>always</updatePolicy>
269 <checksumPolicy>fail</checksumPolicy>
270 </snapshots>
271 <id>third-party</id>
272 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
273 </repository>
274 <repository>
275 <releases>
276 <enabled>true</enabled>
277 <updatePolicy>always</updatePolicy>
278 <checksumPolicy>warn</checksumPolicy>
279 </releases>
280 <id>algebricks-releases</id>
281 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
282 </repository>
283 <repository>
284 <snapshots>
285 <enabled>true</enabled>
286 <updatePolicy>always</updatePolicy>
287 <checksumPolicy>fail</checksumPolicy>
288 </snapshots>
289 <id>algebricks-snapshots</id>
290 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
291 </repository>
292 </repositories>
293 <dependencyManagement>
294 <dependencies>
295 <dependency>
296 <groupId>junit</groupId>
297 <artifactId>junit</artifactId>
298 <version>${junit.version}</version>
299 </dependency>
300 <dependency>
301 <groupId>org.apache.maven</groupId>
302 <artifactId>maven-plugin-api</artifactId>
303 <version>2.2.1</version>
304 </dependency>
305 <dependency>
306 <groupId>org.apache.hadoop</groupId>
307 <artifactId>hadoop-yarn-common</artifactId>
308 <version>${hadoop.version}</version>
309 </dependency>
310 <dependency>
311 <groupId>org.apache.hadoop</groupId>
312 <artifactId>hadoop-yarn-client</artifactId>
313 <version>${hadoop.version}</version>
314 </dependency>
315 <dependency>
316 <groupId>org.apache.hadoop</groupId>
317 <artifactId>hadoop-client</artifactId>
318 <version>${hadoop.version}</version>
319 </dependency>
320 <dependency>
321 <groupId>org.apache.hadoop</groupId>
322 <artifactId>hadoop-hdfs</artifactId>
323 <version>${hadoop.version}</version>
324 </dependency>
325 <dependency>
326 <groupId>org.apache.hadoop</groupId>
327 <artifactId>hadoop-common</artifactId>
328 <version>${hadoop.version}</version>
329 </dependency>
330 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700331 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800332 <artifactId>algebricks-compiler</artifactId>
333 <version>${algebricks.version}</version>
334 </dependency>
335 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700336 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800337 <artifactId>hyracks-api</artifactId>
338 <version>${hyracks.version}</version>
339 </dependency>
340 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700341 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800342 <artifactId>hyracks-dataflow-std</artifactId>
343 <version>${hyracks.version}</version>
344 </dependency>
345 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700346 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800347 <artifactId>hyracks-control-cc</artifactId>
348 <version>${hyracks.version}</version>
349 </dependency>
350 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700351 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800352 <artifactId>hyracks-control-nc</artifactId>
353 <version>${hyracks.version}</version>
354 </dependency>
355 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700356 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800357 <artifactId>hyracks-server</artifactId>
358 <version>${hyracks.version}</version>
359 </dependency>
360 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700361 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800362 <artifactId>hyracks-cli</artifactId>
363 <version>${hyracks.version}</version>
364 </dependency>
365 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700366 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800367 <artifactId>hyracks-dataflow-hadoop</artifactId>
368 <version>${hyracks.version}</version>
369 </dependency>
370 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700371 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800372 <artifactId>hyracks-storage-am-btree</artifactId>
373 <version>${hyracks.version}</version>
374 </dependency>
375 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700376 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800377 <artifactId>hyracks-storage-am-rtree</artifactId>
378 <version>${hyracks.version}</version>
379 </dependency>
380 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700381 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700382 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800383 <version>${hyracks.version}</version>
384 </dependency>
385 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700386 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800387 <artifactId>hyracks-storage-am-common</artifactId>
388 <version>${hyracks.version}</version>
389 </dependency>
390 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700391 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000392 <artifactId>hyracks-client</artifactId>
393 <version>${hyracks.version}</version>
394 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800395 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700396 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800397 <artifactId>hyracks-storage-am-lsm-common</artifactId>
398 <version>${hyracks.version}</version>
399 </dependency>
400 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700401 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800402 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
403 <version>${hyracks.version}</version>
404 </dependency>
405 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700406 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800407 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
408 <version>${hyracks.version}</version>
409 </dependency>
410 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700411 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800412 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
413 <version>${hyracks.version}</version>
414 </dependency>
415 <dependency>
416 <groupId>org.json</groupId>
417 <artifactId>json</artifactId>
418 <version>${json.version}</version>
419 <type>jar</type>
420 </dependency>
421 <dependency>
422 <groupId>javax.servlet</groupId>
423 <artifactId>servlet-api</artifactId>
424 <version>${servlet.api.version}</version>
425 <type>jar</type>
426 </dependency>
427 <dependency>
428 <groupId>commons-io</groupId>
429 <artifactId>commons-io</artifactId>
430 <version>${commons.io.version}</version>
431 </dependency>
432 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000433 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000434</project>