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