blob: 8e54001ee698b41dfcca82f383e7c4467174764c [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>
28 </properties>
vinayakb5ee049d2013-04-06 21:21:29 +000029
vinayakb38b7ca42012-03-05 05:44:15 +000030 <build>
Chris Hillerycdfcb922014-02-07 03:05:02 -080031 <plugins>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-release-plugin</artifactId>
35 <version>2.1</version>
36 <configuration>
37 <goals>package source:jar javadoc:jar deploy:deploy</goals>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-surefire-plugin</artifactId>
43 <version>2.8</version>
44 <configuration>
45 <failIfNoTests>false</failIfNoTests>
46 <systemPropertyVariables>
47 <skipFredSlowTests>true</skipFredSlowTests>
48 </systemPropertyVariables>
49 <!-- doesn't work from m2eclipse, currently <additionalClasspathElements>
50 <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement>
51 </additionalClasspathElements> -->
52 <forkMode>pertest</forkMode>
53 <argLine>-enableassertions -Xmx${test.heap.size}m
54 -Dfile.encoding=UTF-8
55 -Djava.util.logging.config.file=${user.home}/logging.properties
56 -Xdebug
57 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
58 <includes>
59 <include>**/*TestSuite.java</include>
60 <include>**/*Test.java</include>
61 </includes>
62 </configuration>
63 </plugin>
64 </plugins>
vinayakb38b7ca42012-03-05 05:44:15 +000065 </build>
66
67 <scm>
Vinayak Borkar7f787be2013-04-25 14:26:06 -070068 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
69 <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection>
vinayakb38b7ca42012-03-05 05:44:15 +000070 </scm>
71
72 <distributionManagement>
73 <repository>
74 <id>asterix-releases</id>
75 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
76 </repository>
77 <snapshotRepository>
78 <id>asterix-snapshots</id>
79 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
80 </snapshotRepository>
81 </distributionManagement>
82
83 <profiles>
84 <profile>
85 <id>32bitvm</id>
86 <activation>
87 <property>
88 <name>sun.arch.data.model</name>
89 <value>32</value>
90 </property>
91 </activation>
92 <properties>
zheilbron9479fc12013-05-29 21:42:18 -070093 <test.heap.size>2048</test.heap.size>
vinayakb38b7ca42012-03-05 05:44:15 +000094 </properties>
95 </profile>
96
97 <profile>
98 <id>64bitvm</id>
99 <activation>
100 <property>
101 <name>sun.arch.data.model</name>
102 <value>64</value>
103 </property>
104 </activation>
105 <properties>
106 <test.heap.size>3072</test.heap.size>
107 </properties>
108 </profile>
Chris Hillerycdfcb922014-02-07 03:05:02 -0800109
110 <profile>
111 <id>slow</id>
112 <properties>
113 <skipSlowTests>false</skipSlowTests>
114 </properties>
115 </profile>
116
vinayakb38b7ca42012-03-05 05:44:15 +0000117 </profiles>
118
119 <modules>
120 <module>asterix-common</module>
121 <module>asterix-algebra</module>
122 <module>asterix-app</module>
123 <module>asterix-tools</module>
124 <module>asterix-transactions</module>
125 <module>asterix-runtime</module>
126 <module>asterix-om</module>
127 <module>asterix-aql</module>
vinayakb38b7ca42012-03-05 05:44:15 +0000128 <module>asterix-external-data</module>
129 <module>asterix-metadata</module>
vinayakb5ee049d2013-04-06 21:21:29 +0000130 <module>asterix-test-framework</module>
131 <module>asterix-maven-plugins</module>
132 <module>asterix-server</module>
133 <module>asterix-installer</module>
134 <module>asterix-events</module>
Till Westmanndb64c0c2013-05-14 11:48:15 -0700135 <module>asterix-doc</module>
icetindil82838a22013-10-11 16:41:18 -0700136 <module>asterix-fuzzyjoin</module>
vinayakb38b7ca42012-03-05 05:44:15 +0000137 </modules>
138
139 <repositories>
140 <repository>
141 <releases>
142 <enabled>true</enabled>
143 <updatePolicy>always</updatePolicy>
144 <checksumPolicy>warn</checksumPolicy>
145 </releases>
146 <snapshots>
147 <enabled>true</enabled>
148 <updatePolicy>always</updatePolicy>
149 <checksumPolicy>fail</checksumPolicy>
150 </snapshots>
151 <id>asterix-public</id>
152 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
153 </repository>
154 <repository>
155 <releases>
156 <enabled>true</enabled>
157 <updatePolicy>always</updatePolicy>
158 <checksumPolicy>warn</checksumPolicy>
159 </releases>
160 <snapshots>
161 <enabled>true</enabled>
162 <updatePolicy>always</updatePolicy>
163 <checksumPolicy>fail</checksumPolicy>
164 </snapshots>
165 <id>third-party</id>
166 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
167 </repository>
168 <repository>
169 <releases>
170 <enabled>true</enabled>
171 <updatePolicy>always</updatePolicy>
172 <checksumPolicy>warn</checksumPolicy>
173 </releases>
174 <id>algebricks-releases</id>
175 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
176 </repository>
177 <repository>
178 <snapshots>
179 <enabled>true</enabled>
180 <updatePolicy>always</updatePolicy>
181 <checksumPolicy>fail</checksumPolicy>
182 </snapshots>
183 <id>algebricks-snapshots</id>
184 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
185 </repository>
186 </repositories>
vinayakb5ee049d2013-04-06 21:21:29 +0000187 <dependencyManagement>
188 <dependencies>
189 <dependency>
190 <groupId>edu.uci.ics.hyracks</groupId>
191 <artifactId>algebricks-compiler</artifactId>
192 <version>${algebricks.version}</version>
193 </dependency>
194 <dependency>
195 <groupId>edu.uci.ics.hyracks</groupId>
196 <artifactId>hyracks-api</artifactId>
197 <version>${hyracks.version}</version>
198 </dependency>
199 <dependency>
200 <groupId>edu.uci.ics.hyracks</groupId>
201 <artifactId>hyracks-dataflow-std</artifactId>
202 <version>${hyracks.version}</version>
203 </dependency>
204 <dependency>
205 <groupId>edu.uci.ics.hyracks</groupId>
206 <artifactId>hyracks-control-cc</artifactId>
207 <version>${hyracks.version}</version>
208 </dependency>
209 <dependency>
210 <groupId>edu.uci.ics.hyracks</groupId>
211 <artifactId>hyracks-control-nc</artifactId>
212 <version>${hyracks.version}</version>
213 </dependency>
214 <dependency>
215 <groupId>edu.uci.ics.hyracks</groupId>
216 <artifactId>hyracks-server</artifactId>
217 <version>${hyracks.version}</version>
218 </dependency>
219 <dependency>
220 <groupId>edu.uci.ics.hyracks</groupId>
221 <artifactId>hyracks-cli</artifactId>
222 <version>${hyracks.version}</version>
223 </dependency>
224 <dependency>
225 <groupId>edu.uci.ics.hyracks</groupId>
226 <artifactId>hyracks-dataflow-hadoop</artifactId>
227 <version>${hyracks.version}</version>
228 </dependency>
229 <dependency>
230 <groupId>edu.uci.ics.hyracks</groupId>
231 <artifactId>hyracks-storage-am-btree</artifactId>
232 <version>${hyracks.version}</version>
233 </dependency>
234 <dependency>
235 <groupId>edu.uci.ics.hyracks</groupId>
236 <artifactId>hyracks-storage-am-rtree</artifactId>
237 <version>${hyracks.version}</version>
238 </dependency>
239 <dependency>
240 <groupId>edu.uci.ics.hyracks</groupId>
241 <artifactId>
242 hyracks-storage-am-invertedindex
243 </artifactId>
244 <version>${hyracks.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>edu.uci.ics.hyracks</groupId>
248 <artifactId>hyracks-storage-am-common</artifactId>
249 <version>${hyracks.version}</version>
250 </dependency>
251 <dependency>
252 <groupId>edu.uci.ics.hyracks</groupId>
253 <artifactId>hyracks-client</artifactId>
254 <version>${hyracks.version}</version>
255 </dependency>
256 <dependency>
257 <groupId>edu.uci.ics.hyracks</groupId>
258 <artifactId>hyracks-storage-am-lsm-common</artifactId>
259 <version>${hyracks.version}</version>
260 </dependency>
261 <dependency>
262 <groupId>edu.uci.ics.hyracks</groupId>
263 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
264 <version>${hyracks.version}</version>
265 </dependency>
266 <dependency>
267 <groupId>edu.uci.ics.hyracks</groupId>
268 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
269 <version>${hyracks.version}</version>
270 </dependency>
271 <dependency>
272 <groupId>edu.uci.ics.hyracks</groupId>
273 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
274 <version>${hyracks.version}</version>
275 </dependency>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700276 <dependency>
277 <groupId>org.json</groupId>
278 <artifactId>json</artifactId>
279 <version>20090211</version>
280 <type>jar</type>
281 </dependency>
282 <dependency>
283 <groupId>javax.servlet</groupId>
284 <artifactId>servlet-api</artifactId>
285 <version>2.5</version>
286 <type>jar</type>
287 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000288 </dependencies>
289 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000290</project>