blob: c0dfb4e3a62bfdeb4a2035bc5c53a41efabd34a4 [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">
17 <modelVersion>4.0.0</modelVersion>
18 <groupId>edu.uci.ics.asterix</groupId>
19 <artifactId>asterix</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -080020 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 <packaging>pom</packaging>
22
vinayakb5ee049d2013-04-06 21:21:29 +000023 <properties>
zheilbronaa8eddf2014-01-10 14:57:22 -080024 <algebricks.version>0.2.11-SNAPSHOT</algebricks.version>
25 <hyracks.version>0.2.11-SNAPSHOT</hyracks.version>
vinayakb5ee049d2013-04-06 21:21:29 +000026 </properties>
27
vinayakb38b7ca42012-03-05 05:44:15 +000028 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-release-plugin</artifactId>
33 <version>2.1</version>
34 <configuration>
vinayakb38b7ca42012-03-05 05:44:15 +000035 <goals>package source:jar javadoc:jar deploy:deploy</goals>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40
41 <scm>
Vinayak Borkar7f787be2013-04-25 14:26:06 -070042 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
43 <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection>
vinayakb38b7ca42012-03-05 05:44:15 +000044 </scm>
45
46 <distributionManagement>
47 <repository>
48 <id>asterix-releases</id>
49 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
50 </repository>
51 <snapshotRepository>
52 <id>asterix-snapshots</id>
53 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
54 </snapshotRepository>
55 </distributionManagement>
56
57 <profiles>
58 <profile>
59 <id>32bitvm</id>
60 <activation>
61 <property>
62 <name>sun.arch.data.model</name>
63 <value>32</value>
64 </property>
65 </activation>
66 <properties>
zheilbron9479fc12013-05-29 21:42:18 -070067 <test.heap.size>2048</test.heap.size>
vinayakb38b7ca42012-03-05 05:44:15 +000068 </properties>
69 </profile>
70
71 <profile>
72 <id>64bitvm</id>
73 <activation>
74 <property>
75 <name>sun.arch.data.model</name>
76 <value>64</value>
77 </property>
78 </activation>
79 <properties>
80 <test.heap.size>3072</test.heap.size>
81 </properties>
82 </profile>
83 </profiles>
84
85 <modules>
86 <module>asterix-common</module>
87 <module>asterix-algebra</module>
88 <module>asterix-app</module>
89 <module>asterix-tools</module>
90 <module>asterix-transactions</module>
91 <module>asterix-runtime</module>
92 <module>asterix-om</module>
93 <module>asterix-aql</module>
vinayakb38b7ca42012-03-05 05:44:15 +000094 <module>asterix-external-data</module>
95 <module>asterix-metadata</module>
vinayakb5ee049d2013-04-06 21:21:29 +000096 <module>asterix-test-framework</module>
97 <module>asterix-maven-plugins</module>
98 <module>asterix-server</module>
99 <module>asterix-installer</module>
100 <module>asterix-events</module>
Till Westmanndb64c0c2013-05-14 11:48:15 -0700101 <module>asterix-doc</module>
icetindil82838a22013-10-11 16:41:18 -0700102 <module>asterix-fuzzyjoin</module>
vinayakb38b7ca42012-03-05 05:44:15 +0000103 </modules>
104
105 <repositories>
106 <repository>
107 <releases>
108 <enabled>true</enabled>
109 <updatePolicy>always</updatePolicy>
110 <checksumPolicy>warn</checksumPolicy>
111 </releases>
112 <snapshots>
113 <enabled>true</enabled>
114 <updatePolicy>always</updatePolicy>
115 <checksumPolicy>fail</checksumPolicy>
116 </snapshots>
117 <id>asterix-public</id>
118 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
119 </repository>
120 <repository>
121 <releases>
122 <enabled>true</enabled>
123 <updatePolicy>always</updatePolicy>
124 <checksumPolicy>warn</checksumPolicy>
125 </releases>
126 <snapshots>
127 <enabled>true</enabled>
128 <updatePolicy>always</updatePolicy>
129 <checksumPolicy>fail</checksumPolicy>
130 </snapshots>
131 <id>third-party</id>
132 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
133 </repository>
134 <repository>
135 <releases>
136 <enabled>true</enabled>
137 <updatePolicy>always</updatePolicy>
138 <checksumPolicy>warn</checksumPolicy>
139 </releases>
140 <id>algebricks-releases</id>
141 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
142 </repository>
143 <repository>
144 <snapshots>
145 <enabled>true</enabled>
146 <updatePolicy>always</updatePolicy>
147 <checksumPolicy>fail</checksumPolicy>
148 </snapshots>
149 <id>algebricks-snapshots</id>
150 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
151 </repository>
152 </repositories>
vinayakb5ee049d2013-04-06 21:21:29 +0000153 <dependencyManagement>
154 <dependencies>
155 <dependency>
156 <groupId>edu.uci.ics.hyracks</groupId>
157 <artifactId>algebricks-compiler</artifactId>
158 <version>${algebricks.version}</version>
159 </dependency>
160 <dependency>
161 <groupId>edu.uci.ics.hyracks</groupId>
162 <artifactId>hyracks-api</artifactId>
163 <version>${hyracks.version}</version>
164 </dependency>
165 <dependency>
166 <groupId>edu.uci.ics.hyracks</groupId>
167 <artifactId>hyracks-dataflow-std</artifactId>
168 <version>${hyracks.version}</version>
169 </dependency>
170 <dependency>
171 <groupId>edu.uci.ics.hyracks</groupId>
172 <artifactId>hyracks-control-cc</artifactId>
173 <version>${hyracks.version}</version>
174 </dependency>
175 <dependency>
176 <groupId>edu.uci.ics.hyracks</groupId>
177 <artifactId>hyracks-control-nc</artifactId>
178 <version>${hyracks.version}</version>
179 </dependency>
180 <dependency>
181 <groupId>edu.uci.ics.hyracks</groupId>
182 <artifactId>hyracks-server</artifactId>
183 <version>${hyracks.version}</version>
184 </dependency>
185 <dependency>
186 <groupId>edu.uci.ics.hyracks</groupId>
187 <artifactId>hyracks-cli</artifactId>
188 <version>${hyracks.version}</version>
189 </dependency>
190 <dependency>
191 <groupId>edu.uci.ics.hyracks</groupId>
192 <artifactId>hyracks-dataflow-hadoop</artifactId>
193 <version>${hyracks.version}</version>
194 </dependency>
195 <dependency>
196 <groupId>edu.uci.ics.hyracks</groupId>
197 <artifactId>hyracks-storage-am-btree</artifactId>
198 <version>${hyracks.version}</version>
199 </dependency>
200 <dependency>
201 <groupId>edu.uci.ics.hyracks</groupId>
202 <artifactId>hyracks-storage-am-rtree</artifactId>
203 <version>${hyracks.version}</version>
204 </dependency>
205 <dependency>
206 <groupId>edu.uci.ics.hyracks</groupId>
207 <artifactId>
208 hyracks-storage-am-invertedindex
209 </artifactId>
210 <version>${hyracks.version}</version>
211 </dependency>
212 <dependency>
213 <groupId>edu.uci.ics.hyracks</groupId>
214 <artifactId>hyracks-storage-am-common</artifactId>
215 <version>${hyracks.version}</version>
216 </dependency>
217 <dependency>
218 <groupId>edu.uci.ics.hyracks</groupId>
219 <artifactId>hyracks-client</artifactId>
220 <version>${hyracks.version}</version>
221 </dependency>
222 <dependency>
223 <groupId>edu.uci.ics.hyracks</groupId>
224 <artifactId>hyracks-storage-am-lsm-common</artifactId>
225 <version>${hyracks.version}</version>
226 </dependency>
227 <dependency>
228 <groupId>edu.uci.ics.hyracks</groupId>
229 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
230 <version>${hyracks.version}</version>
231 </dependency>
232 <dependency>
233 <groupId>edu.uci.ics.hyracks</groupId>
234 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
235 <version>${hyracks.version}</version>
236 </dependency>
237 <dependency>
238 <groupId>edu.uci.ics.hyracks</groupId>
239 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
240 <version>${hyracks.version}</version>
241 </dependency>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700242 <dependency>
243 <groupId>org.json</groupId>
244 <artifactId>json</artifactId>
245 <version>20090211</version>
246 <type>jar</type>
247 </dependency>
248 <dependency>
249 <groupId>javax.servlet</groupId>
250 <artifactId>servlet-api</artifactId>
251 <version>2.5</version>
252 <type>jar</type>
253 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000254 </dependencies>
255 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000256</project>