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> |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 341 | <id>java8</id> |
| 342 | <activation> |
| 343 | <jdk>1.8</jdk> |
| 344 | </activation> |
| 345 | <properties> |
| 346 | <jdk.version>1.8</jdk.version> |
| 347 | </properties> |
| 348 | </profile> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 349 | </profiles> |
| 350 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 351 | <modules> |
| 352 | <module>asterix-common</module> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 353 | <module>asterix-lang-common</module> |
| 354 | <module>asterix-lang-aql</module> |
| 355 | <module>asterix-lang-sqlpp</module> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 356 | <module>asterix-algebra</module> |
| 357 | <module>asterix-app</module> |
| 358 | <module>asterix-tools</module> |
| 359 | <module>asterix-transactions</module> |
| 360 | <module>asterix-runtime</module> |
| 361 | <module>asterix-om</module> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 362 | <module>asterix-external-data</module> |
| 363 | <module>asterix-examples</module> |
| 364 | <module>asterix-metadata</module> |
| 365 | <module>asterix-test-framework</module> |
| 366 | <module>asterix-maven-plugins</module> |
| 367 | <module>asterix-server</module> |
| 368 | <module>asterix-installer</module> |
| 369 | <module>asterix-events</module> |
| 370 | <module>asterix-doc</module> |
| 371 | <module>asterix-fuzzyjoin</module> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 372 | <module>asterix-yarn</module> |
Murtadha Hubail | 209f390 | 2015-11-11 22:11:28 -0800 | [diff] [blame] | 373 | <module>asterix-replication</module> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 374 | </modules> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 375 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 376 | <repositories> |
| 377 | <repository> |
| 378 | <releases> |
| 379 | <enabled>true</enabled> |
| 380 | <updatePolicy>always</updatePolicy> |
| 381 | <checksumPolicy>warn</checksumPolicy> |
| 382 | </releases> |
| 383 | <snapshots> |
| 384 | <enabled>true</enabled> |
| 385 | <updatePolicy>always</updatePolicy> |
| 386 | <checksumPolicy>fail</checksumPolicy> |
| 387 | </snapshots> |
| 388 | <id>asterix-public</id> |
| 389 | <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url> |
| 390 | </repository> |
| 391 | <repository> |
| 392 | <releases> |
| 393 | <enabled>true</enabled> |
| 394 | <updatePolicy>always</updatePolicy> |
| 395 | <checksumPolicy>warn</checksumPolicy> |
| 396 | </releases> |
| 397 | <snapshots> |
| 398 | <enabled>true</enabled> |
| 399 | <updatePolicy>always</updatePolicy> |
| 400 | <checksumPolicy>fail</checksumPolicy> |
| 401 | </snapshots> |
| 402 | <id>third-party</id> |
| 403 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url> |
| 404 | </repository> |
| 405 | <repository> |
| 406 | <releases> |
| 407 | <enabled>true</enabled> |
| 408 | <updatePolicy>always</updatePolicy> |
| 409 | <checksumPolicy>warn</checksumPolicy> |
| 410 | </releases> |
| 411 | <id>algebricks-releases</id> |
| 412 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url> |
| 413 | </repository> |
| 414 | <repository> |
| 415 | <snapshots> |
| 416 | <enabled>true</enabled> |
| 417 | <updatePolicy>always</updatePolicy> |
| 418 | <checksumPolicy>fail</checksumPolicy> |
| 419 | </snapshots> |
| 420 | <id>algebricks-snapshots</id> |
| 421 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url> |
| 422 | </repository> |
| 423 | </repositories> |
| 424 | <dependencyManagement> |
| 425 | <dependencies> |
| 426 | <dependency> |
| 427 | <groupId>junit</groupId> |
| 428 | <artifactId>junit</artifactId> |
| 429 | <version>${junit.version}</version> |
| 430 | </dependency> |
| 431 | <dependency> |
| 432 | <groupId>org.apache.maven</groupId> |
| 433 | <artifactId>maven-plugin-api</artifactId> |
| 434 | <version>2.2.1</version> |
| 435 | </dependency> |
| 436 | <dependency> |
| 437 | <groupId>org.apache.hadoop</groupId> |
| 438 | <artifactId>hadoop-yarn-common</artifactId> |
| 439 | <version>${hadoop.version}</version> |
| 440 | </dependency> |
| 441 | <dependency> |
| 442 | <groupId>org.apache.hadoop</groupId> |
| 443 | <artifactId>hadoop-yarn-client</artifactId> |
| 444 | <version>${hadoop.version}</version> |
| 445 | </dependency> |
| 446 | <dependency> |
| 447 | <groupId>org.apache.hadoop</groupId> |
| 448 | <artifactId>hadoop-client</artifactId> |
| 449 | <version>${hadoop.version}</version> |
| 450 | </dependency> |
| 451 | <dependency> |
| 452 | <groupId>org.apache.hadoop</groupId> |
| 453 | <artifactId>hadoop-hdfs</artifactId> |
| 454 | <version>${hadoop.version}</version> |
| 455 | </dependency> |
| 456 | <dependency> |
| 457 | <groupId>org.apache.hadoop</groupId> |
| 458 | <artifactId>hadoop-common</artifactId> |
| 459 | <version>${hadoop.version}</version> |
| 460 | </dependency> |
| 461 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 462 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 463 | <artifactId>algebricks-compiler</artifactId> |
| 464 | <version>${algebricks.version}</version> |
| 465 | </dependency> |
| 466 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 467 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 468 | <artifactId>hyracks-api</artifactId> |
| 469 | <version>${hyracks.version}</version> |
| 470 | </dependency> |
| 471 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 472 | <groupId>org.apache.hyracks</groupId> |
JavierJia | 742aba8 | 2015-10-28 18:21:50 -0700 | [diff] [blame] | 473 | <artifactId>hyracks-util</artifactId> |
| 474 | <version>${hyracks.version}</version> |
| 475 | </dependency> |
| 476 | <dependency> |
| 477 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 478 | <artifactId>hyracks-dataflow-std</artifactId> |
| 479 | <version>${hyracks.version}</version> |
| 480 | </dependency> |
| 481 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 482 | <groupId>org.apache.hyracks</groupId> |
JavierJia | 742aba8 | 2015-10-28 18:21:50 -0700 | [diff] [blame] | 483 | <artifactId>hyracks-data</artifactId> |
| 484 | <version>${hyracks.version}</version> |
| 485 | </dependency> |
| 486 | <dependency> |
| 487 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 488 | <artifactId>hyracks-control-cc</artifactId> |
| 489 | <version>${hyracks.version}</version> |
| 490 | </dependency> |
| 491 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 492 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 493 | <artifactId>hyracks-control-nc</artifactId> |
| 494 | <version>${hyracks.version}</version> |
| 495 | </dependency> |
| 496 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 497 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 498 | <artifactId>hyracks-server</artifactId> |
| 499 | <version>${hyracks.version}</version> |
| 500 | </dependency> |
| 501 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 502 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 503 | <artifactId>hyracks-cli</artifactId> |
| 504 | <version>${hyracks.version}</version> |
| 505 | </dependency> |
| 506 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 507 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 508 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
| 509 | <version>${hyracks.version}</version> |
| 510 | </dependency> |
| 511 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 512 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 513 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 514 | <version>${hyracks.version}</version> |
| 515 | </dependency> |
| 516 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 517 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 518 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 519 | <version>${hyracks.version}</version> |
| 520 | </dependency> |
| 521 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 522 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 523 | <artifactId>hyracks-storage-am-invertedindex</artifactId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 524 | <version>${hyracks.version}</version> |
| 525 | </dependency> |
| 526 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 527 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 528 | <artifactId>hyracks-storage-am-common</artifactId> |
| 529 | <version>${hyracks.version}</version> |
| 530 | </dependency> |
| 531 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 532 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 533 | <artifactId>hyracks-client</artifactId> |
| 534 | <version>${hyracks.version}</version> |
| 535 | </dependency> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 536 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 537 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 538 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 539 | <version>${hyracks.version}</version> |
| 540 | </dependency> |
| 541 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 542 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 543 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 544 | <version>${hyracks.version}</version> |
| 545 | </dependency> |
| 546 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 547 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 548 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 549 | <version>${hyracks.version}</version> |
| 550 | </dependency> |
| 551 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 552 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 553 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 554 | <version>${hyracks.version}</version> |
| 555 | </dependency> |
| 556 | <dependency> |
| 557 | <groupId>org.json</groupId> |
| 558 | <artifactId>json</artifactId> |
| 559 | <version>${json.version}</version> |
| 560 | <type>jar</type> |
| 561 | </dependency> |
| 562 | <dependency> |
| 563 | <groupId>javax.servlet</groupId> |
| 564 | <artifactId>servlet-api</artifactId> |
| 565 | <version>${servlet.api.version}</version> |
| 566 | <type>jar</type> |
| 567 | </dependency> |
| 568 | <dependency> |
| 569 | <groupId>commons-io</groupId> |
| 570 | <artifactId>commons-io</artifactId> |
| 571 | <version>${commons.io.version}</version> |
| 572 | </dependency> |
| 573 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 574 | </dependencyManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 575 | </project> |