blob: c313bd77e414a618b1a430713b6dc5294822d052 [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001<?xml version="1.0" encoding="UTF-8"?>
2<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">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>edu.uci.ics.asterix</groupId>
5 <artifactId>asterix</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -07006 <version>0.0.6-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +00007 <packaging>pom</packaging>
8
vinayakb5ee049d2013-04-06 21:21:29 +00009 <properties>
Vinayak Borkarfff2a042013-04-25 16:04:14 -070010 <algebricks.version>0.2.6-SNAPSHOT</algebricks.version>
11 <hyracks.version>0.2.6-SNAPSHOT</hyracks.version>
vinayakb5ee049d2013-04-06 21:21:29 +000012 </properties>
13
vinayakb38b7ca42012-03-05 05:44:15 +000014 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-release-plugin</artifactId>
19 <version>2.1</version>
20 <configuration>
vinayakb38b7ca42012-03-05 05:44:15 +000021 <goals>package source:jar javadoc:jar deploy:deploy</goals>
22 </configuration>
23 </plugin>
24 </plugins>
25 </build>
26
27 <scm>
Vinayak Borkar7f787be2013-04-25 14:26:06 -070028 <connection>scm:git:https://code.google.com/p/asterixdb/</connection>
29 <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection>
vinayakb38b7ca42012-03-05 05:44:15 +000030 </scm>
31
32 <distributionManagement>
33 <repository>
34 <id>asterix-releases</id>
35 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url>
36 </repository>
37 <snapshotRepository>
38 <id>asterix-snapshots</id>
39 <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url>
40 </snapshotRepository>
41 </distributionManagement>
42
43 <profiles>
44 <profile>
45 <id>32bitvm</id>
46 <activation>
47 <property>
48 <name>sun.arch.data.model</name>
49 <value>32</value>
50 </property>
51 </activation>
52 <properties>
53 <test.heap.size>2047</test.heap.size>
54 </properties>
55 </profile>
56
57 <profile>
58 <id>64bitvm</id>
59 <activation>
60 <property>
61 <name>sun.arch.data.model</name>
62 <value>64</value>
63 </property>
64 </activation>
65 <properties>
66 <test.heap.size>3072</test.heap.size>
67 </properties>
68 </profile>
69 </profiles>
70
71 <modules>
72 <module>asterix-common</module>
73 <module>asterix-algebra</module>
74 <module>asterix-app</module>
75 <module>asterix-tools</module>
76 <module>asterix-transactions</module>
77 <module>asterix-runtime</module>
78 <module>asterix-om</module>
79 <module>asterix-aql</module>
vinayakb38b7ca42012-03-05 05:44:15 +000080 <module>asterix-external-data</module>
81 <module>asterix-metadata</module>
vinayakb5ee049d2013-04-06 21:21:29 +000082 <module>asterix-test-framework</module>
83 <module>asterix-maven-plugins</module>
84 <module>asterix-server</module>
85 <module>asterix-installer</module>
86 <module>asterix-events</module>
Till Westmanndb64c0c2013-05-14 11:48:15 -070087 <module>asterix-doc</module>
vinayakb38b7ca42012-03-05 05:44:15 +000088 </modules>
89
90 <repositories>
91 <repository>
92 <releases>
93 <enabled>true</enabled>
94 <updatePolicy>always</updatePolicy>
95 <checksumPolicy>warn</checksumPolicy>
96 </releases>
97 <snapshots>
98 <enabled>true</enabled>
99 <updatePolicy>always</updatePolicy>
100 <checksumPolicy>fail</checksumPolicy>
101 </snapshots>
102 <id>asterix-public</id>
103 <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url>
104 </repository>
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>third-party</id>
117 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url>
118 </repository>
119 <repository>
120 <releases>
121 <enabled>true</enabled>
122 <updatePolicy>always</updatePolicy>
123 <checksumPolicy>warn</checksumPolicy>
124 </releases>
125 <id>algebricks-releases</id>
126 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url>
127 </repository>
128 <repository>
129 <snapshots>
130 <enabled>true</enabled>
131 <updatePolicy>always</updatePolicy>
132 <checksumPolicy>fail</checksumPolicy>
133 </snapshots>
134 <id>algebricks-snapshots</id>
135 <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url>
136 </repository>
137 </repositories>
vinayakb5ee049d2013-04-06 21:21:29 +0000138 <dependencies>
139 <dependency>
140 <groupId>net.sourceforge.cobertura</groupId>
141 <artifactId>cobertura</artifactId>
142 <version>1.9.4</version>
143 <optional>true</optional>
144 </dependency>
145 </dependencies>
146 <dependencyManagement>
147 <dependencies>
148 <dependency>
149 <groupId>edu.uci.ics.hyracks</groupId>
150 <artifactId>algebricks-compiler</artifactId>
151 <version>${algebricks.version}</version>
152 </dependency>
153 <dependency>
154 <groupId>edu.uci.ics.hyracks</groupId>
155 <artifactId>hyracks-api</artifactId>
156 <version>${hyracks.version}</version>
157 </dependency>
158 <dependency>
159 <groupId>edu.uci.ics.hyracks</groupId>
160 <artifactId>hyracks-dataflow-std</artifactId>
161 <version>${hyracks.version}</version>
162 </dependency>
163 <dependency>
164 <groupId>edu.uci.ics.hyracks</groupId>
165 <artifactId>hyracks-control-cc</artifactId>
166 <version>${hyracks.version}</version>
167 </dependency>
168 <dependency>
169 <groupId>edu.uci.ics.hyracks</groupId>
170 <artifactId>hyracks-control-nc</artifactId>
171 <version>${hyracks.version}</version>
172 </dependency>
173 <dependency>
174 <groupId>edu.uci.ics.hyracks</groupId>
175 <artifactId>hyracks-server</artifactId>
176 <version>${hyracks.version}</version>
177 </dependency>
178 <dependency>
179 <groupId>edu.uci.ics.hyracks</groupId>
180 <artifactId>hyracks-cli</artifactId>
181 <version>${hyracks.version}</version>
182 </dependency>
183 <dependency>
184 <groupId>edu.uci.ics.hyracks</groupId>
185 <artifactId>hyracks-dataflow-hadoop</artifactId>
186 <version>${hyracks.version}</version>
187 </dependency>
188 <dependency>
189 <groupId>edu.uci.ics.hyracks</groupId>
190 <artifactId>hyracks-storage-am-btree</artifactId>
191 <version>${hyracks.version}</version>
192 </dependency>
193 <dependency>
194 <groupId>edu.uci.ics.hyracks</groupId>
195 <artifactId>hyracks-storage-am-rtree</artifactId>
196 <version>${hyracks.version}</version>
197 </dependency>
198 <dependency>
199 <groupId>edu.uci.ics.hyracks</groupId>
200 <artifactId>
201 hyracks-storage-am-invertedindex
202 </artifactId>
203 <version>${hyracks.version}</version>
204 </dependency>
205 <dependency>
206 <groupId>edu.uci.ics.hyracks</groupId>
207 <artifactId>hyracks-storage-am-common</artifactId>
208 <version>${hyracks.version}</version>
209 </dependency>
210 <dependency>
211 <groupId>edu.uci.ics.hyracks</groupId>
212 <artifactId>hyracks-client</artifactId>
213 <version>${hyracks.version}</version>
214 </dependency>
215 <dependency>
216 <groupId>edu.uci.ics.hyracks</groupId>
217 <artifactId>hyracks-storage-am-lsm-common</artifactId>
218 <version>${hyracks.version}</version>
219 </dependency>
220 <dependency>
221 <groupId>edu.uci.ics.hyracks</groupId>
222 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
223 <version>${hyracks.version}</version>
224 </dependency>
225 <dependency>
226 <groupId>edu.uci.ics.hyracks</groupId>
227 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
228 <version>${hyracks.version}</version>
229 </dependency>
230 <dependency>
231 <groupId>edu.uci.ics.hyracks</groupId>
232 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
233 <version>${hyracks.version}</version>
234 </dependency>
Vinayak Borkar4855e7e2013-05-29 17:50:03 -0700235 <dependency>
236 <groupId>org.json</groupId>
237 <artifactId>json</artifactId>
238 <version>20090211</version>
239 <type>jar</type>
240 </dependency>
241 <dependency>
242 <groupId>javax.servlet</groupId>
243 <artifactId>servlet-api</artifactId>
244 <version>2.5</version>
245 <type>jar</type>
246 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000247 </dependencies>
248 </dependencyManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000249</project>