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