blob: ad763e12f54e1cb5460c5f485699d1746cd4bb06 [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 !-->
vinayakb38b7ca42012-03-05 05:44:15 +000016<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">
Chris Hillerycdfcb922014-02-07 03:05:02 -080017 <modelVersion>4.0.0</modelVersion>
18 <groupId>edu.uci.ics.asterix</groupId>
19 <artifactId>asterix</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
Chris Hillerycdfcb922014-02-07 03:05:02 -080021 <packaging>pom</packaging>
22
23 <properties>
Ian18997ce2014-09-22 16:14:39 -070024 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Chris Hillerycdfcb922014-02-07 03:05:02 -080025 <jvm.extraargs />
Chris Hilleryaef5a2c2014-03-21 14:59:54 -070026 <runSlowAQLTests>false</runSlowAQLTests>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080027
28 <!-- Definition of tests in various categories which may be excluded -->
29 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
30 <metadata.tests>**/metadata/*Test.java</metadata.tests>
31 <execution.tests>**/ExecutionTest.java</execution.tests>
Chris Hillery1a2d2292014-03-07 01:03:21 -080032 <invalid.tests>**/DmlTest.java</invalid.tests>
Till Westmann0902d2a2014-03-25 14:36:42 -070033 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
34 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests}</global.test.excludes>
Ian18997ce2014-09-22 16:14:39 -070035 <!-- Versions under dependencymanagement or used in many projects via properties -->
36 <algebricks.version>0.2.14-SNAPSHOT</algebricks.version>
37 <hyracks.version>0.2.14-SNAPSHOT</hyracks.version>
38 <hadoop.version>2.2.0</hadoop.version>
39 <junit.version>4.8.1</junit.version>
40 <commons.io.version>2.4</commons.io.version>
41 <servlet.api.version>2.5</servlet.api.version>
42 <json.version>20090211</json.version>
Chris Hillerycdfcb922014-02-07 03:05:02 -080043 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000044
vinayakb38b7ca42012-03-05 05:44:15 +000045 <build>
Chris Hillerycdfcb922014-02-07 03:05:02 -080046 <plugins>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-release-plugin</artifactId>
50 <version>2.1</version>
51 <configuration>
52 <goals>package source:jar javadoc:jar deploy:deploy</goals>
53 </configuration>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-surefire-plugin</artifactId>
Chris Hillerye2542dc2014-02-21 01:01:19 -080058 <version>2.16</version>
Chris Hillerycdfcb922014-02-07 03:05:02 -080059 <configuration>
60 <failIfNoTests>false</failIfNoTests>
61 <systemPropertyVariables>
62 <skipFredSlowTests>true</skipFredSlowTests>
63 </systemPropertyVariables>
Chris Hillerye2542dc2014-02-21 01:01:19 -080064 <forkCount>1</forkCount>
65 <reuseForks>false</reuseForks>
Chris Hillerycdfcb922014-02-07 03:05:02 -080066 <argLine>-enableassertions -Xmx${test.heap.size}m
67 -Dfile.encoding=UTF-8
68 -Djava.util.logging.config.file=${user.home}/logging.properties
Ianf869bc32014-05-13 17:11:48 -070069 -DrunSlowAQLTests=${runSlowAQLTests}
Chris Hillerycdfcb922014-02-07 03:05:02 -080070 -Xdebug
71 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
72 <includes>
Chris Hilleryed826aa2014-03-21 22:45:41 -070073 <include>${global.test.includes},${test.includes}</include>
Chris Hillerycdfcb922014-02-07 03:05:02 -080074 </includes>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080075 <excludes>
Chris Hilleryed826aa2014-03-21 22:45:41 -070076 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080077 </excludes>
Chris Hillerycdfcb922014-02-07 03:05:02 -080078 </configuration>
79 </plugin>
80 </plugins>
vinayakb38b7ca42012-03-05 05:44:15 +000081 </build>
82
83 <scm>
Vinayak Borkar7f787be2013-04-25 14:26:06 -070084 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
Ian Maxonbd0742a2014-07-11 20:06:21 -070085 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/asterixdb</developerConnection>
vinayakb38b7ca42012-03-05 05:44:15 +000086 </scm>
87
88 <distributionManagement>
89 <repository>
90 <id>asterix-releases</id>
91 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
92 </repository>
93 <snapshotRepository>
94 <id>asterix-snapshots</id>
95 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
96 </snapshotRepository>
97 </distributionManagement>
98
99 <profiles>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -0800100 <profile>
Chris Hilleryaef5a2c2014-03-21 14:59:54 -0700101 <id>slow-aql-tests</id>
102 <properties>
103 <runSlowAQLTests>true</runSlowAQLTests>
104 </properties>
105 </profile>
106 <profile>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -0800107 <id>optimizer-tests</id>
108 <properties>
109 <optimizer.tests />
110 </properties>
111 </profile>
112 <profile>
113 <id>metadata-tests</id>
114 <properties>
115 <metadata.tests />
116 </properties>
117 </profile>
118 <profile>
119 <id>execution-tests</id>
120 <properties>
121 <execution.tests />
122 </properties>
123 </profile>
Chris Hillery1a2d2292014-03-07 01:03:21 -0800124 <profile>
125 <id>invalid-tests</id>
126 <properties>
127 <invalid.tests />
128 </properties>
129 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000130 <profile>
131 <id>32bitvm</id>
132 <activation>
133 <property>
134 <name>sun.arch.data.model</name>
135 <value>32</value>
136 </property>
137 </activation>
138 <properties>
zheilbron9479fc12013-05-29 21:42:18 -0700139 <test.heap.size>2048</test.heap.size>
vinayakb38b7ca42012-03-05 05:44:15 +0000140 </properties>
141 </profile>
142
143 <profile>
144 <id>64bitvm</id>
145 <activation>
146 <property>
147 <name>sun.arch.data.model</name>
148 <value>64</value>
149 </property>
150 </activation>
151 <properties>
152 <test.heap.size>3072</test.heap.size>
153 </properties>
154 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800155
vinayakb38b7ca42012-03-05 05:44:15 +0000156 </profiles>
157
158 <modules>
159 <module>asterix-common</module>
160 <module>asterix-algebra</module>
161 <module>asterix-app</module>
162 <module>asterix-tools</module>
163 <module>asterix-transactions</module>
164 <module>asterix-runtime</module>
165 <module>asterix-om</module>
166 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700167 <module>asterix-external-data</module>
168 <module>asterix-examples</module>
169 <module>asterix-metadata</module>
170 <module>asterix-test-framework</module>
171 <module>asterix-maven-plugins</module>
172 <module>asterix-server</module>
173 <module>asterix-installer</module>
174 <module>asterix-events</module>
175 <module>asterix-doc</module>
176 <module>asterix-fuzzyjoin</module>
vinayakb38b7ca42012-03-05 05:44:15 +0000177 </modules>
178
179 <repositories>
180 <repository>
181 <releases>
182 <enabled>true</enabled>
183 <updatePolicy>always</updatePolicy>
184 <checksumPolicy>warn</checksumPolicy>
185 </releases>
186 <snapshots>
187 <enabled>true</enabled>
188 <updatePolicy>always</updatePolicy>
189 <checksumPolicy>fail</checksumPolicy>
190 </snapshots>
191 <id>asterix-public</id>
192 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
193 </repository>
194 <repository>
195 <releases>
196 <enabled>true</enabled>
197 <updatePolicy>always</updatePolicy>
198 <checksumPolicy>warn</checksumPolicy>
199 </releases>
200 <snapshots>
201 <enabled>true</enabled>
202 <updatePolicy>always</updatePolicy>
203 <checksumPolicy>fail</checksumPolicy>
204 </snapshots>
205 <id>third-party</id>
206 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
207 </repository>
208 <repository>
209 <releases>
210 <enabled>true</enabled>
211 <updatePolicy>always</updatePolicy>
212 <checksumPolicy>warn</checksumPolicy>
213 </releases>
214 <id>algebricks-releases</id>
215 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
216 </repository>
217 <repository>
218 <snapshots>
219 <enabled>true</enabled>
220 <updatePolicy>always</updatePolicy>
221 <checksumPolicy>fail</checksumPolicy>
222 </snapshots>
223 <id>algebricks-snapshots</id>
224 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
225 </repository>
226 </repositories>
vinayakb5ee049d2013-04-06 21:21:29 +0000227 <dependencyManagement>
228 <dependencies>
Chris Hillerye2542dc2014-02-21 01:01:19 -0800229 <dependency>
230 <groupId>junit</groupId>
231 <artifactId>junit</artifactId>
Ian18997ce2014-09-22 16:14:39 -0700232 <version>${junit.version}</version>
Chris Hillerye2542dc2014-02-21 01:01:19 -0800233 </dependency>
Ian18997ce2014-09-22 16:14:39 -0700234 <dependency>
235 <groupId>org.apache.maven</groupId>
236 <artifactId>maven-plugin-api</artifactId>
237 <version>2.2.1</version>
238 </dependency>
239 <dependency>
240 <groupId>org.apache.hadoop</groupId>
241 <artifactId>hadoop-yarn-common</artifactId>
242 <version>${hadoop.version}</version>
243 </dependency>
244 <dependency>
245 <groupId>org.apache.hadoop</groupId>
246 <artifactId>hadoop-yarn-client</artifactId>
247 <version>${hadoop.version}</version>
248 </dependency>
249 <dependency>
250 <groupId>org.apache.hadoop</groupId>
251 <artifactId>hadoop-client</artifactId>
252 <version>${hadoop.version}</version>
253 </dependency>
254 <dependency>
255 <groupId>org.apache.hadoop</groupId>
256 <artifactId>hadoop-hdfs</artifactId>
257 <version>${hadoop.version}</version>
258 </dependency>
259 <dependency>
260 <groupId>org.apache.hadoop</groupId>
261 <artifactId>hadoop-common</artifactId>
262 <version>${hadoop.version}</version>
263 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000264 <dependency>
265 <groupId>edu.uci.ics.hyracks</groupId>
266 <artifactId>algebricks-compiler</artifactId>
267 <version>${algebricks.version}</version>
268 </dependency>
269 <dependency>
270 <groupId>edu.uci.ics.hyracks</groupId>
271 <artifactId>hyracks-api</artifactId>
272 <version>${hyracks.version}</version>
273 </dependency>
274 <dependency>
275 <groupId>edu.uci.ics.hyracks</groupId>
276 <artifactId>hyracks-dataflow-std</artifactId>
277 <version>${hyracks.version}</version>
278 </dependency>
279 <dependency>
280 <groupId>edu.uci.ics.hyracks</groupId>
281 <artifactId>hyracks-control-cc</artifactId>
282 <version>${hyracks.version}</version>
283 </dependency>
284 <dependency>
285 <groupId>edu.uci.ics.hyracks</groupId>
286 <artifactId>hyracks-control-nc</artifactId>
287 <version>${hyracks.version}</version>
288 </dependency>
289 <dependency>
290 <groupId>edu.uci.ics.hyracks</groupId>
291 <artifactId>hyracks-server</artifactId>
292 <version>${hyracks.version}</version>
293 </dependency>
294 <dependency>
295 <groupId>edu.uci.ics.hyracks</groupId>
296 <artifactId>hyracks-cli</artifactId>
297 <version>${hyracks.version}</version>
298 </dependency>
299 <dependency>
300 <groupId>edu.uci.ics.hyracks</groupId>
301 <artifactId>hyracks-dataflow-hadoop</artifactId>
302 <version>${hyracks.version}</version>
303 </dependency>
304 <dependency>
305 <groupId>edu.uci.ics.hyracks</groupId>
306 <artifactId>hyracks-storage-am-btree</artifactId>
307 <version>${hyracks.version}</version>
308 </dependency>
309 <dependency>
310 <groupId>edu.uci.ics.hyracks</groupId>
311 <artifactId>hyracks-storage-am-rtree</artifactId>
312 <version>${hyracks.version}</version>
313 </dependency>
314 <dependency>
315 <groupId>edu.uci.ics.hyracks</groupId>
316 <artifactId>
317 hyracks-storage-am-invertedindex
318 </artifactId>
319 <version>${hyracks.version}</version>
320 </dependency>
321 <dependency>
322 <groupId>edu.uci.ics.hyracks</groupId>
323 <artifactId>hyracks-storage-am-common</artifactId>
324 <version>${hyracks.version}</version>
325 </dependency>
326 <dependency>
327 <groupId>edu.uci.ics.hyracks</groupId>
328 <artifactId>hyracks-client</artifactId>
329 <version>${hyracks.version}</version>
330 </dependency>
331 <dependency>
332 <groupId>edu.uci.ics.hyracks</groupId>
333 <artifactId>hyracks-storage-am-lsm-common</artifactId>
334 <version>${hyracks.version}</version>
335 </dependency>
336 <dependency>
337 <groupId>edu.uci.ics.hyracks</groupId>
338 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
339 <version>${hyracks.version}</version>
340 </dependency>
341 <dependency>
342 <groupId>edu.uci.ics.hyracks</groupId>
343 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
344 <version>${hyracks.version}</version>
345 </dependency>
346 <dependency>
347 <groupId>edu.uci.ics.hyracks</groupId>
348 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
349 <version>${hyracks.version}</version>
350 </dependency>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700351 <dependency>
352 <groupId>org.json</groupId>
353 <artifactId>json</artifactId>
Ian18997ce2014-09-22 16:14:39 -0700354 <version>${json.version}</version>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700355 <type>jar</type>
356 </dependency>
357 <dependency>
358 <groupId>javax.servlet</groupId>
359 <artifactId>servlet-api</artifactId>
Ian18997ce2014-09-22 16:14:39 -0700360 <version>${servlet.api.version}</version>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700361 <type>jar</type>
362 </dependency>
Ian18997ce2014-09-22 16:14:39 -0700363 <dependency>
364 <groupId>commons-io</groupId>
365 <artifactId>commons-io</artifactId>
366 <version>${commons.io.version}</version>
367 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000368 </dependencies>
369 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000370</project>