blob: c62a061be1cbd8829b2ea7f34989938546cd1889 [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>
Zachary Heilbronf3268e92014-04-02 15:25:36 -070020 <version>0.8.5</version>
Chris Hillerycdfcb922014-02-07 03:05:02 -080021 <packaging>pom</packaging>
22
23 <properties>
Zachary Heilbronf3268e92014-04-02 15:25:36 -070024 <algebricks.version>0.2.11</algebricks.version>
25 <hyracks.version>0.2.11</hyracks.version>
Chris Hillerycdfcb922014-02-07 03:05:02 -080026 <jvm.extraargs />
Chris Hilleryaef5a2c2014-03-21 14:59:54 -070027 <runSlowAQLTests>false</runSlowAQLTests>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080028
29 <!-- Definition of tests in various categories which may be excluded -->
30 <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests>
31 <metadata.tests>**/metadata/*Test.java</metadata.tests>
32 <execution.tests>**/ExecutionTest.java</execution.tests>
Chris Hillery1a2d2292014-03-07 01:03:21 -080033 <invalid.tests>**/DmlTest.java</invalid.tests>
Till Westmann0902d2a2014-03-25 14:36:42 -070034 <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes>
35 <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests}</global.test.excludes>
Chris Hillerycdfcb922014-02-07 03:05:02 -080036 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000037
vinayakb38b7ca42012-03-05 05:44:15 +000038 <build>
Chris Hillerycdfcb922014-02-07 03:05:02 -080039 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-release-plugin</artifactId>
43 <version>2.1</version>
44 <configuration>
45 <goals>package source:jar javadoc:jar deploy:deploy</goals>
46 </configuration>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-surefire-plugin</artifactId>
Chris Hillerye2542dc2014-02-21 01:01:19 -080051 <version>2.16</version>
Chris Hillerycdfcb922014-02-07 03:05:02 -080052 <configuration>
53 <failIfNoTests>false</failIfNoTests>
54 <systemPropertyVariables>
55 <skipFredSlowTests>true</skipFredSlowTests>
56 </systemPropertyVariables>
Chris Hillerye2542dc2014-02-21 01:01:19 -080057 <forkCount>1</forkCount>
58 <reuseForks>false</reuseForks>
Chris Hillerycdfcb922014-02-07 03:05:02 -080059 <argLine>-enableassertions -Xmx${test.heap.size}m
60 -Dfile.encoding=UTF-8
61 -Djava.util.logging.config.file=${user.home}/logging.properties
Chris Hilleryaef5a2c2014-03-21 14:59:54 -070062 -DrunSlowAQLTests=${runSlowAQLTests}
Chris Hillerycdfcb922014-02-07 03:05:02 -080063 -Xdebug
64 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
65 <includes>
Chris Hilleryed826aa2014-03-21 22:45:41 -070066 <include>${global.test.includes},${test.includes}</include>
Chris Hillerycdfcb922014-02-07 03:05:02 -080067 </includes>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080068 <excludes>
Chris Hilleryed826aa2014-03-21 22:45:41 -070069 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080070 </excludes>
Chris Hillerycdfcb922014-02-07 03:05:02 -080071 </configuration>
72 </plugin>
73 </plugins>
vinayakb38b7ca42012-03-05 05:44:15 +000074 </build>
75
76 <scm>
Vinayak Borkar7f787be2013-04-25 14:26:06 -070077 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
78 <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection>
vinayakb38b7ca42012-03-05 05:44:15 +000079 </scm>
80
81 <distributionManagement>
82 <repository>
83 <id>asterix-releases</id>
84 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
85 </repository>
86 <snapshotRepository>
87 <id>asterix-snapshots</id>
88 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
89 </snapshotRepository>
90 </distributionManagement>
91
92 <profiles>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080093 <profile>
Chris Hilleryaef5a2c2014-03-21 14:59:54 -070094 <id>slow-aql-tests</id>
95 <properties>
96 <runSlowAQLTests>true</runSlowAQLTests>
97 </properties>
98 </profile>
99 <profile>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -0800100 <id>optimizer-tests</id>
101 <properties>
102 <optimizer.tests />
103 </properties>
104 </profile>
105 <profile>
106 <id>metadata-tests</id>
107 <properties>
108 <metadata.tests />
109 </properties>
110 </profile>
111 <profile>
112 <id>execution-tests</id>
113 <properties>
114 <execution.tests />
115 </properties>
116 </profile>
Chris Hillery1a2d2292014-03-07 01:03:21 -0800117 <profile>
118 <id>invalid-tests</id>
119 <properties>
120 <invalid.tests />
121 </properties>
122 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000123 <profile>
124 <id>32bitvm</id>
125 <activation>
126 <property>
127 <name>sun.arch.data.model</name>
128 <value>32</value>
129 </property>
130 </activation>
131 <properties>
zheilbron9479fc12013-05-29 21:42:18 -0700132 <test.heap.size>2048</test.heap.size>
vinayakb38b7ca42012-03-05 05:44:15 +0000133 </properties>
134 </profile>
135
136 <profile>
137 <id>64bitvm</id>
138 <activation>
139 <property>
140 <name>sun.arch.data.model</name>
141 <value>64</value>
142 </property>
143 </activation>
144 <properties>
145 <test.heap.size>3072</test.heap.size>
146 </properties>
147 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800148
vinayakb38b7ca42012-03-05 05:44:15 +0000149 </profiles>
150
151 <modules>
152 <module>asterix-common</module>
153 <module>asterix-algebra</module>
154 <module>asterix-app</module>
155 <module>asterix-tools</module>
156 <module>asterix-transactions</module>
157 <module>asterix-runtime</module>
158 <module>asterix-om</module>
159 <module>asterix-aql</module>
zheilbron738005d2014-03-21 14:50:17 -0700160 <module>asterix-external-data</module>
161 <module>asterix-examples</module>
162 <module>asterix-metadata</module>
163 <module>asterix-test-framework</module>
164 <module>asterix-maven-plugins</module>
165 <module>asterix-server</module>
166 <module>asterix-installer</module>
167 <module>asterix-events</module>
168 <module>asterix-doc</module>
169 <module>asterix-fuzzyjoin</module>
vinayakb38b7ca42012-03-05 05:44:15 +0000170 </modules>
171
172 <repositories>
173 <repository>
174 <releases>
175 <enabled>true</enabled>
176 <updatePolicy>always</updatePolicy>
177 <checksumPolicy>warn</checksumPolicy>
178 </releases>
179 <snapshots>
180 <enabled>true</enabled>
181 <updatePolicy>always</updatePolicy>
182 <checksumPolicy>fail</checksumPolicy>
183 </snapshots>
184 <id>asterix-public</id>
185 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
186 </repository>
187 <repository>
188 <releases>
189 <enabled>true</enabled>
190 <updatePolicy>always</updatePolicy>
191 <checksumPolicy>warn</checksumPolicy>
192 </releases>
193 <snapshots>
194 <enabled>true</enabled>
195 <updatePolicy>always</updatePolicy>
196 <checksumPolicy>fail</checksumPolicy>
197 </snapshots>
198 <id>third-party</id>
199 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
200 </repository>
201 <repository>
202 <releases>
203 <enabled>true</enabled>
204 <updatePolicy>always</updatePolicy>
205 <checksumPolicy>warn</checksumPolicy>
206 </releases>
207 <id>algebricks-releases</id>
208 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
209 </repository>
210 <repository>
211 <snapshots>
212 <enabled>true</enabled>
213 <updatePolicy>always</updatePolicy>
214 <checksumPolicy>fail</checksumPolicy>
215 </snapshots>
216 <id>algebricks-snapshots</id>
217 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
218 </repository>
219 </repositories>
vinayakb5ee049d2013-04-06 21:21:29 +0000220 <dependencyManagement>
221 <dependencies>
Chris Hillerye2542dc2014-02-21 01:01:19 -0800222 <dependency>
223 <groupId>junit</groupId>
224 <artifactId>junit</artifactId>
225 <version>4.8.1</version>
226 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000227 <dependency>
228 <groupId>edu.uci.ics.hyracks</groupId>
229 <artifactId>algebricks-compiler</artifactId>
230 <version>${algebricks.version}</version>
231 </dependency>
232 <dependency>
233 <groupId>edu.uci.ics.hyracks</groupId>
234 <artifactId>hyracks-api</artifactId>
235 <version>${hyracks.version}</version>
236 </dependency>
237 <dependency>
238 <groupId>edu.uci.ics.hyracks</groupId>
239 <artifactId>hyracks-dataflow-std</artifactId>
240 <version>${hyracks.version}</version>
241 </dependency>
242 <dependency>
243 <groupId>edu.uci.ics.hyracks</groupId>
244 <artifactId>hyracks-control-cc</artifactId>
245 <version>${hyracks.version}</version>
246 </dependency>
247 <dependency>
248 <groupId>edu.uci.ics.hyracks</groupId>
249 <artifactId>hyracks-control-nc</artifactId>
250 <version>${hyracks.version}</version>
251 </dependency>
252 <dependency>
253 <groupId>edu.uci.ics.hyracks</groupId>
254 <artifactId>hyracks-server</artifactId>
255 <version>${hyracks.version}</version>
256 </dependency>
257 <dependency>
258 <groupId>edu.uci.ics.hyracks</groupId>
259 <artifactId>hyracks-cli</artifactId>
260 <version>${hyracks.version}</version>
261 </dependency>
262 <dependency>
263 <groupId>edu.uci.ics.hyracks</groupId>
264 <artifactId>hyracks-dataflow-hadoop</artifactId>
265 <version>${hyracks.version}</version>
266 </dependency>
267 <dependency>
268 <groupId>edu.uci.ics.hyracks</groupId>
269 <artifactId>hyracks-storage-am-btree</artifactId>
270 <version>${hyracks.version}</version>
271 </dependency>
272 <dependency>
273 <groupId>edu.uci.ics.hyracks</groupId>
274 <artifactId>hyracks-storage-am-rtree</artifactId>
275 <version>${hyracks.version}</version>
276 </dependency>
277 <dependency>
278 <groupId>edu.uci.ics.hyracks</groupId>
279 <artifactId>
280 hyracks-storage-am-invertedindex
281 </artifactId>
282 <version>${hyracks.version}</version>
283 </dependency>
284 <dependency>
285 <groupId>edu.uci.ics.hyracks</groupId>
286 <artifactId>hyracks-storage-am-common</artifactId>
287 <version>${hyracks.version}</version>
288 </dependency>
289 <dependency>
290 <groupId>edu.uci.ics.hyracks</groupId>
291 <artifactId>hyracks-client</artifactId>
292 <version>${hyracks.version}</version>
293 </dependency>
294 <dependency>
295 <groupId>edu.uci.ics.hyracks</groupId>
296 <artifactId>hyracks-storage-am-lsm-common</artifactId>
297 <version>${hyracks.version}</version>
298 </dependency>
299 <dependency>
300 <groupId>edu.uci.ics.hyracks</groupId>
301 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
302 <version>${hyracks.version}</version>
303 </dependency>
304 <dependency>
305 <groupId>edu.uci.ics.hyracks</groupId>
306 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
307 <version>${hyracks.version}</version>
308 </dependency>
309 <dependency>
310 <groupId>edu.uci.ics.hyracks</groupId>
311 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
312 <version>${hyracks.version}</version>
313 </dependency>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700314 <dependency>
315 <groupId>org.json</groupId>
316 <artifactId>json</artifactId>
317 <version>20090211</version>
318 <type>jar</type>
319 </dependency>
320 <dependency>
321 <groupId>javax.servlet</groupId>
322 <artifactId>servlet-api</artifactId>
323 <version>2.5</version>
324 <type>jar</type>
325 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000326 </dependencies>
327 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000328</project>