blob: 73909050b8374534b0a353eb08b49ee1105ac0ba [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! 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 Westmann276bbc22013-06-05 18:56:27 -070018 !-->
vinayakbe5add8a2012-10-06 19:00:14 +000019
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 Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks</groupId>
Ian Maxon2378ed62015-11-24 13:04:19 -080023 <artifactId>apache-asterixdb-hyracks</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080024 <version>0.2.18-SNAPSHOT</version>
vinayakbe5add8a2012-10-06 19:00:14 +000025 <packaging>pom</packaging>
buyingyi7f356c12012-10-07 00:23:17 +000026 <name>hyracks-ecosystem-full-stack</name>
Ian Maxonc4821272015-08-21 16:08:01 -070027
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <parent>
29 <groupId>org.apache</groupId>
30 <artifactId>apache</artifactId>
Michael Blowb99349d2016-11-08 19:38:02 -050031 <version>18</version>
Michael Blow380b0a22016-08-02 13:05:52 -040032 <relativePath />
Michael Blowb4c1fb02016-05-09 15:41:00 -070033 </parent>
Ian Maxonc4821272015-08-21 16:08:01 -070034
Michael Blowb4c1fb02016-05-09 15:41:00 -070035 <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>
vinayakbe5add8a2012-10-06 19:00:14 +000043
Michael Blowb4c1fb02016-05-09 15:41:00 -070044 <properties>
45 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46 <jdk.version>1.8</jdk.version>
Michael Blow380b0a22016-08-02 13:05:52 -040047 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow7c15c132016-05-04 22:06:34 -040049
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <!-- 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>
Michael Blowc21de4d2016-10-05 00:34:10 -040058 <junit.version>4.12</junit.version>
59 <commons.io.version>2.5</commons.io.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070060 <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>
Michael Blowba358122016-10-13 19:56:03 -0400100 <groupId>org.apache.hadoop</groupId>
101 <artifactId>hadoop-hdfs</artifactId>
102 <version>${hadoop.version}</version>
103 <classifier>tests</classifier>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700107 <groupId>commons-io</groupId>
108 <artifactId>commons-io</artifactId>
109 <version>${commons.io.version}</version>
110 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800111 <dependency>
112 <groupId>com.fasterxml.jackson.core</groupId>
113 <artifactId>jackson-databind</artifactId>
114 <version>2.8.4</version>
115 </dependency>
116 <dependency>
117 <groupId>com.fasterxml.jackson.core</groupId>
118 <artifactId>jackson-core</artifactId>
119 <version>2.8.4</version>
120 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700121 </dependencies>
122 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800123
vinayakbe5add8a2012-10-06 19:00:14 +0000124 <build>
125 <plugins>
126 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-dependency-plugin</artifactId>
129 <version>2.10</version>
130 <configuration>
131 <failOnWarning>true</failOnWarning>
132 <outputXML>true</outputXML>
133 </configuration>
134 <executions>
135 <execution>
136 <phase>process-test-classes</phase>
137 <goals>
138 <goal>analyze-only</goal>
139 </goals>
140 </execution>
141 </executions>
142 </plugin>
143 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800144 <groupId>org.codehaus.mojo</groupId>
145 <artifactId>versions-maven-plugin</artifactId>
146 <version>1.2</version>
147 </plugin>
148 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700149 <groupId>org.apache.rat</groupId>
150 <artifactId>apache-rat-plugin</artifactId>
151 <version>0.11</version>
152 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700153 <execution>
154 <phase>validate</phase>
155 <goals>
156 <goal>check</goal>
157 </goals>
158 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700159 </executions>
160 <configuration>
161 <licenses>
162 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
163 <licenseFamilyCategory>MIT</licenseFamilyCategory>
164 <licenseFamilyName>The MIT License</licenseFamilyName>
165 <notes>For JQuery MIT/GPL2 Dual License</notes>
166 <patterns>
167 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
168 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
169 <pattern>http://jquery.org/license</pattern>
170 <pattern>Dual licensed under the MIT</pattern>
171 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
172 </patterns>
173 </license>
174 </licenses>
175 <licenseFamilies>
176 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
177 <familyName>The MIT License</familyName>
178 </licenseFamily>
179 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
180 <familyName>Apache License Version 2.0</familyName>
181 </licenseFamily>
182 </licenseFamilies>
Ian Maxon9e37c962015-11-25 07:38:37 -0800183 <excludeSubProjects>false</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700184 <excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700185 <exclude>**/*.conf</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700186 <exclude>**/*.iml</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700187 <exclude>**/*.job</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700188 <exclude>**/*.prefs</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700189 <exclude>**/.classpath</exclude>
190 <exclude>**/.project</exclude>
191 <exclude>**/.settings/**</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700192 <exclude>**/actual/conf.xml</exclude>
193 <exclude>**/actual/customer_result/part-*</exclude>
194 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
195 <exclude>**/ClusterControllerService/**</exclude>
196 <exclude>**/data/**/*.ddl</exclude>
197 <exclude>**/data/**/*.tbl</exclude>
198 <exclude>**/data/**/*.tsv</exclude>
199 <exclude>**/data/**/*.txt</exclude>
200 <exclude>**/data/*.txt</exclude>
201 <exclude>**/data/dfs/**</exclude>
202 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
203 <exclude>**/invIndex*/**</exclude>
204 <exclude>**/javascript/adminconsole/*.js</exclude>
205 <exclude>**/javascript/flot/*.js</exclude>
206 <exclude>**/javascript/jquery/*.js</exclude>
207 <exclude>**/javascript/jsplumb/*.js</exclude>
208 <exclude>**/output/**</exclude>
209 <exclude>**/src/main/resources/*.cleaned</exclude>
210 <exclude>**/src/main/resources/conf/*</exclude>
211 <exclude>**/src/test/resources/data/**</exclude>
212 <exclude>**/src/test/resources/expected/**</exclude>
213 <exclude>**/src/test/resources/results/**</exclude>
214 <exclude>**/stylesheet/jquery-ui/**</exclude>
215 <exclude>**/target/**</exclude>
216 <exclude>**/testcases/*.piglet</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700217 <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude>
218 <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude>
219 <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude>
220 <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude>
221 <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude>
222 <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude>
223 <exclude>ClusterControllerService/logs/jobs/*.log</exclude>
224 <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude>
225 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude>
226 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jsplumb/jquery.jsPlumb-1.3.5-all-min.js</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700227 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/stylesheet/json.human.css</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700228 <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude>
229 <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude>
230 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude>
231 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude>
232 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude>
233 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude>
234 <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude>
235 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude>
236 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude>
237 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude>
238 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude>
239 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude>
240 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude>
241 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude>
242 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude>
243 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700244 </configuration>
245 </plugin>
246 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700247 <groupId>org.apache.maven.plugins</groupId>
248 <artifactId>maven-surefire-plugin</artifactId>
249 <version>2.16</version>
250 <configuration>
251 <failIfNoTests>false</failIfNoTests>
252 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800253 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700254 <argLine>-enableassertions -Xmx2048m
255 -Dfile.encoding=UTF-8
256 -Djava.util.logging.config.file=${user.home}/logging.properties
257 -Xdebug
258 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
259 ${coverageArgLine}
260 </argLine>
261 <includes>
262 <include>${global.test.includes},${test.includes}</include>
263 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800264 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700265 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800266 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700267 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700268 </plugin>
269 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700270 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700271 <artifactId>maven-compiler-plugin</artifactId>
272 <version>3.1</version>
273 <configuration>
274 <source>${jdk.version}</source>
275 <target>${jdk.version}</target>
276 <compilerArgument>-Xlint:all</compilerArgument>
277 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000278 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700279 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800280 <artifactId>maven-resources-plugin</artifactId>
281 <version>2.7</version>
282 <executions>
283 <execution>
284 <id>copy-resources</id>
285 <phase>validate</phase>
286 <goals>
287 <goal>copy-resources</goal>
288 </goals>
289 <configuration>
290 <outputDirectory>target</outputDirectory>
291 <resources>
292 <resource>
293 <directory>${root.dir}/src/main/appended-resources</directory>
294 <!-- <filtering>true</filtering> -->
295 </resource>
296 </resources>
297 </configuration>
298 </execution>
299 </executions>
300 </plugin>
301 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700302 <groupId>org.apache.maven.plugins</groupId>
303 <artifactId>maven-remote-resources-plugin</artifactId>
304 <executions>
305 <execution>
306 <goals>
307 <goal>process</goal>
308 </goals>
309 <configuration>
310 <resourceBundles combine.children="append">
311 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700312 </resourceBundles>
313 </configuration>
314 </execution>
315 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800316 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400317 <plugin>
318 <groupId>org.apache.maven.plugins</groupId>
319 <artifactId>maven-checkstyle-plugin</artifactId>
320 <version>2.17</version>
321 <executions>
322 <execution>
323 <id>verify-style</id>
324 <phase>process-classes</phase>
325 <goals>
326 <goal>check</goal>
327 </goals>
328 </execution>
329 </executions>
330 <configuration>
331 <logViolationsToConsole>true</logViolationsToConsole>
332 <checkstyleRules>
333 <module name="Checker">
334 <!-- Checks for whitespace -->
335 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400336 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400337 </module>
338 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400339 <includes>**/*.java,**/*.jj</includes>
340 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400341 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
342 </configuration>
343 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400344 <plugin>
345 <groupId>org.apache.maven.plugins</groupId>
346 <artifactId>maven-enforcer-plugin</artifactId>
347 <version>1.4.1</version>
348 <executions>
349 <execution>
350 <id>enforce-versions</id>
351 <goals>
352 <goal>enforce</goal>
353 </goals>
354 <configuration>
355 <rules>
356 <requireMavenVersion>
357 <version>[3.3.9,)</version>
358 </requireMavenVersion>
359 </rules>
360 </configuration>
361 </execution>
362 </executions>
363 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000364 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700365 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700366 <plugins>
367 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
368 <plugin>
369 <groupId>org.eclipse.m2e</groupId>
370 <artifactId>lifecycle-mapping</artifactId>
371 <version>1.0.0</version>
372 <configuration>
373 <lifecycleMappingMetadata>
374 <pluginExecutions>
375 <pluginExecution>
376 <pluginExecutionFilter>
377 <groupId>org.apache.rat</groupId>
378 <artifactId>apache-rat-plugin</artifactId>
379 <versionRange>[0.11,)</versionRange>
380 <goals>
381 <goal>check</goal>
382 </goals>
383 </pluginExecutionFilter>
384 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400385 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700386 </action>
387 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400388 <pluginExecution>
389 <pluginExecutionFilter>
390 <groupId>org.apache.maven.plugins</groupId>
391 <artifactId>maven-checkstyle-plugin</artifactId>
392 <versionRange>[2.17,)</versionRange>
393 <goals>
394 <goal>check</goal>
395 </goals>
396 </pluginExecutionFilter>
397 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400398 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400399 </action>
400 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700401 <pluginExecution>
402 <pluginExecutionFilter>
403 <groupId>org.apache.maven.plugins</groupId>
404 <artifactId>maven-dependency-plugin</artifactId>
405 <versionRange>[2.10,)</versionRange>
406 <goals>
407 <goal>analyze-only</goal>
408 </goals>
409 </pluginExecutionFilter>
410 <action>
411 <ignore></ignore>
412 </action>
413 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700414 </pluginExecutions>
415 </lifecycleMappingMetadata>
416 </configuration>
417 </plugin>
418 </plugins>
419 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000420 </build>
421
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800422 <profiles>
423 <profile>
424 <id>hanging-pregelix-tests</id>
425 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400426 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800427 </properties>
428 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700429 <profile>
430 <id>asterix-release</id>
Michael Blow1e34ec22016-05-15 19:15:40 -0700431 <activation>
432 <file>
433 <exists>src/main/assembly/source.xml</exists>
434 </file>
435 </activation>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700436 <build>
437 <plugins>
438 <plugin>
439 <groupId>org.apache.maven.plugins</groupId>
440 <artifactId>maven-assembly-plugin</artifactId>
441 <!-- We override the configuration plugin to override the descriptor to use for building
442 the source release zip. Specifically, we would like to control the inclusions/exclusions.
443 For example, we exclude the KEYS file from the zip -->
444 <executions>
445 <execution>
446 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
447 the apache parent POM under the apache-release profile -->
448 <id>source-release-assembly</id>
449 <phase>package</phase>
450 <goals>
451 <goal>single</goal>
452 </goals>
453 <!-- combine.self should be override to replace the configuration in the parent POM -->
454 <configuration combine.self="override">
455 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
456 <descriptors>
457 <descriptor>src/main/assembly/source.xml</descriptor>
458 </descriptors>
459 </configuration>
460 </execution>
461 </executions>
462 </plugin>
463 </plugins>
464 </build>
465 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700466 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400467 <id>coverage</id>
468 <activation>
469 <property>
470 <name>coverage</name>
471 </property>
472 </activation>
473 <build>
474 <plugins>
475 <plugin>
476 <groupId>org.jacoco</groupId>
477 <artifactId>jacoco-maven-plugin</artifactId>
478 <version>${jacoco.version}</version>
479 <executions>
480 <execution>
481 <id>default-prepare-agent</id>
482 <goals>
483 <goal>prepare-agent</goal>
484 </goals>
485 <configuration>
486 <propertyName>coverageArgLine</propertyName>
487 </configuration>
488 </execution>
489 <execution>
490 <id>default-prepare-agent-integration</id>
491 <goals>
492 <goal>prepare-agent-integration</goal>
493 </goals>
494 <configuration>
495 <propertyName>coverageArgLine</propertyName>
496 </configuration>
497 </execution>
498 </executions>
499 </plugin>
500 </plugins>
501 </build>
502 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400503 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400504 </properties>
505 </profile>
506 <profile>
507 <id>no-coverage</id>
508 <activation>
509 <property>
510 <name>!coverage</name>
511 </property>
512 </activation>
513 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400514 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400515 </properties>
516 </profile>
517 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700518 <id>java8</id>
519 <activation>
520 <jdk>1.8</jdk>
521 </activation>
522 <properties>
523 <jdk.version>1.8</jdk.version>
524 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700525 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800526 </profiles>
527
vinayakbe5add8a2012-10-06 19:00:14 +0000528 <modules>
529 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000530 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000531 </modules>
532</project>