blob: e2abcc42c65d10a8b9f0170cfaecc3241c11e628 [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>
27 <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>
33 </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>
44 <invalid.tests>**/DmlTest.java</invalid.tests>
45 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
46 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070047 <!-- Versions under dependencymanagement or used in many projects via properties -->
Taewoo Kima12d8cd2015-03-04 13:47:08 -080048 <algebricks.version>0.2.16-SNAPSHOT</algebricks.version>
49 <hyracks.version>0.2.16-SNAPSHOT</hyracks.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080050 <hadoop.version>2.2.0</hadoop.version>
Ian Maxon69375a12015-06-29 16:12:53 -070051 <junit.version>4.11</junit.version>
Eldon Carman0228b9c2014-11-25 18:13:46 -080052 <commons.io.version>2.4</commons.io.version>
53 <servlet.api.version>2.5</servlet.api.version>
54 <json.version>20090211</json.version>
55 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000056
Eldon Carman0228b9c2014-11-25 18:13:46 -080057 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-release-plugin</artifactId>
62 <version>2.1</version>
63 <configuration>
64 <goals>package source:jar javadoc:jar deploy:deploy</goals>
65 </configuration>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <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>
92 </plugins>
93 </build>
vinayakb38b7ca42012-03-05 05:44:15 +000094
Eldon Carman0228b9c2014-11-25 18:13:46 -080095 <scm>
96 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
97 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/asterixdb</developerConnection>
98 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +000099
Eldon Carman0228b9c2014-11-25 18:13:46 -0800100 <distributionManagement>
101 <repository>
102 <id>asterix-releases</id>
103 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
104 </repository>
105 <snapshotRepository>
106 <id>asterix-snapshots</id>
107 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
108 </snapshotRepository>
109 </distributionManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000110
111 <profiles>
112 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800113 <id>slow-aql-tests</id>
114 <properties>
115 <runSlowAQLTests>true</runSlowAQLTests>
116 </properties>
117 </profile>
118 <profile>
119 <id>optimizer-tests</id>
120 <properties>
121 <optimizer.tests />
122 </properties>
123 </profile>
124 <profile>
125 <id>metadata-tests</id>
126 <properties>
127 <metadata.tests />
128 </properties>
129 </profile>
130 <profile>
131 <id>execution-tests</id>
132 <properties>
133 <execution.tests />
134 </properties>
135 </profile>
136 <profile>
137 <id>invalid-tests</id>
138 <properties>
139 <invalid.tests />
140 </properties>
141 </profile>
142 <profile>
143 <id>32bitvm</id>
144 <activation>
145 <property>
146 <name>sun.arch.data.model</name>
147 <value>32</value>
148 </property>
149 </activation>
150 <properties>
151 <test.heap.size>2048</test.heap.size>
152 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000153 </profile>
154
155 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800156 <id>64bitvm</id>
157 <activation>
158 <property>
159 <name>sun.arch.data.model</name>
160 <value>64</value>
161 </property>
162 </activation>
163 <properties>
164 <test.heap.size>3072</test.heap.size>
165 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000166 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800167
vinayakb38b7ca42012-03-05 05:44:15 +0000168 </profiles>
169
Eldon Carman0228b9c2014-11-25 18:13:46 -0800170 <modules>
171 <module>asterix-common</module>
172 <module>asterix-algebra</module>
173 <module>asterix-app</module>
174 <module>asterix-tools</module>
175 <module>asterix-transactions</module>
176 <module>asterix-runtime</module>
177 <module>asterix-om</module>
178 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700179 <module>asterix-external-data</module>
180 <module>asterix-examples</module>
181 <module>asterix-metadata</module>
182 <module>asterix-test-framework</module>
183 <module>asterix-maven-plugins</module>
184 <module>asterix-server</module>
185 <module>asterix-installer</module>
186 <module>asterix-events</module>
187 <module>asterix-doc</module>
188 <module>asterix-fuzzyjoin</module>
Ian Maxon69375a12015-06-29 16:12:53 -0700189 <module>asterix-yarn</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800190 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000191
Eldon Carman0228b9c2014-11-25 18:13:46 -0800192 <repositories>
193 <repository>
194 <releases>
195 <enabled>true</enabled>
196 <updatePolicy>always</updatePolicy>
197 <checksumPolicy>warn</checksumPolicy>
198 </releases>
199 <snapshots>
200 <enabled>true</enabled>
201 <updatePolicy>always</updatePolicy>
202 <checksumPolicy>fail</checksumPolicy>
203 </snapshots>
204 <id>asterix-public</id>
205 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
206 </repository>
207 <repository>
208 <releases>
209 <enabled>true</enabled>
210 <updatePolicy>always</updatePolicy>
211 <checksumPolicy>warn</checksumPolicy>
212 </releases>
213 <snapshots>
214 <enabled>true</enabled>
215 <updatePolicy>always</updatePolicy>
216 <checksumPolicy>fail</checksumPolicy>
217 </snapshots>
218 <id>third-party</id>
219 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
220 </repository>
221 <repository>
222 <releases>
223 <enabled>true</enabled>
224 <updatePolicy>always</updatePolicy>
225 <checksumPolicy>warn</checksumPolicy>
226 </releases>
227 <id>algebricks-releases</id>
228 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
229 </repository>
230 <repository>
231 <snapshots>
232 <enabled>true</enabled>
233 <updatePolicy>always</updatePolicy>
234 <checksumPolicy>fail</checksumPolicy>
235 </snapshots>
236 <id>algebricks-snapshots</id>
237 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
238 </repository>
239 </repositories>
240 <dependencyManagement>
241 <dependencies>
242 <dependency>
243 <groupId>junit</groupId>
244 <artifactId>junit</artifactId>
245 <version>${junit.version}</version>
246 </dependency>
247 <dependency>
248 <groupId>org.apache.maven</groupId>
249 <artifactId>maven-plugin-api</artifactId>
250 <version>2.2.1</version>
251 </dependency>
252 <dependency>
253 <groupId>org.apache.hadoop</groupId>
254 <artifactId>hadoop-yarn-common</artifactId>
255 <version>${hadoop.version}</version>
256 </dependency>
257 <dependency>
258 <groupId>org.apache.hadoop</groupId>
259 <artifactId>hadoop-yarn-client</artifactId>
260 <version>${hadoop.version}</version>
261 </dependency>
262 <dependency>
263 <groupId>org.apache.hadoop</groupId>
264 <artifactId>hadoop-client</artifactId>
265 <version>${hadoop.version}</version>
266 </dependency>
267 <dependency>
268 <groupId>org.apache.hadoop</groupId>
269 <artifactId>hadoop-hdfs</artifactId>
270 <version>${hadoop.version}</version>
271 </dependency>
272 <dependency>
273 <groupId>org.apache.hadoop</groupId>
274 <artifactId>hadoop-common</artifactId>
275 <version>${hadoop.version}</version>
276 </dependency>
277 <dependency>
278 <groupId>edu.uci.ics.hyracks</groupId>
279 <artifactId>algebricks-compiler</artifactId>
280 <version>${algebricks.version}</version>
281 </dependency>
282 <dependency>
283 <groupId>edu.uci.ics.hyracks</groupId>
284 <artifactId>hyracks-api</artifactId>
285 <version>${hyracks.version}</version>
286 </dependency>
287 <dependency>
288 <groupId>edu.uci.ics.hyracks</groupId>
289 <artifactId>hyracks-dataflow-std</artifactId>
290 <version>${hyracks.version}</version>
291 </dependency>
292 <dependency>
293 <groupId>edu.uci.ics.hyracks</groupId>
294 <artifactId>hyracks-control-cc</artifactId>
295 <version>${hyracks.version}</version>
296 </dependency>
297 <dependency>
298 <groupId>edu.uci.ics.hyracks</groupId>
299 <artifactId>hyracks-control-nc</artifactId>
300 <version>${hyracks.version}</version>
301 </dependency>
302 <dependency>
303 <groupId>edu.uci.ics.hyracks</groupId>
304 <artifactId>hyracks-server</artifactId>
305 <version>${hyracks.version}</version>
306 </dependency>
307 <dependency>
308 <groupId>edu.uci.ics.hyracks</groupId>
309 <artifactId>hyracks-cli</artifactId>
310 <version>${hyracks.version}</version>
311 </dependency>
312 <dependency>
313 <groupId>edu.uci.ics.hyracks</groupId>
314 <artifactId>hyracks-dataflow-hadoop</artifactId>
315 <version>${hyracks.version}</version>
316 </dependency>
317 <dependency>
318 <groupId>edu.uci.ics.hyracks</groupId>
319 <artifactId>hyracks-storage-am-btree</artifactId>
320 <version>${hyracks.version}</version>
321 </dependency>
322 <dependency>
323 <groupId>edu.uci.ics.hyracks</groupId>
324 <artifactId>hyracks-storage-am-rtree</artifactId>
325 <version>${hyracks.version}</version>
326 </dependency>
327 <dependency>
328 <groupId>edu.uci.ics.hyracks</groupId>
329 <artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000330 hyracks-storage-am-invertedindex
331 </artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800332 <version>${hyracks.version}</version>
333 </dependency>
334 <dependency>
335 <groupId>edu.uci.ics.hyracks</groupId>
336 <artifactId>hyracks-storage-am-common</artifactId>
337 <version>${hyracks.version}</version>
338 </dependency>
339 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000340 <groupId>edu.uci.ics.hyracks</groupId>
341 <artifactId>hyracks-client</artifactId>
342 <version>${hyracks.version}</version>
343 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800344 <dependency>
345 <groupId>edu.uci.ics.hyracks</groupId>
346 <artifactId>hyracks-storage-am-lsm-common</artifactId>
347 <version>${hyracks.version}</version>
348 </dependency>
349 <dependency>
350 <groupId>edu.uci.ics.hyracks</groupId>
351 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
352 <version>${hyracks.version}</version>
353 </dependency>
354 <dependency>
355 <groupId>edu.uci.ics.hyracks</groupId>
356 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
357 <version>${hyracks.version}</version>
358 </dependency>
359 <dependency>
360 <groupId>edu.uci.ics.hyracks</groupId>
361 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
362 <version>${hyracks.version}</version>
363 </dependency>
364 <dependency>
365 <groupId>org.json</groupId>
366 <artifactId>json</artifactId>
367 <version>${json.version}</version>
368 <type>jar</type>
369 </dependency>
370 <dependency>
371 <groupId>javax.servlet</groupId>
372 <artifactId>servlet-api</artifactId>
373 <version>${servlet.api.version}</version>
374 <type>jar</type>
375 </dependency>
376 <dependency>
377 <groupId>commons-io</groupId>
378 <artifactId>commons-io</artifactId>
379 <version>${commons.io.version}</version>
380 </dependency>
381 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000382 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000383</project>