blob: 6f4217ea6f32519e780ec3ead95bb9a7271f327f [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>
21 <groupId>edu.uci.ics.asterix</groupId>
22 <artifactId>asterix</artifactId>
23 <version>0.8.7-SNAPSHOT</version>
24 <packaging>pom</packaging>
25
Ian4a816dc2014-11-26 15:46:32 -080026 <licenses>
Preston Carmanc66d23a2015-07-08 23:44:13 -070027 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 <distribution>repo</distribution>
31 <comments>A business-friendly OSS license</comments>
32 </license>
Ian4a816dc2014-11-26 15:46:32 -080033 </licenses>
34
Eldon Carman0228b9c2014-11-25 18:13:46 -080035 <properties>
36 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37 <jvm.extraargs />
38 <runSlowAQLTests>false</runSlowAQLTests>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080039
40 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080041 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
42 <metadata.tests>**/metadata/*Test.java</metadata.tests>
43 <execution.tests>**/ExecutionTest.java</execution.tests>
Preston Carmanc66d23a2015-07-08 23:44:13 -070044 <repeated.tests>**/ExecutionTest.java</repeated.tests>
Eldon Carman0228b9c2014-11-25 18:13:46 -080045 <invalid.tests>**/DmlTest.java</invalid.tests>
46 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
Preston Carmanc66d23a2015-07-08 23:44:13 -070047 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070048 <!-- Versions under dependencymanagement or used in many projects via properties -->
Taewoo Kima12d8cd2015-03-04 13:47:08 -080049 <algebricks.version>0.2.16-SNAPSHOT</algebricks.version>
50 <hyracks.version>0.2.16-SNAPSHOT</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080051 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070052 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080053 <commons.io.version>2.4</commons.io.version>
54 <servlet.api.version>2.5</servlet.api.version>
55 <json.version>20090211</json.version>
56 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000057
Eldon Carman0228b9c2014-11-25 18:13:46 -080058 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-release-plugin</artifactId>
63 <version>2.1</version>
64 <configuration>
65 <goals>package source:jar javadoc:jar deploy:deploy</goals>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-surefire-plugin</artifactId>
71 <version>2.16</version>
72 <configuration>
73 <failIfNoTests>false</failIfNoTests>
74 <systemPropertyVariables>
75 <skipFredSlowTests>true</skipFredSlowTests>
76 </systemPropertyVariables>
77 <forkCount>1</forkCount>
78 <reuseForks>false</reuseForks>
79 <argLine>-enableassertions -Xmx${test.heap.size}m
80 -Dfile.encoding=UTF-8
81 -Djava.util.logging.config.file=${user.home}/logging.properties
82 -DrunSlowAQLTests=${runSlowAQLTests}
83 -Xdebug
84 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
85 <includes>
86 <include>${global.test.includes},${test.includes}</include>
87 </includes>
88 <excludes>
89 <exclude>${global.test.excludes},${test.excludes}</exclude>
90 </excludes>
91 </configuration>
92 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070093 <plugin>
94 <groupId>org.apache.rat</groupId>
95 <artifactId>apache-rat-plugin</artifactId>
96 <version>0.11</version>
97 <executions>
98 <execution>
99 <phase>verify</phase>
100 <goals>
101 <goal>check</goal>
102 </goals>
103 </execution>
104 </executions>
105 <configuration>
106 <excludeSubProjects>true</excludeSubProjects>
107 <licenses>
108 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
109 <licenseFamilyCategory>MIT</licenseFamilyCategory>
110 <licenseFamilyName>The MIT License</licenseFamilyName>
111 <notes>For JQuery MIT/GPL2 Dual License</notes>
112 <patterns>
113 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
114 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
115 <pattern>http://jquery.org/license</pattern>
116 <pattern>Dual licensed under the MIT</pattern>
117 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
118 </patterns>
119 </license>
120 </licenses>
121 <licenseFamilies>
122 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
123 <familyName>The MIT License</familyName>
124 </licenseFamily>
125 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
126 <familyName>Apache License Version 2.0</familyName>
127 </licenseFamily>
128 </licenseFamilies>
129 <excludes>
130 <exclude>**/*.adm</exclude>
131 <exclude>**/*.aql</exclude>
132 <exclude>**/*.csv</exclude>
133 <exclude>**/*.ddl</exclude>
134 <exclude>**/*.iml</exclude>
135 <exclude>**/*.out</exclude>
136 <exclude>**/*.tbl</exclude>
137 <exclude>**/*.tsv</exclude>
138 <exclude>**/*.txt</exclude>
139 <exclude>**/*.xsd</exclude>
140 </excludes>
141 <includes>
142 <include>**/asterix-*</include>
143 <include>**/*.java</include>
144 </includes>
145 </configuration>
146 </plugin>
Ian Maxon032a1782015-06-30 17:10:51 -0700147
Eldon Carman0228b9c2014-11-25 18:13:46 -0800148 </plugins>
149 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000150
Eldon Carman0228b9c2014-11-25 18:13:46 -0800151 <scm>
152 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
153 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/asterixdb</developerConnection>
154 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +0000155
Eldon Carman0228b9c2014-11-25 18:13:46 -0800156 <distributionManagement>
157 <repository>
158 <id>asterix-releases</id>
159 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
160 </repository>
161 <snapshotRepository>
162 <id>asterix-snapshots</id>
163 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
164 </snapshotRepository>
165 </distributionManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000166
167 <profiles>
168 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800169 <id>slow-aql-tests</id>
170 <properties>
171 <runSlowAQLTests>true</runSlowAQLTests>
172 </properties>
173 </profile>
174 <profile>
175 <id>optimizer-tests</id>
176 <properties>
177 <optimizer.tests />
178 </properties>
179 </profile>
180 <profile>
181 <id>metadata-tests</id>
182 <properties>
183 <metadata.tests />
184 </properties>
185 </profile>
186 <profile>
187 <id>execution-tests</id>
188 <properties>
189 <execution.tests />
190 </properties>
191 </profile>
192 <profile>
193 <id>invalid-tests</id>
194 <properties>
195 <invalid.tests />
196 </properties>
197 </profile>
198 <profile>
199 <id>32bitvm</id>
200 <activation>
201 <property>
202 <name>sun.arch.data.model</name>
203 <value>32</value>
204 </property>
205 </activation>
206 <properties>
207 <test.heap.size>2048</test.heap.size>
208 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000209 </profile>
210
211 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800212 <id>64bitvm</id>
213 <activation>
214 <property>
215 <name>sun.arch.data.model</name>
216 <value>64</value>
217 </property>
218 </activation>
219 <properties>
220 <test.heap.size>3072</test.heap.size>
221 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000222 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800223
vinayakb38b7ca42012-03-05 05:44:15 +0000224 </profiles>
225
Eldon Carman0228b9c2014-11-25 18:13:46 -0800226 <modules>
227 <module>asterix-common</module>
228 <module>asterix-algebra</module>
229 <module>asterix-app</module>
230 <module>asterix-tools</module>
231 <module>asterix-transactions</module>
232 <module>asterix-runtime</module>
233 <module>asterix-om</module>
234 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700235 <module>asterix-external-data</module>
236 <module>asterix-examples</module>
237 <module>asterix-metadata</module>
238 <module>asterix-test-framework</module>
239 <module>asterix-maven-plugins</module>
240 <module>asterix-server</module>
241 <module>asterix-installer</module>
242 <module>asterix-events</module>
243 <module>asterix-doc</module>
244 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700245 <module>asterix-yarn</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800246 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000247
Eldon Carman0228b9c2014-11-25 18:13:46 -0800248 <repositories>
249 <repository>
250 <releases>
251 <enabled>true</enabled>
252 <updatePolicy>always</updatePolicy>
253 <checksumPolicy>warn</checksumPolicy>
254 </releases>
255 <snapshots>
256 <enabled>true</enabled>
257 <updatePolicy>always</updatePolicy>
258 <checksumPolicy>fail</checksumPolicy>
259 </snapshots>
260 <id>asterix-public</id>
261 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
262 </repository>
263 <repository>
264 <releases>
265 <enabled>true</enabled>
266 <updatePolicy>always</updatePolicy>
267 <checksumPolicy>warn</checksumPolicy>
268 </releases>
269 <snapshots>
270 <enabled>true</enabled>
271 <updatePolicy>always</updatePolicy>
272 <checksumPolicy>fail</checksumPolicy>
273 </snapshots>
274 <id>third-party</id>
275 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
276 </repository>
277 <repository>
278 <releases>
279 <enabled>true</enabled>
280 <updatePolicy>always</updatePolicy>
281 <checksumPolicy>warn</checksumPolicy>
282 </releases>
283 <id>algebricks-releases</id>
284 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
285 </repository>
286 <repository>
287 <snapshots>
288 <enabled>true</enabled>
289 <updatePolicy>always</updatePolicy>
290 <checksumPolicy>fail</checksumPolicy>
291 </snapshots>
292 <id>algebricks-snapshots</id>
293 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
294 </repository>
295 </repositories>
296 <dependencyManagement>
297 <dependencies>
298 <dependency>
299 <groupId>junit</groupId>
300 <artifactId>junit</artifactId>
301 <version>${junit.version}</version>
302 </dependency>
303 <dependency>
304 <groupId>org.apache.maven</groupId>
305 <artifactId>maven-plugin-api</artifactId>
306 <version>2.2.1</version>
307 </dependency>
308 <dependency>
309 <groupId>org.apache.hadoop</groupId>
310 <artifactId>hadoop-yarn-common</artifactId>
311 <version>${hadoop.version}</version>
312 </dependency>
313 <dependency>
314 <groupId>org.apache.hadoop</groupId>
315 <artifactId>hadoop-yarn-client</artifactId>
316 <version>${hadoop.version}</version>
317 </dependency>
318 <dependency>
319 <groupId>org.apache.hadoop</groupId>
320 <artifactId>hadoop-client</artifactId>
321 <version>${hadoop.version}</version>
322 </dependency>
323 <dependency>
324 <groupId>org.apache.hadoop</groupId>
325 <artifactId>hadoop-hdfs</artifactId>
326 <version>${hadoop.version}</version>
327 </dependency>
328 <dependency>
329 <groupId>org.apache.hadoop</groupId>
330 <artifactId>hadoop-common</artifactId>
331 <version>${hadoop.version}</version>
332 </dependency>
333 <dependency>
334 <groupId>edu.uci.ics.hyracks</groupId>
335 <artifactId>algebricks-compiler</artifactId>
336 <version>${algebricks.version}</version>
337 </dependency>
338 <dependency>
339 <groupId>edu.uci.ics.hyracks</groupId>
340 <artifactId>hyracks-api</artifactId>
341 <version>${hyracks.version}</version>
342 </dependency>
343 <dependency>
344 <groupId>edu.uci.ics.hyracks</groupId>
345 <artifactId>hyracks-dataflow-std</artifactId>
346 <version>${hyracks.version}</version>
347 </dependency>
348 <dependency>
349 <groupId>edu.uci.ics.hyracks</groupId>
350 <artifactId>hyracks-control-cc</artifactId>
351 <version>${hyracks.version}</version>
352 </dependency>
353 <dependency>
354 <groupId>edu.uci.ics.hyracks</groupId>
355 <artifactId>hyracks-control-nc</artifactId>
356 <version>${hyracks.version}</version>
357 </dependency>
358 <dependency>
359 <groupId>edu.uci.ics.hyracks</groupId>
360 <artifactId>hyracks-server</artifactId>
361 <version>${hyracks.version}</version>
362 </dependency>
363 <dependency>
364 <groupId>edu.uci.ics.hyracks</groupId>
365 <artifactId>hyracks-cli</artifactId>
366 <version>${hyracks.version}</version>
367 </dependency>
368 <dependency>
369 <groupId>edu.uci.ics.hyracks</groupId>
370 <artifactId>hyracks-dataflow-hadoop</artifactId>
371 <version>${hyracks.version}</version>
372 </dependency>
373 <dependency>
374 <groupId>edu.uci.ics.hyracks</groupId>
375 <artifactId>hyracks-storage-am-btree</artifactId>
376 <version>${hyracks.version}</version>
377 </dependency>
378 <dependency>
379 <groupId>edu.uci.ics.hyracks</groupId>
380 <artifactId>hyracks-storage-am-rtree</artifactId>
381 <version>${hyracks.version}</version>
382 </dependency>
383 <dependency>
384 <groupId>edu.uci.ics.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700385 <artifactId>hyracks-storage-am-invertedindex</artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800386 <version>${hyracks.version}</version>
387 </dependency>
388 <dependency>
389 <groupId>edu.uci.ics.hyracks</groupId>
390 <artifactId>hyracks-storage-am-common</artifactId>
391 <version>${hyracks.version}</version>
392 </dependency>
393 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000394 <groupId>edu.uci.ics.hyracks</groupId>
395 <artifactId>hyracks-client</artifactId>
396 <version>${hyracks.version}</version>
397 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800398 <dependency>
399 <groupId>edu.uci.ics.hyracks</groupId>
400 <artifactId>hyracks-storage-am-lsm-common</artifactId>
401 <version>${hyracks.version}</version>
402 </dependency>
403 <dependency>
404 <groupId>edu.uci.ics.hyracks</groupId>
405 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
406 <version>${hyracks.version}</version>
407 </dependency>
408 <dependency>
409 <groupId>edu.uci.ics.hyracks</groupId>
410 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
411 <version>${hyracks.version}</version>
412 </dependency>
413 <dependency>
414 <groupId>edu.uci.ics.hyracks</groupId>
415 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
416 <version>${hyracks.version}</version>
417 </dependency>
418 <dependency>
419 <groupId>org.json</groupId>
420 <artifactId>json</artifactId>
421 <version>${json.version}</version>
422 <type>jar</type>
423 </dependency>
424 <dependency>
425 <groupId>javax.servlet</groupId>
426 <artifactId>servlet-api</artifactId>
427 <version>${servlet.api.version}</version>
428 <type>jar</type>
429 </dependency>
430 <dependency>
431 <groupId>commons-io</groupId>
432 <artifactId>commons-io</artifactId>
433 <version>${commons.io.version}</version>
434 </dependency>
435 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000436 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000437</project>