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"> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 17 | <modelVersion>4.0.0</modelVersion> |
| 18 | <groupId>edu.uci.ics.asterix</groupId> |
| 19 | <artifactId>asterix</artifactId> |
| 20 | <version>0.8.4-SNAPSHOT</version> |
| 21 | <packaging>pom</packaging> |
| 22 | |
| 23 | <properties> |
| 24 | <algebricks.version>0.2.11-SNAPSHOT</algebricks.version> |
| 25 | <hyracks.version>0.2.11-SNAPSHOT</hyracks.version> |
| 26 | <jvm.extraargs /> |
| 27 | <skipSlowTests>true</skipSlowTests> |
| 28 | </properties> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 29 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 30 | <build> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.maven.plugins</groupId> |
| 34 | <artifactId>maven-release-plugin</artifactId> |
| 35 | <version>2.1</version> |
| 36 | <configuration> |
| 37 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 38 | </configuration> |
| 39 | </plugin> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.maven.plugins</groupId> |
| 42 | <artifactId>maven-surefire-plugin</artifactId> |
Chris Hillery | e2542dc | 2014-02-21 01:01:19 -0800 | [diff] [blame^] | 43 | <version>2.16</version> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 44 | <configuration> |
| 45 | <failIfNoTests>false</failIfNoTests> |
| 46 | <systemPropertyVariables> |
| 47 | <skipFredSlowTests>true</skipFredSlowTests> |
| 48 | </systemPropertyVariables> |
Chris Hillery | e2542dc | 2014-02-21 01:01:19 -0800 | [diff] [blame^] | 49 | <forkCount>1</forkCount> |
| 50 | <reuseForks>false</reuseForks> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 51 | <argLine>-enableassertions -Xmx${test.heap.size}m |
| 52 | -Dfile.encoding=UTF-8 |
| 53 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 54 | -Xdebug |
| 55 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
| 56 | <includes> |
| 57 | <include>**/*TestSuite.java</include> |
| 58 | <include>**/*Test.java</include> |
| 59 | </includes> |
| 60 | </configuration> |
| 61 | </plugin> |
| 62 | </plugins> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 63 | </build> |
| 64 | |
| 65 | <scm> |
Vinayak Borkar | 7f787be | 2013-04-25 14:26:06 -0700 | [diff] [blame] | 66 | <connection>scm:git:https://code.google.com/p/asterixdb/</connection> |
| 67 | <developerConnection>scm:git:https://code.google.com/p/asterixdb/</developerConnection> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 68 | </scm> |
| 69 | |
| 70 | <distributionManagement> |
| 71 | <repository> |
| 72 | <id>asterix-releases</id> |
| 73 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-releases/</url> |
| 74 | </repository> |
| 75 | <snapshotRepository> |
| 76 | <id>asterix-snapshots</id> |
| 77 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/asterix-snapshots/</url> |
| 78 | </snapshotRepository> |
| 79 | </distributionManagement> |
| 80 | |
| 81 | <profiles> |
| 82 | <profile> |
| 83 | <id>32bitvm</id> |
| 84 | <activation> |
| 85 | <property> |
| 86 | <name>sun.arch.data.model</name> |
| 87 | <value>32</value> |
| 88 | </property> |
| 89 | </activation> |
| 90 | <properties> |
zheilbron | 9479fc1 | 2013-05-29 21:42:18 -0700 | [diff] [blame] | 91 | <test.heap.size>2048</test.heap.size> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 92 | </properties> |
| 93 | </profile> |
| 94 | |
| 95 | <profile> |
| 96 | <id>64bitvm</id> |
| 97 | <activation> |
| 98 | <property> |
| 99 | <name>sun.arch.data.model</name> |
| 100 | <value>64</value> |
| 101 | </property> |
| 102 | </activation> |
| 103 | <properties> |
| 104 | <test.heap.size>3072</test.heap.size> |
| 105 | </properties> |
| 106 | </profile> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 107 | |
| 108 | <profile> |
| 109 | <id>slow</id> |
| 110 | <properties> |
| 111 | <skipSlowTests>false</skipSlowTests> |
| 112 | </properties> |
| 113 | </profile> |
| 114 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 115 | </profiles> |
| 116 | |
| 117 | <modules> |
| 118 | <module>asterix-common</module> |
| 119 | <module>asterix-algebra</module> |
| 120 | <module>asterix-app</module> |
| 121 | <module>asterix-tools</module> |
| 122 | <module>asterix-transactions</module> |
| 123 | <module>asterix-runtime</module> |
| 124 | <module>asterix-om</module> |
| 125 | <module>asterix-aql</module> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 126 | <module>asterix-external-data</module> |
| 127 | <module>asterix-metadata</module> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 128 | <module>asterix-test-framework</module> |
| 129 | <module>asterix-maven-plugins</module> |
| 130 | <module>asterix-server</module> |
| 131 | <module>asterix-installer</module> |
| 132 | <module>asterix-events</module> |
Till Westmann | db64c0c | 2013-05-14 11:48:15 -0700 | [diff] [blame] | 133 | <module>asterix-doc</module> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 134 | <module>asterix-fuzzyjoin</module> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 135 | </modules> |
| 136 | |
| 137 | <repositories> |
| 138 | <repository> |
| 139 | <releases> |
| 140 | <enabled>true</enabled> |
| 141 | <updatePolicy>always</updatePolicy> |
| 142 | <checksumPolicy>warn</checksumPolicy> |
| 143 | </releases> |
| 144 | <snapshots> |
| 145 | <enabled>true</enabled> |
| 146 | <updatePolicy>always</updatePolicy> |
| 147 | <checksumPolicy>fail</checksumPolicy> |
| 148 | </snapshots> |
| 149 | <id>asterix-public</id> |
| 150 | <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url> |
| 151 | </repository> |
| 152 | <repository> |
| 153 | <releases> |
| 154 | <enabled>true</enabled> |
| 155 | <updatePolicy>always</updatePolicy> |
| 156 | <checksumPolicy>warn</checksumPolicy> |
| 157 | </releases> |
| 158 | <snapshots> |
| 159 | <enabled>true</enabled> |
| 160 | <updatePolicy>always</updatePolicy> |
| 161 | <checksumPolicy>fail</checksumPolicy> |
| 162 | </snapshots> |
| 163 | <id>third-party</id> |
| 164 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url> |
| 165 | </repository> |
| 166 | <repository> |
| 167 | <releases> |
| 168 | <enabled>true</enabled> |
| 169 | <updatePolicy>always</updatePolicy> |
| 170 | <checksumPolicy>warn</checksumPolicy> |
| 171 | </releases> |
| 172 | <id>algebricks-releases</id> |
| 173 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url> |
| 174 | </repository> |
| 175 | <repository> |
| 176 | <snapshots> |
| 177 | <enabled>true</enabled> |
| 178 | <updatePolicy>always</updatePolicy> |
| 179 | <checksumPolicy>fail</checksumPolicy> |
| 180 | </snapshots> |
| 181 | <id>algebricks-snapshots</id> |
| 182 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url> |
| 183 | </repository> |
| 184 | </repositories> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 185 | <dependencyManagement> |
| 186 | <dependencies> |
Chris Hillery | e2542dc | 2014-02-21 01:01:19 -0800 | [diff] [blame^] | 187 | <dependency> |
| 188 | <groupId>junit</groupId> |
| 189 | <artifactId>junit</artifactId> |
| 190 | <version>4.8.1</version> |
| 191 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 192 | <dependency> |
| 193 | <groupId>edu.uci.ics.hyracks</groupId> |
| 194 | <artifactId>algebricks-compiler</artifactId> |
| 195 | <version>${algebricks.version}</version> |
| 196 | </dependency> |
| 197 | <dependency> |
| 198 | <groupId>edu.uci.ics.hyracks</groupId> |
| 199 | <artifactId>hyracks-api</artifactId> |
| 200 | <version>${hyracks.version}</version> |
| 201 | </dependency> |
| 202 | <dependency> |
| 203 | <groupId>edu.uci.ics.hyracks</groupId> |
| 204 | <artifactId>hyracks-dataflow-std</artifactId> |
| 205 | <version>${hyracks.version}</version> |
| 206 | </dependency> |
| 207 | <dependency> |
| 208 | <groupId>edu.uci.ics.hyracks</groupId> |
| 209 | <artifactId>hyracks-control-cc</artifactId> |
| 210 | <version>${hyracks.version}</version> |
| 211 | </dependency> |
| 212 | <dependency> |
| 213 | <groupId>edu.uci.ics.hyracks</groupId> |
| 214 | <artifactId>hyracks-control-nc</artifactId> |
| 215 | <version>${hyracks.version}</version> |
| 216 | </dependency> |
| 217 | <dependency> |
| 218 | <groupId>edu.uci.ics.hyracks</groupId> |
| 219 | <artifactId>hyracks-server</artifactId> |
| 220 | <version>${hyracks.version}</version> |
| 221 | </dependency> |
| 222 | <dependency> |
| 223 | <groupId>edu.uci.ics.hyracks</groupId> |
| 224 | <artifactId>hyracks-cli</artifactId> |
| 225 | <version>${hyracks.version}</version> |
| 226 | </dependency> |
| 227 | <dependency> |
| 228 | <groupId>edu.uci.ics.hyracks</groupId> |
| 229 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
| 230 | <version>${hyracks.version}</version> |
| 231 | </dependency> |
| 232 | <dependency> |
| 233 | <groupId>edu.uci.ics.hyracks</groupId> |
| 234 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 235 | <version>${hyracks.version}</version> |
| 236 | </dependency> |
| 237 | <dependency> |
| 238 | <groupId>edu.uci.ics.hyracks</groupId> |
| 239 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 240 | <version>${hyracks.version}</version> |
| 241 | </dependency> |
| 242 | <dependency> |
| 243 | <groupId>edu.uci.ics.hyracks</groupId> |
| 244 | <artifactId> |
| 245 | hyracks-storage-am-invertedindex |
| 246 | </artifactId> |
| 247 | <version>${hyracks.version}</version> |
| 248 | </dependency> |
| 249 | <dependency> |
| 250 | <groupId>edu.uci.ics.hyracks</groupId> |
| 251 | <artifactId>hyracks-storage-am-common</artifactId> |
| 252 | <version>${hyracks.version}</version> |
| 253 | </dependency> |
| 254 | <dependency> |
| 255 | <groupId>edu.uci.ics.hyracks</groupId> |
| 256 | <artifactId>hyracks-client</artifactId> |
| 257 | <version>${hyracks.version}</version> |
| 258 | </dependency> |
| 259 | <dependency> |
| 260 | <groupId>edu.uci.ics.hyracks</groupId> |
| 261 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 262 | <version>${hyracks.version}</version> |
| 263 | </dependency> |
| 264 | <dependency> |
| 265 | <groupId>edu.uci.ics.hyracks</groupId> |
| 266 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 267 | <version>${hyracks.version}</version> |
| 268 | </dependency> |
| 269 | <dependency> |
| 270 | <groupId>edu.uci.ics.hyracks</groupId> |
| 271 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 272 | <version>${hyracks.version}</version> |
| 273 | </dependency> |
| 274 | <dependency> |
| 275 | <groupId>edu.uci.ics.hyracks</groupId> |
| 276 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 277 | <version>${hyracks.version}</version> |
| 278 | </dependency> |
Vinayak Borkar | 4855e7e | 2013-05-29 17:50:03 -0700 | [diff] [blame] | 279 | <dependency> |
| 280 | <groupId>org.json</groupId> |
| 281 | <artifactId>json</artifactId> |
| 282 | <version>20090211</version> |
| 283 | <type>jar</type> |
| 284 | </dependency> |
| 285 | <dependency> |
| 286 | <groupId>javax.servlet</groupId> |
| 287 | <artifactId>servlet-api</artifactId> |
| 288 | <version>2.5</version> |
| 289 | <type>jar</type> |
| 290 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 291 | </dependencies> |
| 292 | </dependencyManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 293 | </project> |