blob: fe984c8358415e0d9f04e8bc5acc96993b185097 [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<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07003 ! Licensed to the Apache Software Foundation (ASF) under one
4 ! or more contributor license agreements. See the NOTICE file
5 ! distributed with this work for additional information
6 ! regarding copyright ownership. The ASF licenses this file
7 ! to you under the Apache License, Version 2.0 (the
8 ! "License"); you may not use this file except in compliance
9 ! with the License. You may obtain a copy of the License at
10 !
11 ! http://www.apache.org/licenses/LICENSE-2.0
12 !
13 ! Unless required by applicable law or agreed to in writing,
14 ! software distributed under the License is distributed on an
15 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ! KIND, either express or implied. See the License for the
17 ! specific language governing permissions and limitations
18 ! under the License.
Till Westmannea8ab392013-06-05 15:17:08 -070019 !-->
Ian Maxond2e1e892015-10-05 12:46:26 -070020<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/maven-v4_0_0.xsd">
Eldon Carman0228b9c2014-11-25 18:13:46 -080021 <modelVersion>4.0.0</modelVersion>
Ian Maxonf18bba22015-08-21 12:35:14 -070022 <groupId>org.apache.asterix</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080023 <artifactId>asterix</artifactId>
Ian Maxond2e1e892015-10-05 12:46:26 -070024 <version>0.8.7-incubating</version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080025 <packaging>pom</packaging>
26
Ian Maxon5c058c62015-08-21 16:06:15 -070027 <parent>
28 <groupId>org.apache</groupId>
29 <artifactId>apache</artifactId>
Ian Maxond2e1e892015-10-05 12:46:26 -070030 <version>17</version>
Ian Maxon5c058c62015-08-21 16:06:15 -070031 </parent>
32
Ian4a816dc2014-11-26 15:46:32 -080033 <licenses>
Preston Carmanc66d23a2015-07-08 23:44:13 -070034 <license>
35 <name>Apache License, Version 2.0</name>
36 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37 <distribution>repo</distribution>
38 <comments>A business-friendly OSS license</comments>
39 </license>
Ian4a816dc2014-11-26 15:46:32 -080040 </licenses>
41
Eldon Carman0228b9c2014-11-25 18:13:46 -080042 <properties>
43 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44 <jvm.extraargs />
45 <runSlowAQLTests>false</runSlowAQLTests>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080046
47 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080048 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
49 <metadata.tests>**/metadata/*Test.java</metadata.tests>
50 <execution.tests>**/ExecutionTest.java</execution.tests>
Ian Maxonc9a3a9b2015-07-31 15:27:39 -070051 <repeated.tests>**/RepeatedTest.java</repeated.tests>
Eldon Carman0228b9c2014-11-25 18:13:46 -080052 <invalid.tests>**/DmlTest.java</invalid.tests>
53 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
Preston Carmanc66d23a2015-07-08 23:44:13 -070054 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070055 <!-- Versions under dependencymanagement or used in many projects via properties -->
Ian Maxonfc738fd2015-09-02 20:42:09 -100056 <algebricks.version>0.2.16-incubating</algebricks.version>
57 <hyracks.version>0.2.16-incubating</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080058 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070059 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080060 <commons.io.version>2.4</commons.io.version>
61 <servlet.api.version>2.5</servlet.api.version>
62 <json.version>20090211</json.version>
63 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000064
Eldon Carman0228b9c2014-11-25 18:13:46 -080065 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -080069 <artifactId>maven-surefire-plugin</artifactId>
70 <version>2.16</version>
71 <configuration>
72 <failIfNoTests>false</failIfNoTests>
73 <systemPropertyVariables>
74 <skipFredSlowTests>true</skipFredSlowTests>
75 </systemPropertyVariables>
76 <forkCount>1</forkCount>
77 <reuseForks>false</reuseForks>
78 <argLine>-enableassertions -Xmx${test.heap.size}m
79 -Dfile.encoding=UTF-8
80 -Djava.util.logging.config.file=${user.home}/logging.properties
81 -DrunSlowAQLTests=${runSlowAQLTests}
82 -Xdebug
83 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
84 <includes>
85 <include>${global.test.includes},${test.includes}</include>
86 </includes>
87 <excludes>
88 <exclude>${global.test.excludes},${test.excludes}</exclude>
89 </excludes>
90 </configuration>
91 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070092 <plugin>
93 <groupId>org.apache.rat</groupId>
94 <artifactId>apache-rat-plugin</artifactId>
95 <version>0.11</version>
96 <executions>
97 <execution>
98 <phase>verify</phase>
99 <goals>
100 <goal>check</goal>
101 </goals>
102 </execution>
103 </executions>
104 <configuration>
105 <excludeSubProjects>true</excludeSubProjects>
106 <licenses>
107 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
108 <licenseFamilyCategory>MIT</licenseFamilyCategory>
109 <licenseFamilyName>The MIT License</licenseFamilyName>
110 <notes>For JQuery MIT/GPL2 Dual License</notes>
111 <patterns>
112 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
113 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
114 <pattern>http://jquery.org/license</pattern>
115 <pattern>Dual licensed under the MIT</pattern>
116 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
117 </patterns>
118 </license>
119 </licenses>
120 <licenseFamilies>
121 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
122 <familyName>The MIT License</familyName>
123 </licenseFamily>
124 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
125 <familyName>Apache License Version 2.0</familyName>
126 </licenseFamily>
127 </licenseFamilies>
128 <excludes>
129 <exclude>**/*.adm</exclude>
130 <exclude>**/*.aql</exclude>
131 <exclude>**/*.csv</exclude>
132 <exclude>**/*.ddl</exclude>
133 <exclude>**/*.iml</exclude>
134 <exclude>**/*.out</exclude>
135 <exclude>**/*.tbl</exclude>
136 <exclude>**/*.tsv</exclude>
137 <exclude>**/*.txt</exclude>
138 <exclude>**/*.xsd</exclude>
139 </excludes>
140 <includes>
141 <include>**/asterix-*</include>
142 <include>**/*.java</include>
143 </includes>
144 </configuration>
145 </plugin>
Ian Maxonfc738fd2015-09-02 20:42:09 -1000146 <plugin>
147 <groupId>org.apache.maven.plugins</groupId>
148 <artifactId>maven-assembly-plugin</artifactId>
149 <!-- We override the configuration plugin to override the descriptor to use for building
150 the source release zip. Specifically, we would like to control the inclusions/exclusions.
151 For example, we exclude the KEYS file from the zip -->
152 <executions>
153 <execution>
154 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
155 the apache parent POM under the apache-release profile -->
156 <id>source-release-assembly</id>
157 <phase>package</phase>
158 <goals>
159 <goal>single</goal>
160 </goals>
161 <!-- combine.self should be override to replace the configuration in the parent POM -->
162 <configuration combine.self="override">
163 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
164 <descriptors>
165 <descriptor>src/main/assembly/source.xml</descriptor>
166 </descriptors>
167 </configuration>
168 </execution>
169 </executions>
170 </plugin>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800171 </plugins>
172 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000173
Eldon Carman0228b9c2014-11-25 18:13:46 -0800174 <scm>
Ian Maxon5c058c62015-08-21 16:06:15 -0700175 <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection>
176 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
177 <url>https://github.com/apache/incubator-asterixdb</url>
vinayakb38b7ca42012-03-05 05:44:15 +0000178
Ian Maxond2e1e892015-10-05 12:46:26 -0700179 <tag>asterix-0.8.7-incubating</tag>
180 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000181
182 <profiles>
183 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800184 <id>slow-aql-tests</id>
185 <properties>
186 <runSlowAQLTests>true</runSlowAQLTests>
187 </properties>
188 </profile>
189 <profile>
190 <id>optimizer-tests</id>
191 <properties>
192 <optimizer.tests />
193 </properties>
194 </profile>
195 <profile>
196 <id>metadata-tests</id>
197 <properties>
198 <metadata.tests />
199 </properties>
200 </profile>
201 <profile>
202 <id>execution-tests</id>
203 <properties>
204 <execution.tests />
205 </properties>
206 </profile>
207 <profile>
208 <id>invalid-tests</id>
209 <properties>
210 <invalid.tests />
211 </properties>
212 </profile>
213 <profile>
214 <id>32bitvm</id>
215 <activation>
216 <property>
217 <name>sun.arch.data.model</name>
218 <value>32</value>
219 </property>
220 </activation>
221 <properties>
222 <test.heap.size>2048</test.heap.size>
223 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000224 </profile>
225
226 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800227 <id>64bitvm</id>
228 <activation>
229 <property>
230 <name>sun.arch.data.model</name>
231 <value>64</value>
232 </property>
233 </activation>
234 <properties>
235 <test.heap.size>3072</test.heap.size>
236 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000237 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800238
vinayakb38b7ca42012-03-05 05:44:15 +0000239 </profiles>
240
Eldon Carman0228b9c2014-11-25 18:13:46 -0800241 <modules>
242 <module>asterix-common</module>
243 <module>asterix-algebra</module>
244 <module>asterix-app</module>
245 <module>asterix-tools</module>
246 <module>asterix-transactions</module>
247 <module>asterix-runtime</module>
248 <module>asterix-om</module>
249 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700250 <module>asterix-external-data</module>
251 <module>asterix-examples</module>
252 <module>asterix-metadata</module>
253 <module>asterix-test-framework</module>
254 <module>asterix-maven-plugins</module>
255 <module>asterix-server</module>
256 <module>asterix-installer</module>
257 <module>asterix-events</module>
258 <module>asterix-doc</module>
259 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700260 <module>asterix-yarn</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800261 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000262
Eldon Carman0228b9c2014-11-25 18:13:46 -0800263 <repositories>
264 <repository>
265 <releases>
266 <enabled>true</enabled>
267 <updatePolicy>always</updatePolicy>
268 <checksumPolicy>warn</checksumPolicy>
269 </releases>
270 <snapshots>
271 <enabled>true</enabled>
272 <updatePolicy>always</updatePolicy>
273 <checksumPolicy>fail</checksumPolicy>
274 </snapshots>
275 <id>asterix-public</id>
276 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
277 </repository>
278 <repository>
279 <releases>
280 <enabled>true</enabled>
281 <updatePolicy>always</updatePolicy>
282 <checksumPolicy>warn</checksumPolicy>
283 </releases>
284 <snapshots>
285 <enabled>true</enabled>
286 <updatePolicy>always</updatePolicy>
287 <checksumPolicy>fail</checksumPolicy>
288 </snapshots>
289 <id>third-party</id>
290 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
291 </repository>
292 <repository>
293 <releases>
294 <enabled>true</enabled>
295 <updatePolicy>always</updatePolicy>
296 <checksumPolicy>warn</checksumPolicy>
297 </releases>
298 <id>algebricks-releases</id>
299 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
300 </repository>
301 <repository>
302 <snapshots>
303 <enabled>true</enabled>
304 <updatePolicy>always</updatePolicy>
305 <checksumPolicy>fail</checksumPolicy>
306 </snapshots>
307 <id>algebricks-snapshots</id>
308 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
309 </repository>
310 </repositories>
311 <dependencyManagement>
312 <dependencies>
313 <dependency>
314 <groupId>junit</groupId>
315 <artifactId>junit</artifactId>
316 <version>${junit.version}</version>
317 </dependency>
318 <dependency>
319 <groupId>org.apache.maven</groupId>
320 <artifactId>maven-plugin-api</artifactId>
321 <version>2.2.1</version>
322 </dependency>
323 <dependency>
324 <groupId>org.apache.hadoop</groupId>
325 <artifactId>hadoop-yarn-common</artifactId>
326 <version>${hadoop.version}</version>
327 </dependency>
328 <dependency>
329 <groupId>org.apache.hadoop</groupId>
330 <artifactId>hadoop-yarn-client</artifactId>
331 <version>${hadoop.version}</version>
332 </dependency>
333 <dependency>
334 <groupId>org.apache.hadoop</groupId>
335 <artifactId>hadoop-client</artifactId>
336 <version>${hadoop.version}</version>
337 </dependency>
338 <dependency>
339 <groupId>org.apache.hadoop</groupId>
340 <artifactId>hadoop-hdfs</artifactId>
341 <version>${hadoop.version}</version>
342 </dependency>
343 <dependency>
344 <groupId>org.apache.hadoop</groupId>
345 <artifactId>hadoop-common</artifactId>
346 <version>${hadoop.version}</version>
347 </dependency>
348 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700349 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800350 <artifactId>algebricks-compiler</artifactId>
351 <version>${algebricks.version}</version>
352 </dependency>
353 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700354 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800355 <artifactId>hyracks-api</artifactId>
356 <version>${hyracks.version}</version>
357 </dependency>
358 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700359 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800360 <artifactId>hyracks-dataflow-std</artifactId>
361 <version>${hyracks.version}</version>
362 </dependency>
363 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700364 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800365 <artifactId>hyracks-control-cc</artifactId>
366 <version>${hyracks.version}</version>
367 </dependency>
368 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700369 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800370 <artifactId>hyracks-control-nc</artifactId>
371 <version>${hyracks.version}</version>
372 </dependency>
373 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700374 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800375 <artifactId>hyracks-server</artifactId>
376 <version>${hyracks.version}</version>
377 </dependency>
378 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700379 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800380 <artifactId>hyracks-cli</artifactId>
381 <version>${hyracks.version}</version>
382 </dependency>
383 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700384 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800385 <artifactId>hyracks-dataflow-hadoop</artifactId>
386 <version>${hyracks.version}</version>
387 </dependency>
388 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700389 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800390 <artifactId>hyracks-storage-am-btree</artifactId>
391 <version>${hyracks.version}</version>
392 </dependency>
393 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700394 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800395 <artifactId>hyracks-storage-am-rtree</artifactId>
396 <version>${hyracks.version}</version>
397 </dependency>
398 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700399 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700400 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800401 <version>${hyracks.version}</version>
402 </dependency>
403 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700404 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800405 <artifactId>hyracks-storage-am-common</artifactId>
406 <version>${hyracks.version}</version>
407 </dependency>
408 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700409 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000410 <artifactId>hyracks-client</artifactId>
411 <version>${hyracks.version}</version>
412 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800413 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700414 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800415 <artifactId>hyracks-storage-am-lsm-common</artifactId>
416 <version>${hyracks.version}</version>
417 </dependency>
418 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700419 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800420 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
421 <version>${hyracks.version}</version>
422 </dependency>
423 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700424 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800425 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
426 <version>${hyracks.version}</version>
427 </dependency>
428 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700429 <groupId>org.apache.hyracks</groupId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800430 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
431 <version>${hyracks.version}</version>
432 </dependency>
433 <dependency>
434 <groupId>org.json</groupId>
435 <artifactId>json</artifactId>
436 <version>${json.version}</version>
437 <type>jar</type>
438 </dependency>
439 <dependency>
440 <groupId>javax.servlet</groupId>
441 <artifactId>servlet-api</artifactId>
442 <version>${servlet.api.version}</version>
443 <type>jar</type>
444 </dependency>
445 <dependency>
446 <groupId>commons-io</groupId>
447 <artifactId>commons-io</artifactId>
448 <version>${commons.io.version}</version>
449 </dependency>
450 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000451 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000452</project>