blob: ee4220fe570ab66001475ca6319742ef12b872b0 [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 Borkar726f3922013-04-25 14:32:21 -070020 <version>0.0.6-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 <packaging>pom</packaging>
22
vinayakb5ee049d2013-04-06 21:21:29 +000023 <properties>
Vinayak Borkarfff2a042013-04-25 16:04:14 -070024 <algebricks.version>0.2.6-SNAPSHOT</algebricks.version>
25 <hyracks.version>0.2.6-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>
vinayakb38b7ca42012-03-05 05:44:15 +0000102 </modules>
103
104 <repositories>
105 <repository>
106 <releases>
107 <enabled>true</enabled>
108 <updatePolicy>always</updatePolicy>
109 <checksumPolicy>warn</checksumPolicy>
110 </releases>
111 <snapshots>
112 <enabled>true</enabled>
113 <updatePolicy>always</updatePolicy>
114 <checksumPolicy>fail</checksumPolicy>
115 </snapshots>
116 <id>asterix-public</id>
117 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
118 </repository>
119 <repository>
120 <releases>
121 <enabled>true</enabled>
122 <updatePolicy>always</updatePolicy>
123 <checksumPolicy>warn</checksumPolicy>
124 </releases>
125 <snapshots>
126 <enabled>true</enabled>
127 <updatePolicy>always</updatePolicy>
128 <checksumPolicy>fail</checksumPolicy>
129 </snapshots>
130 <id>third-party</id>
131 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
132 </repository>
133 <repository>
134 <releases>
135 <enabled>true</enabled>
136 <updatePolicy>always</updatePolicy>
137 <checksumPolicy>warn</checksumPolicy>
138 </releases>
139 <id>algebricks-releases</id>
140 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
141 </repository>
142 <repository>
143 <snapshots>
144 <enabled>true</enabled>
145 <updatePolicy>always</updatePolicy>
146 <checksumPolicy>fail</checksumPolicy>
147 </snapshots>
148 <id>algebricks-snapshots</id>
149 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
150 </repository>
151 </repositories>
vinayakb5ee049d2013-04-06 21:21:29 +0000152 <dependencyManagement>
153 <dependencies>
154 <dependency>
155 <groupId>edu.uci.ics.hyracks</groupId>
156 <artifactId>algebricks-compiler</artifactId>
157 <version>${algebricks.version}</version>
158 </dependency>
159 <dependency>
160 <groupId>edu.uci.ics.hyracks</groupId>
161 <artifactId>hyracks-api</artifactId>
162 <version>${hyracks.version}</version>
163 </dependency>
164 <dependency>
165 <groupId>edu.uci.ics.hyracks</groupId>
166 <artifactId>hyracks-dataflow-std</artifactId>
167 <version>${hyracks.version}</version>
168 </dependency>
169 <dependency>
170 <groupId>edu.uci.ics.hyracks</groupId>
171 <artifactId>hyracks-control-cc</artifactId>
172 <version>${hyracks.version}</version>
173 </dependency>
174 <dependency>
175 <groupId>edu.uci.ics.hyracks</groupId>
176 <artifactId>hyracks-control-nc</artifactId>
177 <version>${hyracks.version}</version>
178 </dependency>
179 <dependency>
180 <groupId>edu.uci.ics.hyracks</groupId>
181 <artifactId>hyracks-server</artifactId>
182 <version>${hyracks.version}</version>
183 </dependency>
184 <dependency>
185 <groupId>edu.uci.ics.hyracks</groupId>
186 <artifactId>hyracks-cli</artifactId>
187 <version>${hyracks.version}</version>
188 </dependency>
189 <dependency>
190 <groupId>edu.uci.ics.hyracks</groupId>
191 <artifactId>hyracks-dataflow-hadoop</artifactId>
192 <version>${hyracks.version}</version>
193 </dependency>
194 <dependency>
195 <groupId>edu.uci.ics.hyracks</groupId>
196 <artifactId>hyracks-storage-am-btree</artifactId>
197 <version>${hyracks.version}</version>
198 </dependency>
199 <dependency>
200 <groupId>edu.uci.ics.hyracks</groupId>
201 <artifactId>hyracks-storage-am-rtree</artifactId>
202 <version>${hyracks.version}</version>
203 </dependency>
204 <dependency>
205 <groupId>edu.uci.ics.hyracks</groupId>
206 <artifactId>
207 hyracks-storage-am-invertedindex
208 </artifactId>
209 <version>${hyracks.version}</version>
210 </dependency>
211 <dependency>
212 <groupId>edu.uci.ics.hyracks</groupId>
213 <artifactId>hyracks-storage-am-common</artifactId>
214 <version>${hyracks.version}</version>
215 </dependency>
216 <dependency>
217 <groupId>edu.uci.ics.hyracks</groupId>
218 <artifactId>hyracks-client</artifactId>
219 <version>${hyracks.version}</version>
220 </dependency>
221 <dependency>
222 <groupId>edu.uci.ics.hyracks</groupId>
223 <artifactId>hyracks-storage-am-lsm-common</artifactId>
224 <version>${hyracks.version}</version>
225 </dependency>
226 <dependency>
227 <groupId>edu.uci.ics.hyracks</groupId>
228 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
229 <version>${hyracks.version}</version>
230 </dependency>
231 <dependency>
232 <groupId>edu.uci.ics.hyracks</groupId>
233 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
234 <version>${hyracks.version}</version>
235 </dependency>
236 <dependency>
237 <groupId>edu.uci.ics.hyracks</groupId>
238 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
239 <version>${hyracks.version}</version>
240 </dependency>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700241 <dependency>
242 <groupId>org.json</groupId>
243 <artifactId>json</artifactId>
244 <version>20090211</version>
245 <type>jar</type>
246 </dependency>
247 <dependency>
248 <groupId>javax.servlet</groupId>
249 <artifactId>servlet-api</artifactId>
250 <version>2.5</version>
251 <type>jar</type>
252 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000253 </dependencies>
254 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000255</project>