blob: 3e7e43ed56d37a295f2bb7cc0d1f46b71ca88e7e [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>
33 <test.includes>**/*TestSuite.java,**/*Test.java</test.includes>
34 <test.excludes>${optimizer.tests},${metadata.tests},${execution.tests}</test.excludes>
Chris Hillerycdfcb922014-02-07 03:05:02 -080035 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000036
vinayakb38b7ca42012-03-05 05:44:15 +000037 <build>
Chris Hillerycdfcb922014-02-07 03:05:02 -080038 <plugins>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-release-plugin</artifactId>
42 <version>2.1</version>
43 <configuration>
44 <goals>package source:jar javadoc:jar deploy:deploy</goals>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-surefire-plugin</artifactId>
Chris Hillerye2542dc2014-02-21 01:01:19 -080050 <version>2.16</version>
Chris Hillerycdfcb922014-02-07 03:05:02 -080051 <configuration>
52 <failIfNoTests>false</failIfNoTests>
53 <systemPropertyVariables>
54 <skipFredSlowTests>true</skipFredSlowTests>
55 </systemPropertyVariables>
Chris Hillerye2542dc2014-02-21 01:01:19 -080056 <forkCount>1</forkCount>
57 <reuseForks>false</reuseForks>
Chris Hillerycdfcb922014-02-07 03:05:02 -080058 <argLine>-enableassertions -Xmx${test.heap.size}m
59 -Dfile.encoding=UTF-8
60 -Djava.util.logging.config.file=${user.home}/logging.properties
61 -Xdebug
62 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
63 <includes>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080064 <include>${test.includes}</include>
Chris Hillerycdfcb922014-02-07 03:05:02 -080065 </includes>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080066 <excludes>
67 <exclude>${test.excludes}</exclude>
68 </excludes>
Chris Hillerycdfcb922014-02-07 03:05:02 -080069 </configuration>
70 </plugin>
71 </plugins>
vinayakb38b7ca42012-03-05 05:44:15 +000072 </build>
73
74 <scm>
Vinayak Borkar7f787be2013-04-25 14:26:06 -070075 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
76 <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection>
vinayakb38b7ca42012-03-05 05:44:15 +000077 </scm>
78
79 <distributionManagement>
80 <repository>
81 <id>asterix-releases</id>
82 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
83 </repository>
84 <snapshotRepository>
85 <id>asterix-snapshots</id>
86 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
87 </snapshotRepository>
88 </distributionManagement>
89
90 <profiles>
Chris Hilleryb5c85ac2014-02-21 02:33:37 -080091 <profile>
92 <id>optimizer-tests</id>
93 <properties>
94 <optimizer.tests />
95 </properties>
96 </profile>
97 <profile>
98 <id>metadata-tests</id>
99 <properties>
100 <metadata.tests />
101 </properties>
102 </profile>
103 <profile>
104 <id>execution-tests</id>
105 <properties>
106 <execution.tests />
107 </properties>
108 </profile>
vinayakb38b7ca42012-03-05 05:44:15 +0000109 <profile>
110 <id>32bitvm</id>
111 <activation>
112 <property>
113 <name>sun.arch.data.model</name>
114 <value>32</value>
115 </property>
116 </activation>
117 <properties>
zheilbron9479fc12013-05-29 21:42:18 -0700118 <test.heap.size>2048</test.heap.size>
vinayakb38b7ca42012-03-05 05:44:15 +0000119 </properties>
120 </profile>
121
122 <profile>
123 <id>64bitvm</id>
124 <activation>
125 <property>
126 <name>sun.arch.data.model</name>
127 <value>64</value>
128 </property>
129 </activation>
130 <properties>
131 <test.heap.size>3072</test.heap.size>
132 </properties>
133 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800134
135 <profile>
136 <id>slow</id>
137 <properties>
138 <skipSlowTests>false</skipSlowTests>
139 </properties>
140 </profile>
141
vinayakb38b7ca42012-03-05 05:44:15 +0000142 </profiles>
143
144 <modules>
145 <module>asterix-common</module>
146 <module>asterix-algebra</module>
147 <module>asterix-app</module>
148 <module>asterix-tools</module>
149 <module>asterix-transactions</module>
150 <module>asterix-runtime</module>
151 <module>asterix-om</module>
152 <module>asterix-aql</module>
vinayakb38b7ca42012-03-05 05:44:15 +0000153 <module>asterix-external-data</module>
154 <module>asterix-metadata</module>
vinayakb5ee049d2013-04-06 21:21:29 +0000155 <module>asterix-test-framework</module>
156 <module>asterix-maven-plugins</module>
157 <module>asterix-server</module>
158 <module>asterix-installer</module>
159 <module>asterix-events</module>
Till Westmanndb64c0c2013-05-14 11:48:15 -0700160 <module>asterix-doc</module>
icetindil82838a22013-10-11 16:41:18 -0700161 <module>asterix-fuzzyjoin</module>
vinayakb38b7ca42012-03-05 05:44:15 +0000162 </modules>
163
164 <repositories>
165 <repository>
166 <releases>
167 <enabled>true</enabled>
168 <updatePolicy>always</updatePolicy>
169 <checksumPolicy>warn</checksumPolicy>
170 </releases>
171 <snapshots>
172 <enabled>true</enabled>
173 <updatePolicy>always</updatePolicy>
174 <checksumPolicy>fail</checksumPolicy>
175 </snapshots>
176 <id>asterix-public</id>
177 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
178 </repository>
179 <repository>
180 <releases>
181 <enabled>true</enabled>
182 <updatePolicy>always</updatePolicy>
183 <checksumPolicy>warn</checksumPolicy>
184 </releases>
185 <snapshots>
186 <enabled>true</enabled>
187 <updatePolicy>always</updatePolicy>
188 <checksumPolicy>fail</checksumPolicy>
189 </snapshots>
190 <id>third-party</id>
191 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
192 </repository>
193 <repository>
194 <releases>
195 <enabled>true</enabled>
196 <updatePolicy>always</updatePolicy>
197 <checksumPolicy>warn</checksumPolicy>
198 </releases>
199 <id>algebricks-releases</id>
200 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
201 </repository>
202 <repository>
203 <snapshots>
204 <enabled>true</enabled>
205 <updatePolicy>always</updatePolicy>
206 <checksumPolicy>fail</checksumPolicy>
207 </snapshots>
208 <id>algebricks-snapshots</id>
209 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
210 </repository>
211 </repositories>
vinayakb5ee049d2013-04-06 21:21:29 +0000212 <dependencyManagement>
213 <dependencies>
Chris Hillerye2542dc2014-02-21 01:01:19 -0800214 <dependency>
215 <groupId>junit</groupId>
216 <artifactId>junit</artifactId>
217 <version>4.8.1</version>
218 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000219 <dependency>
220 <groupId>edu.uci.ics.hyracks</groupId>
221 <artifactId>algebricks-compiler</artifactId>
222 <version>${algebricks.version}</version>
223 </dependency>
224 <dependency>
225 <groupId>edu.uci.ics.hyracks</groupId>
226 <artifactId>hyracks-api</artifactId>
227 <version>${hyracks.version}</version>
228 </dependency>
229 <dependency>
230 <groupId>edu.uci.ics.hyracks</groupId>
231 <artifactId>hyracks-dataflow-std</artifactId>
232 <version>${hyracks.version}</version>
233 </dependency>
234 <dependency>
235 <groupId>edu.uci.ics.hyracks</groupId>
236 <artifactId>hyracks-control-cc</artifactId>
237 <version>${hyracks.version}</version>
238 </dependency>
239 <dependency>
240 <groupId>edu.uci.ics.hyracks</groupId>
241 <artifactId>hyracks-control-nc</artifactId>
242 <version>${hyracks.version}</version>
243 </dependency>
244 <dependency>
245 <groupId>edu.uci.ics.hyracks</groupId>
246 <artifactId>hyracks-server</artifactId>
247 <version>${hyracks.version}</version>
248 </dependency>
249 <dependency>
250 <groupId>edu.uci.ics.hyracks</groupId>
251 <artifactId>hyracks-cli</artifactId>
252 <version>${hyracks.version}</version>
253 </dependency>
254 <dependency>
255 <groupId>edu.uci.ics.hyracks</groupId>
256 <artifactId>hyracks-dataflow-hadoop</artifactId>
257 <version>${hyracks.version}</version>
258 </dependency>
259 <dependency>
260 <groupId>edu.uci.ics.hyracks</groupId>
261 <artifactId>hyracks-storage-am-btree</artifactId>
262 <version>${hyracks.version}</version>
263 </dependency>
264 <dependency>
265 <groupId>edu.uci.ics.hyracks</groupId>
266 <artifactId>hyracks-storage-am-rtree</artifactId>
267 <version>${hyracks.version}</version>
268 </dependency>
269 <dependency>
270 <groupId>edu.uci.ics.hyracks</groupId>
271 <artifactId>
272 hyracks-storage-am-invertedindex
273 </artifactId>
274 <version>${hyracks.version}</version>
275 </dependency>
276 <dependency>
277 <groupId>edu.uci.ics.hyracks</groupId>
278 <artifactId>hyracks-storage-am-common</artifactId>
279 <version>${hyracks.version}</version>
280 </dependency>
281 <dependency>
282 <groupId>edu.uci.ics.hyracks</groupId>
283 <artifactId>hyracks-client</artifactId>
284 <version>${hyracks.version}</version>
285 </dependency>
286 <dependency>
287 <groupId>edu.uci.ics.hyracks</groupId>
288 <artifactId>hyracks-storage-am-lsm-common</artifactId>
289 <version>${hyracks.version}</version>
290 </dependency>
291 <dependency>
292 <groupId>edu.uci.ics.hyracks</groupId>
293 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
294 <version>${hyracks.version}</version>
295 </dependency>
296 <dependency>
297 <groupId>edu.uci.ics.hyracks</groupId>
298 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
299 <version>${hyracks.version}</version>
300 </dependency>
301 <dependency>
302 <groupId>edu.uci.ics.hyracks</groupId>
303 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
304 <version>${hyracks.version}</version>
305 </dependency>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700306 <dependency>
307 <groupId>org.json</groupId>
308 <artifactId>json</artifactId>
309 <version>20090211</version>
310 <type>jar</type>
311 </dependency>
312 <dependency>
313 <groupId>javax.servlet</groupId>
314 <artifactId>servlet-api</artifactId>
315 <version>2.5</version>
316 <type>jar</type>
317 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000318 </dependencies>
319 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000320</project>