vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 2 | <!-- |
| 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 | !--> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 16 | <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 Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 20 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | <packaging>pom</packaging> |
| 22 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 23 | <properties> |
buyingyi | 0f3dfd6 | 2013-07-22 13:12:32 -0700 | [diff] [blame] | 24 | <algebricks.version>0.2.10-SNAPSHOT</algebricks.version> |
| 25 | <hyracks.version>0.2.10-SNAPSHOT</hyracks.version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 26 | </properties> |
| 27 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 28 | <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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 35 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 36 | </configuration> |
| 37 | </plugin> |
| 38 | </plugins> |
| 39 | </build> |
| 40 | |
| 41 | <scm> |
Vinayak Borkar | 7f787be | 2013-04-25 14:26:06 -0700 | [diff] [blame] | 42 | <connection>scm:git:https://code.google.com/p/asterixdb/</connection> |
| 43 | <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 44 | </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> |
zheilbron | 9479fc1 | 2013-05-29 21:42:18 -0700 | [diff] [blame] | 67 | <test.heap.size>2048</test.heap.size> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 68 | </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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 94 | <module>asterix-external-data</module> |
| 95 | <module>asterix-metadata</module> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 96 | <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 Westmann | db64c0c | 2013-05-14 11:48:15 -0700 | [diff] [blame] | 101 | <module>asterix-doc</module> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 102 | </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> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 152 | <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 Borkar | 4855e7e | 2013-05-29 17:50:03 -0700 | [diff] [blame] | 241 | <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> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 253 | </dependencies> |
| 254 | </dependencyManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 255 | </project> |