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> |
Michael Blow | f53c1c6 | 2016-06-17 16:51:59 -0400 | [diff] [blame] | 31 | <version>16</version> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [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> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame^] | 47 | <jvm.extraargs /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 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>**/*.conf</exclude> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 152 | <exclude>**/*.iml</exclude> |
Till Westmann | 72f81a6f | 2016-05-17 20:37:00 -0700 | [diff] [blame] | 153 | <exclude>**/*.job</exclude> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 154 | <exclude>**/*.prefs</exclude> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 155 | <exclude>**/.classpath</exclude> |
| 156 | <exclude>**/.project</exclude> |
| 157 | <exclude>**/.settings/**</exclude> |
Till Westmann | 72f81a6f | 2016-05-17 20:37:00 -0700 | [diff] [blame] | 158 | <exclude>**/actual/conf.xml</exclude> |
| 159 | <exclude>**/actual/customer_result/part-*</exclude> |
| 160 | <exclude>**/algebricks-tests/src/test/resources/results/**</exclude> |
| 161 | <exclude>**/ClusterControllerService/**</exclude> |
| 162 | <exclude>**/data/**/*.ddl</exclude> |
| 163 | <exclude>**/data/**/*.tbl</exclude> |
| 164 | <exclude>**/data/**/*.tsv</exclude> |
| 165 | <exclude>**/data/**/*.txt</exclude> |
| 166 | <exclude>**/data/*.txt</exclude> |
| 167 | <exclude>**/data/dfs/**</exclude> |
| 168 | <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude> |
| 169 | <exclude>**/invIndex*/**</exclude> |
| 170 | <exclude>**/javascript/adminconsole/*.js</exclude> |
| 171 | <exclude>**/javascript/flot/*.js</exclude> |
| 172 | <exclude>**/javascript/jquery/*.js</exclude> |
| 173 | <exclude>**/javascript/jsplumb/*.js</exclude> |
| 174 | <exclude>**/output/**</exclude> |
| 175 | <exclude>**/src/main/resources/*.cleaned</exclude> |
| 176 | <exclude>**/src/main/resources/conf/*</exclude> |
| 177 | <exclude>**/src/test/resources/data/**</exclude> |
| 178 | <exclude>**/src/test/resources/expected/**</exclude> |
| 179 | <exclude>**/src/test/resources/results/**</exclude> |
| 180 | <exclude>**/stylesheet/jquery-ui/**</exclude> |
| 181 | <exclude>**/target/**</exclude> |
| 182 | <exclude>**/testcases/*.piglet</exclude> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 183 | <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude> |
| 184 | <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude> |
| 185 | <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude> |
| 186 | <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude> |
| 187 | <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude> |
| 188 | <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude> |
| 189 | <exclude>ClusterControllerService/logs/jobs/*.log</exclude> |
| 190 | <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude> |
| 191 | <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude> |
| 192 | <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jsplumb/jquery.jsPlumb-1.3.5-all-min.js</exclude> |
Till Westmann | 72f81a6f | 2016-05-17 20:37:00 -0700 | [diff] [blame] | 193 | <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/stylesheet/json.human.css</exclude> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 194 | <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude> |
| 195 | <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude> |
| 196 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude> |
| 197 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude> |
| 198 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude> |
| 199 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude> |
| 200 | <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude> |
| 201 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude> |
| 202 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude> |
| 203 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude> |
| 204 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude> |
| 205 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude> |
| 206 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude> |
| 207 | <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude> |
| 208 | <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude> |
| 209 | </excludes> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 210 | </configuration> |
| 211 | </plugin> |
| 212 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 213 | <groupId>org.apache.maven.plugins</groupId> |
| 214 | <artifactId>maven-surefire-plugin</artifactId> |
| 215 | <version>2.16</version> |
| 216 | <configuration> |
| 217 | <failIfNoTests>false</failIfNoTests> |
| 218 | <forkCount>1</forkCount> |
Chris Hillery | d2c1a8a | 2014-02-21 01:03:02 -0800 | [diff] [blame] | 219 | <reuseForks>false</reuseForks> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 220 | <argLine>-enableassertions -Xmx2048m |
| 221 | -Dfile.encoding=UTF-8 |
| 222 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 223 | -Xdebug |
| 224 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n |
| 225 | ${coverageArgLine} |
| 226 | </argLine> |
| 227 | <includes> |
| 228 | <include>${global.test.includes},${test.includes}</include> |
| 229 | </includes> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 230 | <excludes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 231 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 232 | </excludes> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 233 | </configuration> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 234 | </plugin> |
| 235 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 236 | <groupId>org.apache.maven.plugins</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 237 | <artifactId>maven-compiler-plugin</artifactId> |
| 238 | <version>3.1</version> |
| 239 | <configuration> |
| 240 | <source>${jdk.version}</source> |
| 241 | <target>${jdk.version}</target> |
| 242 | <compilerArgument>-Xlint:all</compilerArgument> |
| 243 | </configuration> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 244 | </plugin> |
Ian Maxon | b165aca | 2016-03-17 18:21:57 -0700 | [diff] [blame] | 245 | <plugin> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 246 | <artifactId>maven-resources-plugin</artifactId> |
| 247 | <version>2.7</version> |
| 248 | <executions> |
| 249 | <execution> |
| 250 | <id>copy-resources</id> |
| 251 | <phase>validate</phase> |
| 252 | <goals> |
| 253 | <goal>copy-resources</goal> |
| 254 | </goals> |
| 255 | <configuration> |
| 256 | <outputDirectory>target</outputDirectory> |
| 257 | <resources> |
| 258 | <resource> |
| 259 | <directory>${root.dir}/src/main/appended-resources</directory> |
| 260 | <!-- <filtering>true</filtering> --> |
| 261 | </resource> |
| 262 | </resources> |
| 263 | </configuration> |
| 264 | </execution> |
| 265 | </executions> |
| 266 | </plugin> |
| 267 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 268 | <groupId>org.apache.maven.plugins</groupId> |
| 269 | <artifactId>maven-remote-resources-plugin</artifactId> |
| 270 | <executions> |
| 271 | <execution> |
| 272 | <goals> |
| 273 | <goal>process</goal> |
| 274 | </goals> |
| 275 | <configuration> |
| 276 | <resourceBundles combine.children="append"> |
| 277 | <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 278 | </resourceBundles> |
| 279 | </configuration> |
| 280 | </execution> |
| 281 | </executions> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 282 | </plugin> |
Michael Blow | d1e2a99 | 2016-06-14 12:27:46 -0400 | [diff] [blame] | 283 | <plugin> |
| 284 | <groupId>org.apache.maven.plugins</groupId> |
| 285 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 286 | <version>2.17</version> |
| 287 | <executions> |
| 288 | <execution> |
| 289 | <id>verify-style</id> |
| 290 | <phase>process-classes</phase> |
| 291 | <goals> |
| 292 | <goal>check</goal> |
| 293 | </goals> |
| 294 | </execution> |
| 295 | </executions> |
| 296 | <configuration> |
| 297 | <logViolationsToConsole>true</logViolationsToConsole> |
| 298 | <checkstyleRules> |
| 299 | <module name="Checker"> |
| 300 | <!-- Checks for whitespace --> |
| 301 | <!-- See http://checkstyle.sf.net/config_whitespace.html --> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame^] | 302 | <module name="FileTabCharacter" /> |
Michael Blow | d1e2a99 | 2016-06-14 12:27:46 -0400 | [diff] [blame] | 303 | </module> |
| 304 | </checkstyleRules> |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 305 | <includes>**/*.java,**/*.jj</includes> |
| 306 | <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes> |
Michael Blow | d1e2a99 | 2016-06-14 12:27:46 -0400 | [diff] [blame] | 307 | <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories> |
| 308 | </configuration> |
| 309 | </plugin> |
Michael Blow | f53c1c6 | 2016-06-17 16:51:59 -0400 | [diff] [blame] | 310 | <plugin> |
| 311 | <groupId>org.apache.maven.plugins</groupId> |
| 312 | <artifactId>maven-enforcer-plugin</artifactId> |
| 313 | <version>1.4.1</version> |
| 314 | <executions> |
| 315 | <execution> |
| 316 | <id>enforce-versions</id> |
| 317 | <goals> |
| 318 | <goal>enforce</goal> |
| 319 | </goals> |
| 320 | <configuration> |
| 321 | <rules> |
| 322 | <requireMavenVersion> |
| 323 | <version>[3.3.9,)</version> |
| 324 | </requireMavenVersion> |
| 325 | </rules> |
| 326 | </configuration> |
| 327 | </execution> |
| 328 | </executions> |
| 329 | </plugin> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 330 | </plugins> |
Yingyi Bu | d680e14 | 2016-03-18 16:41:46 -0700 | [diff] [blame] | 331 | <pluginManagement> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 332 | <plugins> |
| 333 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 334 | <plugin> |
| 335 | <groupId>org.eclipse.m2e</groupId> |
| 336 | <artifactId>lifecycle-mapping</artifactId> |
| 337 | <version>1.0.0</version> |
| 338 | <configuration> |
| 339 | <lifecycleMappingMetadata> |
| 340 | <pluginExecutions> |
| 341 | <pluginExecution> |
| 342 | <pluginExecutionFilter> |
| 343 | <groupId>org.apache.rat</groupId> |
| 344 | <artifactId>apache-rat-plugin</artifactId> |
| 345 | <versionRange>[0.11,)</versionRange> |
| 346 | <goals> |
| 347 | <goal>check</goal> |
| 348 | </goals> |
| 349 | </pluginExecutionFilter> |
| 350 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame^] | 351 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 352 | </action> |
| 353 | </pluginExecution> |
Michael Blow | 8f2cf24 | 2016-06-30 01:45:39 -0400 | [diff] [blame] | 354 | <pluginExecution> |
| 355 | <pluginExecutionFilter> |
| 356 | <groupId>org.apache.maven.plugins</groupId> |
| 357 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 358 | <versionRange>[2.17,)</versionRange> |
| 359 | <goals> |
| 360 | <goal>check</goal> |
| 361 | </goals> |
| 362 | </pluginExecutionFilter> |
| 363 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame^] | 364 | <ignore /> |
Michael Blow | 8f2cf24 | 2016-06-30 01:45:39 -0400 | [diff] [blame] | 365 | </action> |
| 366 | </pluginExecution> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 367 | </pluginExecutions> |
| 368 | </lifecycleMappingMetadata> |
| 369 | </configuration> |
| 370 | </plugin> |
| 371 | </plugins> |
| 372 | </pluginManagement> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 373 | </build> |
| 374 | |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 375 | <profiles> |
| 376 | <profile> |
| 377 | <id>hanging-pregelix-tests</id> |
| 378 | <properties> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame^] | 379 | <hanging.pregelix.tests /> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 380 | </properties> |
| 381 | </profile> |
Chris Hillery | 1fda6bc | 2015-10-02 17:18:11 -0700 | [diff] [blame] | 382 | <profile> |
| 383 | <id>asterix-release</id> |
Michael Blow | 1e34ec2 | 2016-05-15 19:15:40 -0700 | [diff] [blame] | 384 | <activation> |
| 385 | <file> |
| 386 | <exists>src/main/assembly/source.xml</exists> |
| 387 | </file> |
| 388 | </activation> |
Chris Hillery | 1fda6bc | 2015-10-02 17:18:11 -0700 | [diff] [blame] | 389 | <build> |
| 390 | <plugins> |
| 391 | <plugin> |
| 392 | <groupId>org.apache.maven.plugins</groupId> |
| 393 | <artifactId>maven-assembly-plugin</artifactId> |
| 394 | <!-- We override the configuration plugin to override the descriptor to use for building |
| 395 | the source release zip. Specifically, we would like to control the inclusions/exclusions. |
| 396 | For example, we exclude the KEYS file from the zip --> |
| 397 | <executions> |
| 398 | <execution> |
| 399 | <!-- Use this id to match the id mentioned in the assembly plugin configuration in |
| 400 | the apache parent POM under the apache-release profile --> |
| 401 | <id>source-release-assembly</id> |
| 402 | <phase>package</phase> |
| 403 | <goals> |
| 404 | <goal>single</goal> |
| 405 | </goals> |
| 406 | <!-- combine.self should be override to replace the configuration in the parent POM --> |
| 407 | <configuration combine.self="override"> |
| 408 | <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> |
| 409 | <descriptors> |
| 410 | <descriptor>src/main/assembly/source.xml</descriptor> |
| 411 | </descriptors> |
| 412 | </configuration> |
| 413 | </execution> |
| 414 | </executions> |
| 415 | </plugin> |
| 416 | </plugins> |
| 417 | </build> |
| 418 | </profile> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 419 | <profile> |
Michael Blow | 7c15c13 | 2016-05-04 22:06:34 -0400 | [diff] [blame] | 420 | <id>coverage</id> |
| 421 | <activation> |
| 422 | <property> |
| 423 | <name>coverage</name> |
| 424 | </property> |
| 425 | </activation> |
| 426 | <build> |
| 427 | <plugins> |
| 428 | <plugin> |
| 429 | <groupId>org.jacoco</groupId> |
| 430 | <artifactId>jacoco-maven-plugin</artifactId> |
| 431 | <version>${jacoco.version}</version> |
| 432 | <executions> |
| 433 | <execution> |
| 434 | <id>default-prepare-agent</id> |
| 435 | <goals> |
| 436 | <goal>prepare-agent</goal> |
| 437 | </goals> |
| 438 | <configuration> |
| 439 | <propertyName>coverageArgLine</propertyName> |
| 440 | </configuration> |
| 441 | </execution> |
| 442 | <execution> |
| 443 | <id>default-prepare-agent-integration</id> |
| 444 | <goals> |
| 445 | <goal>prepare-agent-integration</goal> |
| 446 | </goals> |
| 447 | <configuration> |
| 448 | <propertyName>coverageArgLine</propertyName> |
| 449 | </configuration> |
| 450 | </execution> |
| 451 | </executions> |
| 452 | </plugin> |
| 453 | </plugins> |
| 454 | </build> |
| 455 | <properties> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame^] | 456 | <coverage /> |
Michael Blow | 7c15c13 | 2016-05-04 22:06:34 -0400 | [diff] [blame] | 457 | </properties> |
| 458 | </profile> |
| 459 | <profile> |
| 460 | <id>no-coverage</id> |
| 461 | <activation> |
| 462 | <property> |
| 463 | <name>!coverage</name> |
| 464 | </property> |
| 465 | </activation> |
| 466 | <properties> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame^] | 467 | <coverageArgLine /> |
Michael Blow | 7c15c13 | 2016-05-04 22:06:34 -0400 | [diff] [blame] | 468 | </properties> |
| 469 | </profile> |
| 470 | <profile> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 471 | <id>java8</id> |
| 472 | <activation> |
| 473 | <jdk>1.8</jdk> |
| 474 | </activation> |
| 475 | <properties> |
| 476 | <jdk.version>1.8</jdk.version> |
| 477 | </properties> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 478 | </profile> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 479 | </profiles> |
| 480 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 481 | <modules> |
| 482 | <module>hyracks</module> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 483 | <module>algebricks</module> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 484 | </modules> |
| 485 | </project> |