blob: 158592367915a779ba2be1061380028ef3f42eaf [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>
20 <version>0.8.4-SNAPSHOT</version>
21 <packaging>pom</packaging>
22
23 <properties>
24 <algebricks.version>0.2.11-SNAPSHOT</algebricks.version>
25 <hyracks.version>0.2.11-SNAPSHOT</hyracks.version>
26 <jvm.extraargs />
27 <skipSlowTests>true</skipSlowTests>
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>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080034 <test.includes>**/*TestSuite.java,**/*Test.java</test.includes>
Chris Hillery1a2d2292014-03-07 01:03:21 -080035 <test.excludes>${optimizer.tests},${metadata.tests},${execution.tests},${invalid.tests}</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
62 -Xdebug
63 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
64 <includes>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080065 <include>${test.includes}</include>
Chris Hillerycdfcb922014-02-07 03:05:02 -080066 </includes>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080067 <excludes>
68 <exclude>${test.excludes}</exclude>
69 </excludes>
Chris Hillerycdfcb922014-02-07 03:05:02 -080070 </configuration>
71 </plugin>
72 </plugins>
vinayakb38b7ca42012-03-05 05:44:15 +000073 </build>
74
75 <scm>
Vinayak Borkar7f787be2013-04-25 14:26:06 -070076 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
77 <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection>
vinayakb38b7ca42012-03-05 05:44:15 +000078 </scm>
79
80 <distributionManagement>
81 <repository>
82 <id>asterix-releases</id>
83 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
84 </repository>
85 <snapshotRepository>
86 <id>asterix-snapshots</id>
87 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
88 </snapshotRepository>
89 </distributionManagement>
90
91 <profiles>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080092 <profile>
93 <id>optimizer-tests</id>
94 <properties>
95 <optimizer.tests />
96 </properties>
97 </profile>
98 <profile>
99 <id>metadata-tests</id>
100 <properties>
101 <metadata.tests />
102 </properties>
103 </profile>
104 <profile>
105 <id>execution-tests</id>
106 <properties>
107 <execution.tests />
108 </properties>
109 </profile>
Chris Hillery1a2d2292014-03-07 01:03:21 -0800110 <profile>
111 <id>invalid-tests</id>
112 <properties>
113 <invalid.tests />
114 </properties>
115 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000116 <profile>
117 <id>32bitvm</id>
118 <activation>
119 <property>
120 <name>sun.arch.data.model</name>
121 <value>32</value>
122 </property>
123 </activation>
124 <properties>
zheilbron9479fc12013-05-29 21:42:18 -0700125 <test.heap.size>2048</test.heap.size>
vinayakb38b7ca42012-03-05 05:44:15 +0000126 </properties>
127 </profile>
128
129 <profile>
130 <id>64bitvm</id>
131 <activation>
132 <property>
133 <name>sun.arch.data.model</name>
134 <value>64</value>
135 </property>
136 </activation>
137 <properties>
138 <test.heap.size>3072</test.heap.size>
139 </properties>
140 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800141
142 <profile>
143 <id>slow</id>
144 <properties>
145 <skipSlowTests>false</skipSlowTests>
146 </properties>
147 </profile>
148
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>
vinayakb38b7ca42012-03-05 05:44:15 +0000160 <module>asterix-external-data</module>
161 <module>asterix-metadata</module>
vinayakb5ee049d2013-04-06 21:21:29 +0000162 <module>asterix-test-framework</module>
163 <module>asterix-maven-plugins</module>
164 <module>asterix-server</module>
165 <module>asterix-installer</module>
166 <module>asterix-events</module>
Till Westmanndb64c0c2013-05-14 11:48:15 -0700167 <module>asterix-doc</module>
icetindil82838a22013-10-11 16:41:18 -0700168 <module>asterix-fuzzyjoin</module>
vinayakb38b7ca42012-03-05 05:44:15 +0000169 </modules>
170
171 <repositories>
172 <repository>
173 <releases>
174 <enabled>true</enabled>
175 <updatePolicy>always</updatePolicy>
176 <checksumPolicy>warn</checksumPolicy>
177 </releases>
178 <snapshots>
179 <enabled>true</enabled>
180 <updatePolicy>always</updatePolicy>
181 <checksumPolicy>fail</checksumPolicy>
182 </snapshots>
183 <id>asterix-public</id>
184 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
185 </repository>
186 <repository>
187 <releases>
188 <enabled>true</enabled>
189 <updatePolicy>always</updatePolicy>
190 <checksumPolicy>warn</checksumPolicy>
191 </releases>
192 <snapshots>
193 <enabled>true</enabled>
194 <updatePolicy>always</updatePolicy>
195 <checksumPolicy>fail</checksumPolicy>
196 </snapshots>
197 <id>third-party</id>
198 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
199 </repository>
200 <repository>
201 <releases>
202 <enabled>true</enabled>
203 <updatePolicy>always</updatePolicy>
204 <checksumPolicy>warn</checksumPolicy>
205 </releases>
206 <id>algebricks-releases</id>
207 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
208 </repository>
209 <repository>
210 <snapshots>
211 <enabled>true</enabled>
212 <updatePolicy>always</updatePolicy>
213 <checksumPolicy>fail</checksumPolicy>
214 </snapshots>
215 <id>algebricks-snapshots</id>
216 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
217 </repository>
218 </repositories>
vinayakb5ee049d2013-04-06 21:21:29 +0000219 <dependencyManagement>
220 <dependencies>
Chris Hillerye2542dc2014-02-21 01:01:19 -0800221 <dependency>
222 <groupId>junit</groupId>
223 <artifactId>junit</artifactId>
224 <version>4.8.1</version>
225 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000226 <dependency>
227 <groupId>edu.uci.ics.hyracks</groupId>
228 <artifactId>algebricks-compiler</artifactId>
229 <version>${algebricks.version}</version>
230 </dependency>
231 <dependency>
232 <groupId>edu.uci.ics.hyracks</groupId>
233 <artifactId>hyracks-api</artifactId>
234 <version>${hyracks.version}</version>
235 </dependency>
236 <dependency>
237 <groupId>edu.uci.ics.hyracks</groupId>
238 <artifactId>hyracks-dataflow-std</artifactId>
239 <version>${hyracks.version}</version>
240 </dependency>
241 <dependency>
242 <groupId>edu.uci.ics.hyracks</groupId>
243 <artifactId>hyracks-control-cc</artifactId>
244 <version>${hyracks.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>edu.uci.ics.hyracks</groupId>
248 <artifactId>hyracks-control-nc</artifactId>
249 <version>${hyracks.version}</version>
250 </dependency>
251 <dependency>
252 <groupId>edu.uci.ics.hyracks</groupId>
253 <artifactId>hyracks-server</artifactId>
254 <version>${hyracks.version}</version>
255 </dependency>
256 <dependency>
257 <groupId>edu.uci.ics.hyracks</groupId>
258 <artifactId>hyracks-cli</artifactId>
259 <version>${hyracks.version}</version>
260 </dependency>
261 <dependency>
262 <groupId>edu.uci.ics.hyracks</groupId>
263 <artifactId>hyracks-dataflow-hadoop</artifactId>
264 <version>${hyracks.version}</version>
265 </dependency>
266 <dependency>
267 <groupId>edu.uci.ics.hyracks</groupId>
268 <artifactId>hyracks-storage-am-btree</artifactId>
269 <version>${hyracks.version}</version>
270 </dependency>
271 <dependency>
272 <groupId>edu.uci.ics.hyracks</groupId>
273 <artifactId>hyracks-storage-am-rtree</artifactId>
274 <version>${hyracks.version}</version>
275 </dependency>
276 <dependency>
277 <groupId>edu.uci.ics.hyracks</groupId>
278 <artifactId>
279 hyracks-storage-am-invertedindex
280 </artifactId>
281 <version>${hyracks.version}</version>
282 </dependency>
283 <dependency>
284 <groupId>edu.uci.ics.hyracks</groupId>
285 <artifactId>hyracks-storage-am-common</artifactId>
286 <version>${hyracks.version}</version>
287 </dependency>
288 <dependency>
289 <groupId>edu.uci.ics.hyracks</groupId>
290 <artifactId>hyracks-client</artifactId>
291 <version>${hyracks.version}</version>
292 </dependency>
293 <dependency>
294 <groupId>edu.uci.ics.hyracks</groupId>
295 <artifactId>hyracks-storage-am-lsm-common</artifactId>
296 <version>${hyracks.version}</version>
297 </dependency>
298 <dependency>
299 <groupId>edu.uci.ics.hyracks</groupId>
300 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
301 <version>${hyracks.version}</version>
302 </dependency>
303 <dependency>
304 <groupId>edu.uci.ics.hyracks</groupId>
305 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
306 <version>${hyracks.version}</version>
307 </dependency>
308 <dependency>
309 <groupId>edu.uci.ics.hyracks</groupId>
310 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
311 <version>${hyracks.version}</version>
312 </dependency>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700313 <dependency>
314 <groupId>org.json</groupId>
315 <artifactId>json</artifactId>
316 <version>20090211</version>
317 <type>jar</type>
318 </dependency>
319 <dependency>
320 <groupId>javax.servlet</groupId>
321 <artifactId>servlet-api</artifactId>
322 <version>2.5</version>
323 <type>jar</type>
324 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000325 </dependencies>
326 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000327</project>