blob: 5e9f64333623b3135abd70abec4bacdfcbeec0df [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 -->
Eldon Carman0228b9c2014-11-25 18:13:46 -080048 <algebricks.version>0.2.15-SNAPSHOT</algebricks.version>
49 <hyracks.version>0.2.15-SNAPSHOT</hyracks.version>
50 <hadoop.version>2.2.0</hadoop.version>
51 <junit.version>4.8.1</junit.version>
52 <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>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800189 </modules>
vinayakb38b7ca42012-03-05 05:44:15 +0000190
Eldon Carman0228b9c2014-11-25 18:13:46 -0800191 <repositories>
192 <repository>
193 <releases>
194 <enabled>true</enabled>
195 <updatePolicy>always</updatePolicy>
196 <checksumPolicy>warn</checksumPolicy>
197 </releases>
198 <snapshots>
199 <enabled>true</enabled>
200 <updatePolicy>always</updatePolicy>
201 <checksumPolicy>fail</checksumPolicy>
202 </snapshots>
203 <id>asterix-public</id>
204 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
205 </repository>
206 <repository>
207 <releases>
208 <enabled>true</enabled>
209 <updatePolicy>always</updatePolicy>
210 <checksumPolicy>warn</checksumPolicy>
211 </releases>
212 <snapshots>
213 <enabled>true</enabled>
214 <updatePolicy>always</updatePolicy>
215 <checksumPolicy>fail</checksumPolicy>
216 </snapshots>
217 <id>third-party</id>
218 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
219 </repository>
220 <repository>
221 <releases>
222 <enabled>true</enabled>
223 <updatePolicy>always</updatePolicy>
224 <checksumPolicy>warn</checksumPolicy>
225 </releases>
226 <id>algebricks-releases</id>
227 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
228 </repository>
229 <repository>
230 <snapshots>
231 <enabled>true</enabled>
232 <updatePolicy>always</updatePolicy>
233 <checksumPolicy>fail</checksumPolicy>
234 </snapshots>
235 <id>algebricks-snapshots</id>
236 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
237 </repository>
238 </repositories>
239 <dependencyManagement>
240 <dependencies>
241 <dependency>
242 <groupId>junit</groupId>
243 <artifactId>junit</artifactId>
244 <version>${junit.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>org.apache.maven</groupId>
248 <artifactId>maven-plugin-api</artifactId>
249 <version>2.2.1</version>
250 </dependency>
251 <dependency>
252 <groupId>org.apache.hadoop</groupId>
253 <artifactId>hadoop-yarn-common</artifactId>
254 <version>${hadoop.version}</version>
255 </dependency>
256 <dependency>
257 <groupId>org.apache.hadoop</groupId>
258 <artifactId>hadoop-yarn-client</artifactId>
259 <version>${hadoop.version}</version>
260 </dependency>
261 <dependency>
262 <groupId>org.apache.hadoop</groupId>
263 <artifactId>hadoop-client</artifactId>
264 <version>${hadoop.version}</version>
265 </dependency>
266 <dependency>
267 <groupId>org.apache.hadoop</groupId>
268 <artifactId>hadoop-hdfs</artifactId>
269 <version>${hadoop.version}</version>
270 </dependency>
271 <dependency>
272 <groupId>org.apache.hadoop</groupId>
273 <artifactId>hadoop-common</artifactId>
274 <version>${hadoop.version}</version>
275 </dependency>
276 <dependency>
277 <groupId>edu.uci.ics.hyracks</groupId>
278 <artifactId>algebricks-compiler</artifactId>
279 <version>${algebricks.version}</version>
280 </dependency>
281 <dependency>
282 <groupId>edu.uci.ics.hyracks</groupId>
283 <artifactId>hyracks-api</artifactId>
284 <version>${hyracks.version}</version>
285 </dependency>
286 <dependency>
287 <groupId>edu.uci.ics.hyracks</groupId>
288 <artifactId>hyracks-dataflow-std</artifactId>
289 <version>${hyracks.version}</version>
290 </dependency>
291 <dependency>
292 <groupId>edu.uci.ics.hyracks</groupId>
293 <artifactId>hyracks-control-cc</artifactId>
294 <version>${hyracks.version}</version>
295 </dependency>
296 <dependency>
297 <groupId>edu.uci.ics.hyracks</groupId>
298 <artifactId>hyracks-control-nc</artifactId>
299 <version>${hyracks.version}</version>
300 </dependency>
301 <dependency>
302 <groupId>edu.uci.ics.hyracks</groupId>
303 <artifactId>hyracks-server</artifactId>
304 <version>${hyracks.version}</version>
305 </dependency>
306 <dependency>
307 <groupId>edu.uci.ics.hyracks</groupId>
308 <artifactId>hyracks-cli</artifactId>
309 <version>${hyracks.version}</version>
310 </dependency>
311 <dependency>
312 <groupId>edu.uci.ics.hyracks</groupId>
313 <artifactId>hyracks-dataflow-hadoop</artifactId>
314 <version>${hyracks.version}</version>
315 </dependency>
316 <dependency>
317 <groupId>edu.uci.ics.hyracks</groupId>
318 <artifactId>hyracks-storage-am-btree</artifactId>
319 <version>${hyracks.version}</version>
320 </dependency>
321 <dependency>
322 <groupId>edu.uci.ics.hyracks</groupId>
323 <artifactId>hyracks-storage-am-rtree</artifactId>
324 <version>${hyracks.version}</version>
325 </dependency>
326 <dependency>
327 <groupId>edu.uci.ics.hyracks</groupId>
328 <artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000329 hyracks-storage-am-invertedindex
330 </artifactId>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800331 <version>${hyracks.version}</version>
332 </dependency>
333 <dependency>
334 <groupId>edu.uci.ics.hyracks</groupId>
335 <artifactId>hyracks-storage-am-common</artifactId>
336 <version>${hyracks.version}</version>
337 </dependency>
338 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000339 <groupId>edu.uci.ics.hyracks</groupId>
340 <artifactId>hyracks-client</artifactId>
341 <version>${hyracks.version}</version>
342 </dependency>
Eldon Carman0228b9c2014-11-25 18:13:46 -0800343 <dependency>
344 <groupId>edu.uci.ics.hyracks</groupId>
345 <artifactId>hyracks-storage-am-lsm-common</artifactId>
346 <version>${hyracks.version}</version>
347 </dependency>
348 <dependency>
349 <groupId>edu.uci.ics.hyracks</groupId>
350 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
351 <version>${hyracks.version}</version>
352 </dependency>
353 <dependency>
354 <groupId>edu.uci.ics.hyracks</groupId>
355 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
356 <version>${hyracks.version}</version>
357 </dependency>
358 <dependency>
359 <groupId>edu.uci.ics.hyracks</groupId>
360 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
361 <version>${hyracks.version}</version>
362 </dependency>
363 <dependency>
364 <groupId>org.json</groupId>
365 <artifactId>json</artifactId>
366 <version>${json.version}</version>
367 <type>jar</type>
368 </dependency>
369 <dependency>
370 <groupId>javax.servlet</groupId>
371 <artifactId>servlet-api</artifactId>
372 <version>${servlet.api.version}</version>
373 <type>jar</type>
374 </dependency>
375 <dependency>
376 <groupId>commons-io</groupId>
377 <artifactId>commons-io</artifactId>
378 <version>${commons.io.version}</version>
379 </dependency>
380 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000381 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000382</project>