blob: e63c41735dd312a564ac1ea06a820027e30b6b17 [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
26 <properties>
27 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28 <jvm.extraargs />
29 <runSlowAQLTests>false</runSlowAQLTests>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080030
31 <!-- Definition of tests in various categories which may be excluded -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080032 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
33 <metadata.tests>**/metadata/*Test.java</metadata.tests>
34 <execution.tests>**/ExecutionTest.java</execution.tests>
35 <invalid.tests>**/DmlTest.java</invalid.tests>
36 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
37 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070038 <!-- Versions under dependencymanagement or used in many projects via properties -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080039 <algebricks.version>0.2.15-SNAPSHOT</algebricks.version>
40 <hyracks.version>0.2.15-SNAPSHOT</hyracks.version>
41 <hadoop.version>2.2.0</hadoop.version>
42 <junit.version>4.8.1</junit.version>
43 <commons.io.version>2.4</commons.io.version>
44 <servlet.api.version>2.5</servlet.api.version>
45 <json.version>20090211</json.version>
46 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000047
Eldon Carman0228b9c2014-11-25 18:13:46 -080048 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-release-plugin</artifactId>
53 <version>2.1</version>
54 <configuration>
55 <goals>package source:jar javadoc:jar deploy:deploy</goals>
56 </configuration>
57 </plugin>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-surefire-plugin</artifactId>
61 <version>2.16</version>
62 <configuration>
63 <failIfNoTests>false</failIfNoTests>
64 <systemPropertyVariables>
65 <skipFredSlowTests>true</skipFredSlowTests>
66 </systemPropertyVariables>
67 <forkCount>1</forkCount>
68 <reuseForks>false</reuseForks>
69 <argLine>-enableassertions -Xmx${test.heap.size}m
70 -Dfile.encoding=UTF-8
71 -Djava.util.logging.config.file=${user.home}/logging.properties
72 -DrunSlowAQLTests=${runSlowAQLTests}
73 -Xdebug
74 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
75 <includes>
76 <include>${global.test.includes},${test.includes}</include>
77 </includes>
78 <excludes>
79 <exclude>${global.test.excludes},${test.excludes}</exclude>
80 </excludes>
81 </configuration>
82 </plugin>
83 </plugins>
84 </build>
vinayakb38b7ca42012-03-05 05:44:15 +000085
Eldon Carman0228b9c2014-11-25 18:13:46 -080086 <scm>
87 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
88 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/asterixdb</developerConnection>
89 </scm>
vinayakb38b7ca42012-03-05 05:44:15 +000090
Eldon Carman0228b9c2014-11-25 18:13:46 -080091 <distributionManagement>
92 <repository>
93 <id>asterix-releases</id>
94 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
95 </repository>
96 <snapshotRepository>
97 <id>asterix-snapshots</id>
98 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
99 </snapshotRepository>
100 </distributionManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000101
102 <profiles>
103 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800104 <id>slow-aql-tests</id>
105 <properties>
106 <runSlowAQLTests>true</runSlowAQLTests>
107 </properties>
108 </profile>
109 <profile>
110 <id>optimizer-tests</id>
111 <properties>
112 <optimizer.tests />
113 </properties>
114 </profile>
115 <profile>
116 <id>metadata-tests</id>
117 <properties>
118 <metadata.tests />
119 </properties>
120 </profile>
121 <profile>
122 <id>execution-tests</id>
123 <properties>
124 <execution.tests />
125 </properties>
126 </profile>
127 <profile>
128 <id>invalid-tests</id>
129 <properties>
130 <invalid.tests />
131 </properties>
132 </profile>
133 <profile>
134 <id>32bitvm</id>
135 <activation>
136 <property>
137 <name>sun.arch.data.model</name>
138 <value>32</value>
139 </property>
140 </activation>
141 <properties>
142 <test.heap.size>2048</test.heap.size>
143 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000144 </profile>
145
146 <profile>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800147 <id>64bitvm</id>
148 <activation>
149 <property>
150 <name>sun.arch.data.model</name>
151 <value>64</value>
152 </property>
153 </activation>
154 <properties>
155 <test.heap.size>3072</test.heap.size>
156 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +0000157 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800158
vinayakb38b7ca42012-03-05 05:44:15 +0000159 </profiles>
160
Eldon Carman0228b9c2014-11-25 18:13:46 -0800161 <modules>
162 <module>asterix-common</module>
163 <module>asterix-algebra</module>
164 <module>asterix-app</module>
165 <module>asterix-tools</module>
166 <module>asterix-transactions</module>
167 <module>asterix-runtime</module>
168 <module>asterix-om</module>
169 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700170 <module>asterix-external-data</module>
171 <module>asterix-examples</module>
172 <module>asterix-metadata</module>
173 <module>asterix-test-framework</module>
174 <module>asterix-maven-plugins</module>
175 <module>asterix-server</module>
176 <module>asterix-installer</module>
177 <module>asterix-events</module>
178 <module>asterix-doc</module>
179 <module>asterix-fuzzyjoin</module>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800180 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000181
Eldon Carman0228b9c2014-11-25 18:13:46 -0800182 <repositories>
183 <repository>
184 <releases>
185 <enabled>true</enabled>
186 <updatePolicy>always</updatePolicy>
187 <checksumPolicy>warn</checksumPolicy>
188 </releases>
189 <snapshots>
190 <enabled>true</enabled>
191 <updatePolicy>always</updatePolicy>
192 <checksumPolicy>fail</checksumPolicy>
193 </snapshots>
194 <id>asterix-public</id>
195 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
196 </repository>
197 <repository>
198 <releases>
199 <enabled>true</enabled>
200 <updatePolicy>always</updatePolicy>
201 <checksumPolicy>warn</checksumPolicy>
202 </releases>
203 <snapshots>
204 <enabled>true</enabled>
205 <updatePolicy>always</updatePolicy>
206 <checksumPolicy>fail</checksumPolicy>
207 </snapshots>
208 <id>third-party</id>
209 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
210 </repository>
211 <repository>
212 <releases>
213 <enabled>true</enabled>
214 <updatePolicy>always</updatePolicy>
215 <checksumPolicy>warn</checksumPolicy>
216 </releases>
217 <id>algebricks-releases</id>
218 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
219 </repository>
220 <repository>
221 <snapshots>
222 <enabled>true</enabled>
223 <updatePolicy>always</updatePolicy>
224 <checksumPolicy>fail</checksumPolicy>
225 </snapshots>
226 <id>algebricks-snapshots</id>
227 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
228 </repository>
229 </repositories>
230 <dependencyManagement>
231 <dependencies>
232 <dependency>
233 <groupId>junit</groupId>
234 <artifactId>junit</artifactId>
235 <version>${junit.version}</version>
236 </dependency>
237 <dependency>
238 <groupId>org.apache.maven</groupId>
239 <artifactId>maven-plugin-api</artifactId>
240 <version>2.2.1</version>
241 </dependency>
242 <dependency>
243 <groupId>org.apache.hadoop</groupId>
244 <artifactId>hadoop-yarn-common</artifactId>
245 <version>${hadoop.version}</version>
246 </dependency>
247 <dependency>
248 <groupId>org.apache.hadoop</groupId>
249 <artifactId>hadoop-yarn-client</artifactId>
250 <version>${hadoop.version}</version>
251 </dependency>
252 <dependency>
253 <groupId>org.apache.hadoop</groupId>
254 <artifactId>hadoop-client</artifactId>
255 <version>${hadoop.version}</version>
256 </dependency>
257 <dependency>
258 <groupId>org.apache.hadoop</groupId>
259 <artifactId>hadoop-hdfs</artifactId>
260 <version>${hadoop.version}</version>
261 </dependency>
262 <dependency>
263 <groupId>org.apache.hadoop</groupId>
264 <artifactId>hadoop-common</artifactId>
265 <version>${hadoop.version}</version>
266 </dependency>
267 <dependency>
268 <groupId>edu.uci.ics.hyracks</groupId>
269 <artifactId>algebricks-compiler</artifactId>
270 <version>${algebricks.version}</version>
271 </dependency>
272 <dependency>
273 <groupId>edu.uci.ics.hyracks</groupId>
274 <artifactId>hyracks-api</artifactId>
275 <version>${hyracks.version}</version>
276 </dependency>
277 <dependency>
278 <groupId>edu.uci.ics.hyracks</groupId>
279 <artifactId>hyracks-dataflow-std</artifactId>
280 <version>${hyracks.version}</version>
281 </dependency>
282 <dependency>
283 <groupId>edu.uci.ics.hyracks</groupId>
284 <artifactId>hyracks-control-cc</artifactId>
285 <version>${hyracks.version}</version>
286 </dependency>
287 <dependency>
288 <groupId>edu.uci.ics.hyracks</groupId>
289 <artifactId>hyracks-control-nc</artifactId>
290 <version>${hyracks.version}</version>
291 </dependency>
292 <dependency>
293 <groupId>edu.uci.ics.hyracks</groupId>
294 <artifactId>hyracks-server</artifactId>
295 <version>${hyracks.version}</version>
296 </dependency>
297 <dependency>
298 <groupId>edu.uci.ics.hyracks</groupId>
299 <artifactId>hyracks-cli</artifactId>
300 <version>${hyracks.version}</version>
301 </dependency>
302 <dependency>
303 <groupId>edu.uci.ics.hyracks</groupId>
304 <artifactId>hyracks-dataflow-hadoop</artifactId>
305 <version>${hyracks.version}</version>
306 </dependency>
307 <dependency>
308 <groupId>edu.uci.ics.hyracks</groupId>
309 <artifactId>hyracks-storage-am-btree</artifactId>
310 <version>${hyracks.version}</version>
311 </dependency>
312 <dependency>
313 <groupId>edu.uci.ics.hyracks</groupId>
314 <artifactId>hyracks-storage-am-rtree</artifactId>
315 <version>${hyracks.version}</version>
316 </dependency>
317 <dependency>
318 <groupId>edu.uci.ics.hyracks</groupId>
319 <artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000320 hyracks-storage-am-invertedindex
321 </artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800322 <version>${hyracks.version}</version>
323 </dependency>
324 <dependency>
325 <groupId>edu.uci.ics.hyracks</groupId>
326 <artifactId>hyracks-storage-am-common</artifactId>
327 <version>${hyracks.version}</version>
328 </dependency>
329 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000330 <groupId>edu.uci.ics.hyracks</groupId>
331 <artifactId>hyracks-client</artifactId>
332 <version>${hyracks.version}</version>
333 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800334 <dependency>
335 <groupId>edu.uci.ics.hyracks</groupId>
336 <artifactId>hyracks-storage-am-lsm-common</artifactId>
337 <version>${hyracks.version}</version>
338 </dependency>
339 <dependency>
340 <groupId>edu.uci.ics.hyracks</groupId>
341 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
342 <version>${hyracks.version}</version>
343 </dependency>
344 <dependency>
345 <groupId>edu.uci.ics.hyracks</groupId>
346 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
347 <version>${hyracks.version}</version>
348 </dependency>
349 <dependency>
350 <groupId>edu.uci.ics.hyracks</groupId>
351 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
352 <version>${hyracks.version}</version>
353 </dependency>
354 <dependency>
355 <groupId>org.json</groupId>
356 <artifactId>json</artifactId>
357 <version>${json.version}</version>
358 <type>jar</type>
359 </dependency>
360 <dependency>
361 <groupId>javax.servlet</groupId>
362 <artifactId>servlet-api</artifactId>
363 <version>${servlet.api.version}</version>
364 <type>jar</type>
365 </dependency>
366 <dependency>
367 <groupId>commons-io</groupId>
368 <artifactId>commons-io</artifactId>
369 <version>${commons.io.version}</version>
370 </dependency>
371 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000372 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000373</project>