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 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 3 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 4 | ! or more contributor license agreements. See the NOTICE file |
| 5 | ! distributed with this work for additional information |
| 6 | ! regarding copyright ownership. The ASF licenses this file |
| 7 | ! to you under the Apache License, Version 2.0 (the |
| 8 | ! "License"); you may not use this file except in compliance |
| 9 | ! with the License. You may obtain a copy of the License at |
| 10 | ! |
| 11 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ! |
| 13 | ! Unless required by applicable law or agreed to in writing, |
| 14 | ! software distributed under the License is distributed on an |
| 15 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | ! KIND, either express or implied. See the License for the |
| 17 | ! specific language governing permissions and limitations |
| 18 | ! under the License. |
Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 19 | !--> |
Ian Maxon | d2e1e89 | 2015-10-05 12:46:26 -0700 | [diff] [blame] | 20 | <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"> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 22 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 23 | <artifactId>asterix</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 24 | <version>0.8.8-SNAPSHOT</version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 25 | <packaging>pom</packaging> |
| 26 | |
Ian Maxon | 5c058c6 | 2015-08-21 16:06:15 -0700 | [diff] [blame] | 27 | <parent> |
| 28 | <groupId>org.apache</groupId> |
| 29 | <artifactId>apache</artifactId> |
| 30 | <version>LATEST</version> |
| 31 | </parent> |
| 32 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 33 | <licenses> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 34 | <license> |
| 35 | <name>Apache License, Version 2.0</name> |
| 36 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 37 | <distribution>repo</distribution> |
| 38 | <comments>A business-friendly OSS license</comments> |
| 39 | </license> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 40 | </licenses> |
| 41 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 42 | <properties> |
| 43 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 44 | <jvm.extraargs /> |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 45 | <jdk.version>1.8</jdk.version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 46 | <runSlowAQLTests>false</runSlowAQLTests> |
Chris Hillery | b5c85ac | 2014-02-21 02:33:37 -0800 | [diff] [blame] | 47 | |
| 48 | <!-- Definition of tests in various categories which may be excluded --> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 49 | <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests> |
| 50 | <metadata.tests>**/metadata/*Test.java</metadata.tests> |
| 51 | <execution.tests>**/ExecutionTest.java</execution.tests> |
Ian Maxon | c9a3a9b | 2015-07-31 15:27:39 -0700 | [diff] [blame] | 52 | <repeated.tests>**/RepeatedTest.java</repeated.tests> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 53 | <invalid.tests>**/DmlTest.java</invalid.tests> |
| 54 | <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 55 | <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 56 | <!-- Versions under dependencymanagement or used in many projects via properties --> |
Ildar Absalyamov | 6ad223f | 2015-10-09 10:21:07 -0700 | [diff] [blame] | 57 | <algebricks.version>0.2.17-SNAPSHOT</algebricks.version> |
| 58 | <hyracks.version>0.2.17-SNAPSHOT</hyracks.version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 59 | <hadoop.version>2.2.0</hadoop.version> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 60 | <junit.version>4.11</junit.version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 61 | <commons.io.version>2.4</commons.io.version> |
| 62 | <servlet.api.version>2.5</servlet.api.version> |
| 63 | <json.version>20090211</json.version> |
| 64 | </properties> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 65 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 66 | <build> |
| 67 | <plugins> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 70 | <artifactId>maven-surefire-plugin</artifactId> |
| 71 | <version>2.16</version> |
| 72 | <configuration> |
| 73 | <failIfNoTests>false</failIfNoTests> |
| 74 | <systemPropertyVariables> |
| 75 | <skipFredSlowTests>true</skipFredSlowTests> |
| 76 | </systemPropertyVariables> |
| 77 | <forkCount>1</forkCount> |
| 78 | <reuseForks>false</reuseForks> |
| 79 | <argLine>-enableassertions -Xmx${test.heap.size}m |
| 80 | -Dfile.encoding=UTF-8 |
| 81 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 82 | -DrunSlowAQLTests=${runSlowAQLTests} |
| 83 | -Xdebug |
| 84 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
| 85 | <includes> |
| 86 | <include>${global.test.includes},${test.includes}</include> |
| 87 | </includes> |
| 88 | <excludes> |
| 89 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
| 90 | </excludes> |
| 91 | </configuration> |
| 92 | </plugin> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 93 | <plugin> |
| 94 | <groupId>org.apache.rat</groupId> |
| 95 | <artifactId>apache-rat-plugin</artifactId> |
| 96 | <version>0.11</version> |
| 97 | <executions> |
| 98 | <execution> |
| 99 | <phase>verify</phase> |
| 100 | <goals> |
| 101 | <goal>check</goal> |
| 102 | </goals> |
| 103 | </execution> |
| 104 | </executions> |
| 105 | <configuration> |
| 106 | <excludeSubProjects>true</excludeSubProjects> |
| 107 | <licenses> |
| 108 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 109 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 110 | <licenseFamilyName>The MIT License</licenseFamilyName> |
| 111 | <notes>For JQuery MIT/GPL2 Dual License</notes> |
| 112 | <patterns> |
| 113 | <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern> |
| 114 | <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern> |
| 115 | <pattern>http://jquery.org/license</pattern> |
| 116 | <pattern>Dual licensed under the MIT</pattern> |
| 117 | <pattern>Released under the MIT license by IOLA, December 2007.</pattern> |
| 118 | </patterns> |
| 119 | </license> |
| 120 | </licenses> |
| 121 | <licenseFamilies> |
| 122 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 123 | <familyName>The MIT License</familyName> |
| 124 | </licenseFamily> |
| 125 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 126 | <familyName>Apache License Version 2.0</familyName> |
| 127 | </licenseFamily> |
| 128 | </licenseFamilies> |
| 129 | <excludes> |
| 130 | <exclude>**/*.adm</exclude> |
| 131 | <exclude>**/*.aql</exclude> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 132 | <exclude>**/*.ast</exclude> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 133 | <exclude>**/*.csv</exclude> |
| 134 | <exclude>**/*.ddl</exclude> |
| 135 | <exclude>**/*.iml</exclude> |
| 136 | <exclude>**/*.out</exclude> |
| 137 | <exclude>**/*.tbl</exclude> |
| 138 | <exclude>**/*.tsv</exclude> |
| 139 | <exclude>**/*.txt</exclude> |
| 140 | <exclude>**/*.xsd</exclude> |
| 141 | </excludes> |
| 142 | <includes> |
| 143 | <include>**/asterix-*</include> |
| 144 | <include>**/*.java</include> |
| 145 | </includes> |
| 146 | </configuration> |
| 147 | </plugin> |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 148 | <plugin> |
| 149 | <groupId>org.apache.maven.plugins</groupId> |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 150 | <artifactId>maven-compiler-plugin</artifactId> |
| 151 | <version>3.1</version> |
| 152 | <configuration> |
| 153 | <source>${jdk.version}</source> |
| 154 | <target>${jdk.version}</target> |
| 155 | <compilerArgument>-Xlint:all</compilerArgument> |
| 156 | </configuration> |
| 157 | </plugin> |
Ian Maxon | 6059af3 | 2015-10-28 21:58:01 -0700 | [diff] [blame] | 158 | <plugin> |
| 159 | <groupId>pl.project13.maven</groupId> |
| 160 | <artifactId>git-commit-id-plugin</artifactId> |
| 161 | <version>2.2.0</version> |
| 162 | <executions> |
| 163 | <execution> |
| 164 | <goals> |
| 165 | <goal>revision</goal> |
| 166 | </goals> |
| 167 | </execution> |
| 168 | </executions> |
| 169 | |
| 170 | <configuration> |
| 171 | <!-- |
| 172 | If you'd like to tell the plugin where your .git directory is, |
| 173 | use this setting, otherwise we'll perform a search trying to |
| 174 | figure out the right directory. It's better to add it explicite IMHO. |
| 175 | --> |
| 176 | <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> |
| 177 | <!-- this is false by default, forces the plugin to generate the git.properties file --> |
| 178 | <generateGitPropertiesFile>true</generateGitPropertiesFile> |
| 179 | |
| 180 | <!-- The path for the to be generated properties file, it's relative to ${project.basedir} --> |
| 181 | <generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename> |
| 182 | </configuration> |
| 183 | |
| 184 | </plugin> |
| 185 | <!-- END OF GIT COMMIT ID PLUGIN CONFIGURATION --> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 186 | </plugins> |
Ildar Absalyamov | 4bb94a8 | 2015-10-14 23:06:43 -0700 | [diff] [blame] | 187 | <pluginManagement> |
| 188 | <plugins> |
| 189 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 190 | <plugin> |
| 191 | <groupId>org.eclipse.m2e</groupId> |
| 192 | <artifactId>lifecycle-mapping</artifactId> |
| 193 | <version>1.0.0</version> |
| 194 | <configuration> |
| 195 | <lifecycleMappingMetadata> |
| 196 | <pluginExecutions> |
| 197 | <pluginExecution> |
| 198 | <pluginExecutionFilter> |
| 199 | <groupId>org.apache.maven.plugins</groupId> |
| 200 | <artifactId>maven-plugin-plugin</artifactId> |
| 201 | <versionRange>[3.4,)</versionRange> |
| 202 | <goals> |
| 203 | <goal>descriptor</goal> |
| 204 | </goals> |
| 205 | </pluginExecutionFilter> |
| 206 | <action> |
| 207 | <ignore></ignore> |
| 208 | </action> |
| 209 | </pluginExecution> |
| 210 | <pluginExecution> |
| 211 | <pluginExecutionFilter> |
| 212 | <groupId>org.apache.asterix</groupId> |
| 213 | <artifactId>record-manager-generator-maven-plugin</artifactId> |
| 214 | <versionRange>[0.8.7-SNAPSHOT,)</versionRange> |
| 215 | <goals> |
| 216 | <goal>generate-record-manager</goal> |
| 217 | </goals> |
| 218 | </pluginExecutionFilter> |
| 219 | <action> |
| 220 | <ignore></ignore> |
| 221 | </action> |
| 222 | </pluginExecution> |
| 223 | <pluginExecution> |
| 224 | <pluginExecutionFilter> |
| 225 | <groupId>org.apache.maven.plugins</groupId> |
| 226 | <artifactId>maven-jar-plugin</artifactId> |
| 227 | <versionRange>[2.4,)</versionRange> |
| 228 | <goals> |
| 229 | <goal>test-jar</goal> |
| 230 | </goals> |
| 231 | </pluginExecutionFilter> |
| 232 | <action> |
| 233 | <ignore></ignore> |
| 234 | </action> |
| 235 | </pluginExecution> |
| 236 | </pluginExecutions> |
| 237 | </lifecycleMappingMetadata> |
| 238 | </configuration> |
| 239 | </plugin> |
| 240 | </plugins> |
| 241 | </pluginManagement> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 242 | </build> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 243 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 244 | <scm> |
Ian Maxon | 5c058c6 | 2015-08-21 16:06:15 -0700 | [diff] [blame] | 245 | <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection> |
| 246 | <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection> |
| 247 | <url>https://github.com/apache/incubator-asterixdb</url> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 248 | |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 249 | <tag>HEAD</tag> |
Ian Maxon | d2e1e89 | 2015-10-05 12:46:26 -0700 | [diff] [blame] | 250 | </scm> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 251 | |
| 252 | <profiles> |
| 253 | <profile> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 254 | <id>slow-aql-tests</id> |
| 255 | <properties> |
| 256 | <runSlowAQLTests>true</runSlowAQLTests> |
| 257 | </properties> |
| 258 | </profile> |
| 259 | <profile> |
| 260 | <id>optimizer-tests</id> |
| 261 | <properties> |
| 262 | <optimizer.tests /> |
| 263 | </properties> |
| 264 | </profile> |
| 265 | <profile> |
| 266 | <id>metadata-tests</id> |
| 267 | <properties> |
| 268 | <metadata.tests /> |
| 269 | </properties> |
| 270 | </profile> |
| 271 | <profile> |
| 272 | <id>execution-tests</id> |
| 273 | <properties> |
| 274 | <execution.tests /> |
| 275 | </properties> |
| 276 | </profile> |
| 277 | <profile> |
| 278 | <id>invalid-tests</id> |
| 279 | <properties> |
| 280 | <invalid.tests /> |
| 281 | </properties> |
| 282 | </profile> |
| 283 | <profile> |
| 284 | <id>32bitvm</id> |
| 285 | <activation> |
| 286 | <property> |
| 287 | <name>sun.arch.data.model</name> |
| 288 | <value>32</value> |
| 289 | </property> |
| 290 | </activation> |
| 291 | <properties> |
| 292 | <test.heap.size>2048</test.heap.size> |
| 293 | </properties> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 294 | </profile> |
| 295 | |
| 296 | <profile> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 297 | <id>64bitvm</id> |
| 298 | <activation> |
| 299 | <property> |
| 300 | <name>sun.arch.data.model</name> |
| 301 | <value>64</value> |
| 302 | </property> |
| 303 | </activation> |
| 304 | <properties> |
| 305 | <test.heap.size>3072</test.heap.size> |
| 306 | </properties> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 307 | </profile> |
Chris Hillery | 79dfcfc | 2015-10-02 17:14:25 -0700 | [diff] [blame] | 308 | <profile> |
| 309 | <id>asterix-release</id> |
| 310 | <build> |
| 311 | <plugins> |
| 312 | <plugin> |
| 313 | <groupId>org.apache.maven.plugins</groupId> |
| 314 | <artifactId>maven-assembly-plugin</artifactId> |
| 315 | <!-- We override the configuration plugin to override the descriptor to use for building |
| 316 | the source release zip. Specifically, we would like to control the inclusions/exclusions. |
| 317 | For example, we exclude the KEYS file from the zip --> |
| 318 | <executions> |
| 319 | <execution> |
| 320 | <!-- Use this id to match the id mentioned in the assembly plugin configuration in |
| 321 | the apache parent POM under the apache-release profile --> |
| 322 | <id>source-release-assembly</id> |
| 323 | <phase>package</phase> |
| 324 | <goals> |
| 325 | <goal>single</goal> |
| 326 | </goals> |
| 327 | <!-- combine.self should be override to replace the configuration in the parent POM --> |
| 328 | <configuration combine.self="override"> |
| 329 | <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> |
| 330 | <descriptors> |
| 331 | <descriptor>src/main/assembly/source.xml</descriptor> |
| 332 | </descriptors> |
| 333 | </configuration> |
| 334 | </execution> |
| 335 | </executions> |
| 336 | </plugin> |
| 337 | </plugins> |
| 338 | </build> |
| 339 | </profile> |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 340 | <profile> |
| 341 | <id>java6</id> |
| 342 | <activation> |
| 343 | <jdk>1.6</jdk> |
| 344 | </activation> |
| 345 | <properties> |
| 346 | <jdk.version>1.6</jdk.version> |
| 347 | </properties> |
| 348 | </profile> |
| 349 | <profile> |
| 350 | <id>java7</id> |
| 351 | <activation> |
| 352 | <jdk>1.7</jdk> |
| 353 | </activation> |
| 354 | <properties> |
| 355 | <jdk.version>1.7</jdk.version> |
| 356 | </properties> |
| 357 | </profile> |
| 358 | <profile> |
| 359 | <id>java8</id> |
| 360 | <activation> |
| 361 | <jdk>1.8</jdk> |
| 362 | </activation> |
| 363 | <properties> |
| 364 | <jdk.version>1.8</jdk.version> |
| 365 | </properties> |
| 366 | </profile> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 367 | </profiles> |
| 368 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 369 | <modules> |
| 370 | <module>asterix-common</module> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 371 | <module>asterix-lang-common</module> |
| 372 | <module>asterix-lang-aql</module> |
| 373 | <module>asterix-lang-sqlpp</module> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 374 | <module>asterix-algebra</module> |
| 375 | <module>asterix-app</module> |
| 376 | <module>asterix-tools</module> |
| 377 | <module>asterix-transactions</module> |
| 378 | <module>asterix-runtime</module> |
| 379 | <module>asterix-om</module> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 380 | <module>asterix-external-data</module> |
| 381 | <module>asterix-examples</module> |
| 382 | <module>asterix-metadata</module> |
| 383 | <module>asterix-test-framework</module> |
| 384 | <module>asterix-maven-plugins</module> |
| 385 | <module>asterix-server</module> |
| 386 | <module>asterix-installer</module> |
| 387 | <module>asterix-events</module> |
| 388 | <module>asterix-doc</module> |
| 389 | <module>asterix-fuzzyjoin</module> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 390 | <module>asterix-yarn</module> |
Murtadha Hubail | 209f390 | 2015-11-11 22:11:28 -0800 | [diff] [blame^] | 391 | <module>asterix-replication</module> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 392 | </modules> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 393 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 394 | <repositories> |
| 395 | <repository> |
| 396 | <releases> |
| 397 | <enabled>true</enabled> |
| 398 | <updatePolicy>always</updatePolicy> |
| 399 | <checksumPolicy>warn</checksumPolicy> |
| 400 | </releases> |
| 401 | <snapshots> |
| 402 | <enabled>true</enabled> |
| 403 | <updatePolicy>always</updatePolicy> |
| 404 | <checksumPolicy>fail</checksumPolicy> |
| 405 | </snapshots> |
| 406 | <id>asterix-public</id> |
| 407 | <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url> |
| 408 | </repository> |
| 409 | <repository> |
| 410 | <releases> |
| 411 | <enabled>true</enabled> |
| 412 | <updatePolicy>always</updatePolicy> |
| 413 | <checksumPolicy>warn</checksumPolicy> |
| 414 | </releases> |
| 415 | <snapshots> |
| 416 | <enabled>true</enabled> |
| 417 | <updatePolicy>always</updatePolicy> |
| 418 | <checksumPolicy>fail</checksumPolicy> |
| 419 | </snapshots> |
| 420 | <id>third-party</id> |
| 421 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url> |
| 422 | </repository> |
| 423 | <repository> |
| 424 | <releases> |
| 425 | <enabled>true</enabled> |
| 426 | <updatePolicy>always</updatePolicy> |
| 427 | <checksumPolicy>warn</checksumPolicy> |
| 428 | </releases> |
| 429 | <id>algebricks-releases</id> |
| 430 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url> |
| 431 | </repository> |
| 432 | <repository> |
| 433 | <snapshots> |
| 434 | <enabled>true</enabled> |
| 435 | <updatePolicy>always</updatePolicy> |
| 436 | <checksumPolicy>fail</checksumPolicy> |
| 437 | </snapshots> |
| 438 | <id>algebricks-snapshots</id> |
| 439 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url> |
| 440 | </repository> |
| 441 | </repositories> |
| 442 | <dependencyManagement> |
| 443 | <dependencies> |
| 444 | <dependency> |
| 445 | <groupId>junit</groupId> |
| 446 | <artifactId>junit</artifactId> |
| 447 | <version>${junit.version}</version> |
| 448 | </dependency> |
| 449 | <dependency> |
| 450 | <groupId>org.apache.maven</groupId> |
| 451 | <artifactId>maven-plugin-api</artifactId> |
| 452 | <version>2.2.1</version> |
| 453 | </dependency> |
| 454 | <dependency> |
| 455 | <groupId>org.apache.hadoop</groupId> |
| 456 | <artifactId>hadoop-yarn-common</artifactId> |
| 457 | <version>${hadoop.version}</version> |
| 458 | </dependency> |
| 459 | <dependency> |
| 460 | <groupId>org.apache.hadoop</groupId> |
| 461 | <artifactId>hadoop-yarn-client</artifactId> |
| 462 | <version>${hadoop.version}</version> |
| 463 | </dependency> |
| 464 | <dependency> |
| 465 | <groupId>org.apache.hadoop</groupId> |
| 466 | <artifactId>hadoop-client</artifactId> |
| 467 | <version>${hadoop.version}</version> |
| 468 | </dependency> |
| 469 | <dependency> |
| 470 | <groupId>org.apache.hadoop</groupId> |
| 471 | <artifactId>hadoop-hdfs</artifactId> |
| 472 | <version>${hadoop.version}</version> |
| 473 | </dependency> |
| 474 | <dependency> |
| 475 | <groupId>org.apache.hadoop</groupId> |
| 476 | <artifactId>hadoop-common</artifactId> |
| 477 | <version>${hadoop.version}</version> |
| 478 | </dependency> |
| 479 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 480 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 481 | <artifactId>algebricks-compiler</artifactId> |
| 482 | <version>${algebricks.version}</version> |
| 483 | </dependency> |
| 484 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 485 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 486 | <artifactId>hyracks-api</artifactId> |
| 487 | <version>${hyracks.version}</version> |
| 488 | </dependency> |
| 489 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 490 | <groupId>org.apache.hyracks</groupId> |
JavierJia | 742aba8 | 2015-10-28 18:21:50 -0700 | [diff] [blame] | 491 | <artifactId>hyracks-util</artifactId> |
| 492 | <version>${hyracks.version}</version> |
| 493 | </dependency> |
| 494 | <dependency> |
| 495 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 496 | <artifactId>hyracks-dataflow-std</artifactId> |
| 497 | <version>${hyracks.version}</version> |
| 498 | </dependency> |
| 499 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 500 | <groupId>org.apache.hyracks</groupId> |
JavierJia | 742aba8 | 2015-10-28 18:21:50 -0700 | [diff] [blame] | 501 | <artifactId>hyracks-data</artifactId> |
| 502 | <version>${hyracks.version}</version> |
| 503 | </dependency> |
| 504 | <dependency> |
| 505 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 506 | <artifactId>hyracks-control-cc</artifactId> |
| 507 | <version>${hyracks.version}</version> |
| 508 | </dependency> |
| 509 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 510 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 511 | <artifactId>hyracks-control-nc</artifactId> |
| 512 | <version>${hyracks.version}</version> |
| 513 | </dependency> |
| 514 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 515 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 516 | <artifactId>hyracks-server</artifactId> |
| 517 | <version>${hyracks.version}</version> |
| 518 | </dependency> |
| 519 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 520 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 521 | <artifactId>hyracks-cli</artifactId> |
| 522 | <version>${hyracks.version}</version> |
| 523 | </dependency> |
| 524 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 525 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 526 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
| 527 | <version>${hyracks.version}</version> |
| 528 | </dependency> |
| 529 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 530 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 531 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 532 | <version>${hyracks.version}</version> |
| 533 | </dependency> |
| 534 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 535 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 536 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 537 | <version>${hyracks.version}</version> |
| 538 | </dependency> |
| 539 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 540 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 541 | <artifactId>hyracks-storage-am-invertedindex</artifactId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 542 | <version>${hyracks.version}</version> |
| 543 | </dependency> |
| 544 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 545 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 546 | <artifactId>hyracks-storage-am-common</artifactId> |
| 547 | <version>${hyracks.version}</version> |
| 548 | </dependency> |
| 549 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 550 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 551 | <artifactId>hyracks-client</artifactId> |
| 552 | <version>${hyracks.version}</version> |
| 553 | </dependency> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 554 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 555 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 556 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 557 | <version>${hyracks.version}</version> |
| 558 | </dependency> |
| 559 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 560 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 561 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 562 | <version>${hyracks.version}</version> |
| 563 | </dependency> |
| 564 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 565 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 566 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 567 | <version>${hyracks.version}</version> |
| 568 | </dependency> |
| 569 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 570 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 571 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 572 | <version>${hyracks.version}</version> |
| 573 | </dependency> |
| 574 | <dependency> |
| 575 | <groupId>org.json</groupId> |
| 576 | <artifactId>json</artifactId> |
| 577 | <version>${json.version}</version> |
| 578 | <type>jar</type> |
| 579 | </dependency> |
| 580 | <dependency> |
| 581 | <groupId>javax.servlet</groupId> |
| 582 | <artifactId>servlet-api</artifactId> |
| 583 | <version>${servlet.api.version}</version> |
| 584 | <type>jar</type> |
| 585 | </dependency> |
| 586 | <dependency> |
| 587 | <groupId>commons-io</groupId> |
| 588 | <artifactId>commons-io</artifactId> |
| 589 | <version>${commons.io.version}</version> |
| 590 | </dependency> |
| 591 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 592 | </dependencyManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 593 | </project> |