vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | <?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 Borkar | 52a5978 | 2013-04-25 14:32:07 -0700 | [diff] [blame^] | 6 | <version>0.0.5</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 7 | <packaging>pom</packaging> |
| 8 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 9 | <properties> |
Vinayak Borkar | 308d15b | 2013-04-25 14:15:43 -0700 | [diff] [blame] | 10 | <algebricks.version>0.2.5</algebricks.version> |
| 11 | <hyracks.version>0.2.5</hyracks.version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 12 | </properties> |
| 13 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 14 | <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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | </plugins> |
| 25 | </build> |
| 26 | |
| 27 | <scm> |
Vinayak Borkar | 7f787be | 2013-04-25 14:26:06 -0700 | [diff] [blame] | 28 | <connection>scm:git:https://code.google.com/p/asterixdb/</connection> |
| 29 | <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 30 | </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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 80 | <module>asterix-external-data</module> |
| 81 | <module>asterix-metadata</module> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 82 | <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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 87 | </modules> |
| 88 | |
| 89 | <repositories> |
| 90 | <repository> |
| 91 | <releases> |
| 92 | <enabled>true</enabled> |
| 93 | <updatePolicy>always</updatePolicy> |
| 94 | <checksumPolicy>warn</checksumPolicy> |
| 95 | </releases> |
| 96 | <snapshots> |
| 97 | <enabled>true</enabled> |
| 98 | <updatePolicy>always</updatePolicy> |
| 99 | <checksumPolicy>fail</checksumPolicy> |
| 100 | </snapshots> |
| 101 | <id>asterix-public</id> |
| 102 | <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url> |
| 103 | </repository> |
| 104 | <repository> |
| 105 | <releases> |
| 106 | <enabled>true</enabled> |
| 107 | <updatePolicy>always</updatePolicy> |
| 108 | <checksumPolicy>warn</checksumPolicy> |
| 109 | </releases> |
| 110 | <snapshots> |
| 111 | <enabled>true</enabled> |
| 112 | <updatePolicy>always</updatePolicy> |
| 113 | <checksumPolicy>fail</checksumPolicy> |
| 114 | </snapshots> |
| 115 | <id>third-party</id> |
| 116 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url> |
| 117 | </repository> |
| 118 | <repository> |
| 119 | <releases> |
| 120 | <enabled>true</enabled> |
| 121 | <updatePolicy>always</updatePolicy> |
| 122 | <checksumPolicy>warn</checksumPolicy> |
| 123 | </releases> |
| 124 | <id>algebricks-releases</id> |
| 125 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url> |
| 126 | </repository> |
| 127 | <repository> |
| 128 | <snapshots> |
| 129 | <enabled>true</enabled> |
| 130 | <updatePolicy>always</updatePolicy> |
| 131 | <checksumPolicy>fail</checksumPolicy> |
| 132 | </snapshots> |
| 133 | <id>algebricks-snapshots</id> |
| 134 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url> |
| 135 | </repository> |
| 136 | </repositories> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 137 | <dependencies> |
| 138 | <dependency> |
| 139 | <groupId>net.sourceforge.cobertura</groupId> |
| 140 | <artifactId>cobertura</artifactId> |
| 141 | <version>1.9.4</version> |
| 142 | <optional>true</optional> |
| 143 | </dependency> |
| 144 | </dependencies> |
| 145 | <dependencyManagement> |
| 146 | <dependencies> |
| 147 | <dependency> |
| 148 | <groupId>edu.uci.ics.hyracks</groupId> |
| 149 | <artifactId>algebricks-compiler</artifactId> |
| 150 | <version>${algebricks.version}</version> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>edu.uci.ics.hyracks</groupId> |
| 154 | <artifactId>hyracks-api</artifactId> |
| 155 | <version>${hyracks.version}</version> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>edu.uci.ics.hyracks</groupId> |
| 159 | <artifactId>hyracks-dataflow-std</artifactId> |
| 160 | <version>${hyracks.version}</version> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>edu.uci.ics.hyracks</groupId> |
| 164 | <artifactId>hyracks-control-cc</artifactId> |
| 165 | <version>${hyracks.version}</version> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>edu.uci.ics.hyracks</groupId> |
| 169 | <artifactId>hyracks-control-nc</artifactId> |
| 170 | <version>${hyracks.version}</version> |
| 171 | </dependency> |
| 172 | <dependency> |
| 173 | <groupId>edu.uci.ics.hyracks</groupId> |
| 174 | <artifactId>hyracks-server</artifactId> |
| 175 | <version>${hyracks.version}</version> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>edu.uci.ics.hyracks</groupId> |
| 179 | <artifactId>hyracks-cli</artifactId> |
| 180 | <version>${hyracks.version}</version> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>edu.uci.ics.hyracks</groupId> |
| 184 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
| 185 | <version>${hyracks.version}</version> |
| 186 | </dependency> |
| 187 | <dependency> |
| 188 | <groupId>edu.uci.ics.hyracks</groupId> |
| 189 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 190 | <version>${hyracks.version}</version> |
| 191 | </dependency> |
| 192 | <dependency> |
| 193 | <groupId>edu.uci.ics.hyracks</groupId> |
| 194 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 195 | <version>${hyracks.version}</version> |
| 196 | </dependency> |
| 197 | <dependency> |
| 198 | <groupId>edu.uci.ics.hyracks</groupId> |
| 199 | <artifactId> |
| 200 | hyracks-storage-am-invertedindex |
| 201 | </artifactId> |
| 202 | <version>${hyracks.version}</version> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>edu.uci.ics.hyracks</groupId> |
| 206 | <artifactId>hyracks-storage-am-common</artifactId> |
| 207 | <version>${hyracks.version}</version> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>edu.uci.ics.hyracks</groupId> |
| 211 | <artifactId>hyracks-client</artifactId> |
| 212 | <version>${hyracks.version}</version> |
| 213 | </dependency> |
| 214 | <dependency> |
| 215 | <groupId>edu.uci.ics.hyracks</groupId> |
| 216 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 217 | <version>${hyracks.version}</version> |
| 218 | </dependency> |
| 219 | <dependency> |
| 220 | <groupId>edu.uci.ics.hyracks</groupId> |
| 221 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 222 | <version>${hyracks.version}</version> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>edu.uci.ics.hyracks</groupId> |
| 226 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 227 | <version>${hyracks.version}</version> |
| 228 | </dependency> |
| 229 | <dependency> |
| 230 | <groupId>edu.uci.ics.hyracks</groupId> |
| 231 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 232 | <version>${hyracks.version}</version> |
| 233 | </dependency> |
| 234 | </dependencies> |
| 235 | </dependencyManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 236 | </project> |