Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 3 | ! or more contributor license agreements. See the NOTICE file |
| 4 | ! distributed with this work for additional information |
| 5 | ! regarding copyright ownership. The ASF licenses this file |
| 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
| 8 | ! with the License. You may obtain a copy of the License at |
| 9 | ! |
| 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ! |
| 12 | ! Unless required by applicable law or agreed to in writing, |
| 13 | ! software distributed under the License is distributed on an |
| 14 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | ! KIND, either express or implied. See the License for the |
| 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 19 | |
| 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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 22 | <groupId>org.apache.hyracks</groupId> |
Ian Maxon | 2378ed6 | 2015-11-24 13:04:19 -0800 | [diff] [blame] | 23 | <artifactId>apache-asterixdb-hyracks</artifactId> |
Ian Maxon | 14be946 | 2016-02-10 14:55:42 -0800 | [diff] [blame] | 24 | <version>0.2.18-SNAPSHOT</version> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 25 | <packaging>pom</packaging> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 26 | <name>hyracks-ecosystem-full-stack</name> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 27 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.apache</groupId> |
| 30 | <artifactId>apache</artifactId> |
| 31 | <version>LATEST</version> |
Michael Blow | d7f4f04 | 2016-05-17 17:51:45 -0700 | [diff] [blame] | 32 | <relativePath/> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 33 | </parent> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 34 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 35 | <licenses> |
| 36 | <license> |
| 37 | <name>Apache License, Version 2.0</name> |
| 38 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 39 | <distribution>repo</distribution> |
| 40 | <comments>A business-friendly OSS license</comments> |
| 41 | </license> |
| 42 | </licenses> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 43 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 44 | <properties> |
| 45 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 46 | <jdk.version>1.8</jdk.version> |
| 47 | <jvm.extraargs/> |
| 48 | <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath> |
Michael Blow | 7c15c13 | 2016-05-04 22:06:34 -0400 | [diff] [blame] | 49 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 50 | <!-- Definition of tests in various categories which may be excluded --> |
| 51 | <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests> |
| 52 | <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests> |
| 53 | <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes> |
| 54 | <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests} |
| 55 | </global.test.excludes> |
| 56 | <!-- Versions under dependencymanagement or used in many projects via properties --> |
| 57 | <hadoop.version>2.2.0</hadoop.version> |
| 58 | <junit.version>4.8.1</junit.version> |
| 59 | <commons.io.version>2.4</commons.io.version> |
| 60 | <jacoco.version>0.7.6.201602180812</jacoco.version> |
| 61 | </properties> |
| 62 | <dependencyManagement> |
| 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <groupId>junit</groupId> |
| 66 | <artifactId>junit</artifactId> |
| 67 | <version>${junit.version}</version> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.hadoop</groupId> |
| 71 | <artifactId>hadoop-yarn-client</artifactId> |
| 72 | <version>${hadoop.version}</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.apache.hadoop</groupId> |
| 76 | <artifactId>hadoop-client</artifactId> |
| 77 | <version>${hadoop.version}</version> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.apache.hadoop</groupId> |
| 81 | <artifactId>hadoop-common</artifactId> |
| 82 | <version>${hadoop.version}</version> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.apache.hadoop</groupId> |
| 86 | <artifactId>hadoop-hdfs</artifactId> |
| 87 | <version>${hadoop.version}</version> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.apache.hadoop</groupId> |
| 91 | <artifactId>hadoop-minicluster</artifactId> |
| 92 | <version>${hadoop.version}</version> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.apache.hadoop</groupId> |
| 96 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 97 | <version>${hadoop.version}</version> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>commons-io</groupId> |
| 101 | <artifactId>commons-io</artifactId> |
| 102 | <version>${commons.io.version}</version> |
| 103 | </dependency> |
| 104 | </dependencies> |
| 105 | </dependencyManagement> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 106 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 107 | <build> |
| 108 | <plugins> |
| 109 | <plugin> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 110 | <groupId>org.codehaus.mojo</groupId> |
| 111 | <artifactId>versions-maven-plugin</artifactId> |
| 112 | <version>1.2</version> |
| 113 | </plugin> |
| 114 | <plugin> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 115 | <groupId>org.apache.rat</groupId> |
| 116 | <artifactId>apache-rat-plugin</artifactId> |
| 117 | <version>0.11</version> |
| 118 | <executions> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 119 | <execution> |
| 120 | <phase>validate</phase> |
| 121 | <goals> |
| 122 | <goal>check</goal> |
| 123 | </goals> |
| 124 | </execution> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 125 | </executions> |
| 126 | <configuration> |
| 127 | <licenses> |
| 128 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 129 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 130 | <licenseFamilyName>The MIT License</licenseFamilyName> |
| 131 | <notes>For JQuery MIT/GPL2 Dual License</notes> |
| 132 | <patterns> |
| 133 | <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern> |
| 134 | <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern> |
| 135 | <pattern>http://jquery.org/license</pattern> |
| 136 | <pattern>Dual licensed under the MIT</pattern> |
| 137 | <pattern>Released under the MIT license by IOLA, December 2007.</pattern> |
| 138 | </patterns> |
| 139 | </license> |
| 140 | </licenses> |
| 141 | <licenseFamilies> |
| 142 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 143 | <familyName>The MIT License</familyName> |
| 144 | </licenseFamily> |
| 145 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 146 | <familyName>Apache License Version 2.0</familyName> |
| 147 | </licenseFamily> |
| 148 | </licenseFamilies> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 149 | <excludeSubProjects>false</excludeSubProjects> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 150 | <excludes> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 151 | <exclude>**/algebricks-tests/src/test/resources/results/**</exclude> |
| 152 | <exclude>**/javascript/flot/*.js</exclude> |
| 153 | <exclude>**/javascript/jsplumb/*.js</exclude> |
| 154 | <exclude>**/javascript/jquery/*.js</exclude> |
| 155 | <exclude>**/javascript/adminconsole/*.js</exclude> |
| 156 | <exclude>**/stylesheet/jquery-ui/**</exclude> |
| 157 | <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude> |
| 158 | <exclude>**/src/test/resources/data/**</exclude> |
| 159 | <exclude>**/src/test/resources/results/**</exclude> |
| 160 | <exclude>**/src/test/resources/expected/**</exclude> |
| 161 | <exclude>**/testcases/*.piglet</exclude> |
| 162 | <exclude>**/data/**/*.tbl</exclude> |
| 163 | <exclude>**/data/**/*.ddl</exclude> |
| 164 | <exclude>**/data/**/*.tsv</exclude> |
| 165 | <exclude>**/actual/conf.xml</exclude> |
| 166 | <exclude>**/actual/customer_result/part-*</exclude> |
| 167 | <exclude>**/src/main/resources/conf/*</exclude> |
| 168 | <exclude>**/data/dfs/**</exclude> |
| 169 | <exclude>**/invIndex*/**</exclude> |
| 170 | <exclude>**/*.job</exclude> |
| 171 | <exclude>**/*.conf</exclude> |
| 172 | <exclude>**/src/main/resources/*.cleaned</exclude> |
| 173 | <exclude>**/ClusterControllerService/**</exclude> |
| 174 | <exclude>**/target/**</exclude> |
| 175 | <exclude>**/output/**</exclude> |
| 176 | <exclude>**/target/**</exclude> |
| 177 | <exclude>**/*.iml</exclude> |
| 178 | <exclude>**/*.prefs</exclude> |
| 179 | <exclude>**/data/*.txt</exclude> |
| 180 | <exclude>**/data/**/*.txt</exclude> |
| 181 | <exclude>**/.classpath</exclude> |
| 182 | <exclude>**/.project</exclude> |
| 183 | <exclude>**/target/**</exclude> |
| 184 | <exclude>**/*.iml</exclude> |
| 185 | <exclude>**/.classpath</exclude> |
| 186 | <exclude>**/.project</exclude> |
| 187 | <exclude>**/.settings/**</exclude> |
| 188 | <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude> |
| 189 | <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude> |
| 190 | <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude> |
| 191 | <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude> |
| 192 | <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude> |
| 193 | <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude> |
| 194 | <exclude>ClusterControllerService/logs/jobs/*.log</exclude> |
| 195 | <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude> |
| 196 | <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude> |
| 197 | <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jsplumb/jquery.jsPlumb-1.3.5-all-min.js</exclude> |
| 198 | <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude> |
| 199 | <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude> |
| 200 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude> |
| 201 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude> |
| 202 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude> |
| 203 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude> |
| 204 | <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude> |
| 205 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude> |
| 206 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude> |
| 207 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude> |
| 208 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude> |
| 209 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude> |
| 210 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude> |
| 211 | <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude> |
| 212 | <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude> |
| 213 | </excludes> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 214 | </configuration> |
| 215 | </plugin> |
| 216 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 217 | <groupId>org.apache.maven.plugins</groupId> |
| 218 | <artifactId>maven-surefire-plugin</artifactId> |
| 219 | <version>2.16</version> |
| 220 | <configuration> |
| 221 | <failIfNoTests>false</failIfNoTests> |
| 222 | <forkCount>1</forkCount> |
Chris Hillery | d2c1a8a | 2014-02-21 01:03:02 -0800 | [diff] [blame] | 223 | <reuseForks>false</reuseForks> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 224 | <argLine>-enableassertions -Xmx2048m |
| 225 | -Dfile.encoding=UTF-8 |
| 226 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 227 | -Xdebug |
| 228 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n |
| 229 | ${coverageArgLine} |
| 230 | </argLine> |
| 231 | <includes> |
| 232 | <include>${global.test.includes},${test.includes}</include> |
| 233 | </includes> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 234 | <excludes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 235 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 236 | </excludes> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 237 | </configuration> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 238 | </plugin> |
| 239 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 240 | <groupId>org.apache.maven.plugins</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 241 | <artifactId>maven-compiler-plugin</artifactId> |
| 242 | <version>3.1</version> |
| 243 | <configuration> |
| 244 | <source>${jdk.version}</source> |
| 245 | <target>${jdk.version}</target> |
| 246 | <compilerArgument>-Xlint:all</compilerArgument> |
| 247 | </configuration> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 248 | </plugin> |
Ian Maxon | b165aca | 2016-03-17 18:21:57 -0700 | [diff] [blame] | 249 | <plugin> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 250 | <artifactId>maven-resources-plugin</artifactId> |
| 251 | <version>2.7</version> |
| 252 | <executions> |
| 253 | <execution> |
| 254 | <id>copy-resources</id> |
| 255 | <phase>validate</phase> |
| 256 | <goals> |
| 257 | <goal>copy-resources</goal> |
| 258 | </goals> |
| 259 | <configuration> |
| 260 | <outputDirectory>target</outputDirectory> |
| 261 | <resources> |
| 262 | <resource> |
| 263 | <directory>${root.dir}/src/main/appended-resources</directory> |
| 264 | <!-- <filtering>true</filtering> --> |
| 265 | </resource> |
| 266 | </resources> |
| 267 | </configuration> |
| 268 | </execution> |
| 269 | </executions> |
| 270 | </plugin> |
| 271 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 272 | <groupId>org.apache.maven.plugins</groupId> |
| 273 | <artifactId>maven-remote-resources-plugin</artifactId> |
| 274 | <executions> |
| 275 | <execution> |
| 276 | <goals> |
| 277 | <goal>process</goal> |
| 278 | </goals> |
| 279 | <configuration> |
| 280 | <resourceBundles combine.children="append"> |
| 281 | <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle> |
| 282 | <resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1</resourceBundle> |
| 283 | </resourceBundles> |
| 284 | </configuration> |
| 285 | </execution> |
| 286 | </executions> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 287 | </plugin> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 288 | </plugins> |
Yingyi Bu | d680e14 | 2016-03-18 16:41:46 -0700 | [diff] [blame] | 289 | <pluginManagement> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 290 | <plugins> |
| 291 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 292 | <plugin> |
| 293 | <groupId>org.eclipse.m2e</groupId> |
| 294 | <artifactId>lifecycle-mapping</artifactId> |
| 295 | <version>1.0.0</version> |
| 296 | <configuration> |
| 297 | <lifecycleMappingMetadata> |
| 298 | <pluginExecutions> |
| 299 | <pluginExecution> |
| 300 | <pluginExecutionFilter> |
| 301 | <groupId>org.apache.rat</groupId> |
| 302 | <artifactId>apache-rat-plugin</artifactId> |
| 303 | <versionRange>[0.11,)</versionRange> |
| 304 | <goals> |
| 305 | <goal>check</goal> |
| 306 | </goals> |
| 307 | </pluginExecutionFilter> |
| 308 | <action> |
| 309 | <ignore></ignore> |
| 310 | </action> |
| 311 | </pluginExecution> |
| 312 | </pluginExecutions> |
| 313 | </lifecycleMappingMetadata> |
| 314 | </configuration> |
| 315 | </plugin> |
| 316 | </plugins> |
| 317 | </pluginManagement> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 318 | </build> |
| 319 | |
| 320 | <scm> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 321 | <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection> |
Ian Maxon | 7c48a95 | 2014-07-11 20:00:13 -0700 | [diff] [blame] | 322 | <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 323 | <url>https://github.com/apache/incubator-asterixdb-hyracks</url> |
Ian Maxon | d4daeb4 | 2015-09-15 14:31:32 -0700 | [diff] [blame] | 324 | <tag>HEAD</tag> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 325 | </scm> |
| 326 | |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 327 | <profiles> |
| 328 | <profile> |
| 329 | <id>hanging-pregelix-tests</id> |
| 330 | <properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 331 | <hanging.pregelix.tests/> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 332 | </properties> |
| 333 | </profile> |
Chris Hillery | 1fda6bc | 2015-10-02 17:18:11 -0700 | [diff] [blame] | 334 | <profile> |
| 335 | <id>asterix-release</id> |
Michael Blow | 1e34ec2 | 2016-05-15 19:15:40 -0700 | [diff] [blame] | 336 | <activation> |
| 337 | <file> |
| 338 | <exists>src/main/assembly/source.xml</exists> |
| 339 | </file> |
| 340 | </activation> |
Chris Hillery | 1fda6bc | 2015-10-02 17:18:11 -0700 | [diff] [blame] | 341 | <build> |
| 342 | <plugins> |
| 343 | <plugin> |
| 344 | <groupId>org.apache.maven.plugins</groupId> |
| 345 | <artifactId>maven-assembly-plugin</artifactId> |
| 346 | <!-- We override the configuration plugin to override the descriptor to use for building |
| 347 | the source release zip. Specifically, we would like to control the inclusions/exclusions. |
| 348 | For example, we exclude the KEYS file from the zip --> |
| 349 | <executions> |
| 350 | <execution> |
| 351 | <!-- Use this id to match the id mentioned in the assembly plugin configuration in |
| 352 | the apache parent POM under the apache-release profile --> |
| 353 | <id>source-release-assembly</id> |
| 354 | <phase>package</phase> |
| 355 | <goals> |
| 356 | <goal>single</goal> |
| 357 | </goals> |
| 358 | <!-- combine.self should be override to replace the configuration in the parent POM --> |
| 359 | <configuration combine.self="override"> |
| 360 | <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> |
| 361 | <descriptors> |
| 362 | <descriptor>src/main/assembly/source.xml</descriptor> |
| 363 | </descriptors> |
| 364 | </configuration> |
| 365 | </execution> |
| 366 | </executions> |
| 367 | </plugin> |
| 368 | </plugins> |
| 369 | </build> |
| 370 | </profile> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 371 | <profile> |
Michael Blow | 7c15c13 | 2016-05-04 22:06:34 -0400 | [diff] [blame] | 372 | <id>coverage</id> |
| 373 | <activation> |
| 374 | <property> |
| 375 | <name>coverage</name> |
| 376 | </property> |
| 377 | </activation> |
| 378 | <build> |
| 379 | <plugins> |
| 380 | <plugin> |
| 381 | <groupId>org.jacoco</groupId> |
| 382 | <artifactId>jacoco-maven-plugin</artifactId> |
| 383 | <version>${jacoco.version}</version> |
| 384 | <executions> |
| 385 | <execution> |
| 386 | <id>default-prepare-agent</id> |
| 387 | <goals> |
| 388 | <goal>prepare-agent</goal> |
| 389 | </goals> |
| 390 | <configuration> |
| 391 | <propertyName>coverageArgLine</propertyName> |
| 392 | </configuration> |
| 393 | </execution> |
| 394 | <execution> |
| 395 | <id>default-prepare-agent-integration</id> |
| 396 | <goals> |
| 397 | <goal>prepare-agent-integration</goal> |
| 398 | </goals> |
| 399 | <configuration> |
| 400 | <propertyName>coverageArgLine</propertyName> |
| 401 | </configuration> |
| 402 | </execution> |
| 403 | </executions> |
| 404 | </plugin> |
| 405 | </plugins> |
| 406 | </build> |
| 407 | <properties> |
| 408 | <coverage/> |
| 409 | </properties> |
| 410 | </profile> |
| 411 | <profile> |
| 412 | <id>no-coverage</id> |
| 413 | <activation> |
| 414 | <property> |
| 415 | <name>!coverage</name> |
| 416 | </property> |
| 417 | </activation> |
| 418 | <properties> |
| 419 | <coverageArgLine/> |
| 420 | </properties> |
| 421 | </profile> |
| 422 | <profile> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 423 | <id>java8</id> |
| 424 | <activation> |
| 425 | <jdk>1.8</jdk> |
| 426 | </activation> |
| 427 | <properties> |
| 428 | <jdk.version>1.8</jdk.version> |
| 429 | </properties> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 430 | </profile> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 431 | </profiles> |
| 432 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 433 | <repositories> |
| 434 | <repository> |
Vinayak Borkar | 29502a0 | 2013-12-11 11:18:27 -0800 | [diff] [blame] | 435 | <id>maven-central</id> |
| 436 | <url>http://repo1.maven.org/maven2/</url> |
| 437 | </repository> |
| 438 | <repository> |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 439 | <id>hyracks-public</id> |
| 440 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 441 | </repository> |
| 442 | <repository> |
| 443 | <id>jboss-public</id> |
| 444 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 445 | </repository> |
| 446 | </repositories> |
| 447 | |
| 448 | <pluginRepositories> |
| 449 | <pluginRepository> |
| 450 | <id>hyracks-public</id> |
| 451 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 452 | <releases> |
| 453 | <updatePolicy>always</updatePolicy> |
| 454 | </releases> |
| 455 | </pluginRepository> |
| 456 | </pluginRepositories> |
| 457 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 458 | <modules> |
| 459 | <module>hyracks</module> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 460 | <module>algebricks</module> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 461 | </modules> |
| 462 | </project> |