blob: 9cd984141a71155b253f07319fa63054cee172e1 [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>
111 </dependencies>
112 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800113
vinayakbe5add8a2012-10-06 19:00:14 +0000114 <build>
115 <plugins>
116 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-dependency-plugin</artifactId>
119 <version>2.10</version>
120 <configuration>
121 <failOnWarning>true</failOnWarning>
122 <outputXML>true</outputXML>
123 </configuration>
124 <executions>
125 <execution>
126 <phase>process-test-classes</phase>
127 <goals>
128 <goal>analyze-only</goal>
129 </goals>
130 </execution>
131 </executions>
132 </plugin>
133 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800134 <groupId>org.codehaus.mojo</groupId>
135 <artifactId>versions-maven-plugin</artifactId>
136 <version>1.2</version>
137 </plugin>
138 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700139 <groupId>org.apache.rat</groupId>
140 <artifactId>apache-rat-plugin</artifactId>
141 <version>0.11</version>
142 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700143 <execution>
144 <phase>validate</phase>
145 <goals>
146 <goal>check</goal>
147 </goals>
148 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700149 </executions>
150 <configuration>
151 <licenses>
152 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
153 <licenseFamilyCategory>MIT</licenseFamilyCategory>
154 <licenseFamilyName>The MIT License</licenseFamilyName>
155 <notes>For JQuery MIT/GPL2 Dual License</notes>
156 <patterns>
157 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
158 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
159 <pattern>http://jquery.org/license</pattern>
160 <pattern>Dual licensed under the MIT</pattern>
161 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
162 </patterns>
163 </license>
164 </licenses>
165 <licenseFamilies>
166 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
167 <familyName>The MIT License</familyName>
168 </licenseFamily>
169 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
170 <familyName>Apache License Version 2.0</familyName>
171 </licenseFamily>
172 </licenseFamilies>
Ian Maxon9e37c962015-11-25 07:38:37 -0800173 <excludeSubProjects>false</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700174 <excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700175 <exclude>**/*.conf</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700176 <exclude>**/*.iml</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700177 <exclude>**/*.job</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700178 <exclude>**/*.prefs</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700179 <exclude>**/.classpath</exclude>
180 <exclude>**/.project</exclude>
181 <exclude>**/.settings/**</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700182 <exclude>**/actual/conf.xml</exclude>
183 <exclude>**/actual/customer_result/part-*</exclude>
184 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
185 <exclude>**/ClusterControllerService/**</exclude>
186 <exclude>**/data/**/*.ddl</exclude>
187 <exclude>**/data/**/*.tbl</exclude>
188 <exclude>**/data/**/*.tsv</exclude>
189 <exclude>**/data/**/*.txt</exclude>
190 <exclude>**/data/*.txt</exclude>
191 <exclude>**/data/dfs/**</exclude>
192 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
193 <exclude>**/invIndex*/**</exclude>
194 <exclude>**/javascript/adminconsole/*.js</exclude>
195 <exclude>**/javascript/flot/*.js</exclude>
196 <exclude>**/javascript/jquery/*.js</exclude>
197 <exclude>**/javascript/jsplumb/*.js</exclude>
198 <exclude>**/output/**</exclude>
199 <exclude>**/src/main/resources/*.cleaned</exclude>
200 <exclude>**/src/main/resources/conf/*</exclude>
201 <exclude>**/src/test/resources/data/**</exclude>
202 <exclude>**/src/test/resources/expected/**</exclude>
203 <exclude>**/src/test/resources/results/**</exclude>
204 <exclude>**/stylesheet/jquery-ui/**</exclude>
205 <exclude>**/target/**</exclude>
206 <exclude>**/testcases/*.piglet</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700207 <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude>
208 <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude>
209 <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude>
210 <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude>
211 <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude>
212 <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude>
213 <exclude>ClusterControllerService/logs/jobs/*.log</exclude>
214 <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude>
215 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude>
216 <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 -0700217 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/stylesheet/json.human.css</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700218 <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude>
219 <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude>
220 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude>
221 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude>
222 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude>
223 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude>
224 <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude>
225 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude>
226 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude>
227 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude>
228 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude>
229 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude>
230 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude>
231 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude>
232 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude>
233 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700234 </configuration>
235 </plugin>
236 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700237 <groupId>org.apache.maven.plugins</groupId>
238 <artifactId>maven-surefire-plugin</artifactId>
239 <version>2.16</version>
240 <configuration>
241 <failIfNoTests>false</failIfNoTests>
242 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800243 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700244 <argLine>-enableassertions -Xmx2048m
245 -Dfile.encoding=UTF-8
246 -Djava.util.logging.config.file=${user.home}/logging.properties
247 -Xdebug
248 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
249 ${coverageArgLine}
250 </argLine>
251 <includes>
252 <include>${global.test.includes},${test.includes}</include>
253 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800254 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700255 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800256 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700257 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700258 </plugin>
259 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700260 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700261 <artifactId>maven-compiler-plugin</artifactId>
262 <version>3.1</version>
263 <configuration>
264 <source>${jdk.version}</source>
265 <target>${jdk.version}</target>
266 <compilerArgument>-Xlint:all</compilerArgument>
267 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000268 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700269 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800270 <artifactId>maven-resources-plugin</artifactId>
271 <version>2.7</version>
272 <executions>
273 <execution>
274 <id>copy-resources</id>
275 <phase>validate</phase>
276 <goals>
277 <goal>copy-resources</goal>
278 </goals>
279 <configuration>
280 <outputDirectory>target</outputDirectory>
281 <resources>
282 <resource>
283 <directory>${root.dir}/src/main/appended-resources</directory>
284 <!-- <filtering>true</filtering> -->
285 </resource>
286 </resources>
287 </configuration>
288 </execution>
289 </executions>
290 </plugin>
291 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700292 <groupId>org.apache.maven.plugins</groupId>
293 <artifactId>maven-remote-resources-plugin</artifactId>
294 <executions>
295 <execution>
296 <goals>
297 <goal>process</goal>
298 </goals>
299 <configuration>
300 <resourceBundles combine.children="append">
301 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700302 </resourceBundles>
303 </configuration>
304 </execution>
305 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800306 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400307 <plugin>
308 <groupId>org.apache.maven.plugins</groupId>
309 <artifactId>maven-checkstyle-plugin</artifactId>
310 <version>2.17</version>
311 <executions>
312 <execution>
313 <id>verify-style</id>
314 <phase>process-classes</phase>
315 <goals>
316 <goal>check</goal>
317 </goals>
318 </execution>
319 </executions>
320 <configuration>
321 <logViolationsToConsole>true</logViolationsToConsole>
322 <checkstyleRules>
323 <module name="Checker">
324 <!-- Checks for whitespace -->
325 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400326 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400327 </module>
328 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400329 <includes>**/*.java,**/*.jj</includes>
330 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400331 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
332 </configuration>
333 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400334 <plugin>
335 <groupId>org.apache.maven.plugins</groupId>
336 <artifactId>maven-enforcer-plugin</artifactId>
337 <version>1.4.1</version>
338 <executions>
339 <execution>
340 <id>enforce-versions</id>
341 <goals>
342 <goal>enforce</goal>
343 </goals>
344 <configuration>
345 <rules>
346 <requireMavenVersion>
347 <version>[3.3.9,)</version>
348 </requireMavenVersion>
349 </rules>
350 </configuration>
351 </execution>
352 </executions>
353 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000354 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700355 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700356 <plugins>
357 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
358 <plugin>
359 <groupId>org.eclipse.m2e</groupId>
360 <artifactId>lifecycle-mapping</artifactId>
361 <version>1.0.0</version>
362 <configuration>
363 <lifecycleMappingMetadata>
364 <pluginExecutions>
365 <pluginExecution>
366 <pluginExecutionFilter>
367 <groupId>org.apache.rat</groupId>
368 <artifactId>apache-rat-plugin</artifactId>
369 <versionRange>[0.11,)</versionRange>
370 <goals>
371 <goal>check</goal>
372 </goals>
373 </pluginExecutionFilter>
374 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400375 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700376 </action>
377 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400378 <pluginExecution>
379 <pluginExecutionFilter>
380 <groupId>org.apache.maven.plugins</groupId>
381 <artifactId>maven-checkstyle-plugin</artifactId>
382 <versionRange>[2.17,)</versionRange>
383 <goals>
384 <goal>check</goal>
385 </goals>
386 </pluginExecutionFilter>
387 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400388 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400389 </action>
390 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700391 <pluginExecution>
392 <pluginExecutionFilter>
393 <groupId>org.apache.maven.plugins</groupId>
394 <artifactId>maven-dependency-plugin</artifactId>
395 <versionRange>[2.10,)</versionRange>
396 <goals>
397 <goal>analyze-only</goal>
398 </goals>
399 </pluginExecutionFilter>
400 <action>
401 <ignore></ignore>
402 </action>
403 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700404 </pluginExecutions>
405 </lifecycleMappingMetadata>
406 </configuration>
407 </plugin>
408 </plugins>
409 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000410 </build>
411
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800412 <profiles>
413 <profile>
414 <id>hanging-pregelix-tests</id>
415 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400416 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800417 </properties>
418 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700419 <profile>
420 <id>asterix-release</id>
Michael Blow1e34ec22016-05-15 19:15:40 -0700421 <activation>
422 <file>
423 <exists>src/main/assembly/source.xml</exists>
424 </file>
425 </activation>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700426 <build>
427 <plugins>
428 <plugin>
429 <groupId>org.apache.maven.plugins</groupId>
430 <artifactId>maven-assembly-plugin</artifactId>
431 <!-- We override the configuration plugin to override the descriptor to use for building
432 the source release zip. Specifically, we would like to control the inclusions/exclusions.
433 For example, we exclude the KEYS file from the zip -->
434 <executions>
435 <execution>
436 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
437 the apache parent POM under the apache-release profile -->
438 <id>source-release-assembly</id>
439 <phase>package</phase>
440 <goals>
441 <goal>single</goal>
442 </goals>
443 <!-- combine.self should be override to replace the configuration in the parent POM -->
444 <configuration combine.self="override">
445 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
446 <descriptors>
447 <descriptor>src/main/assembly/source.xml</descriptor>
448 </descriptors>
449 </configuration>
450 </execution>
451 </executions>
452 </plugin>
453 </plugins>
454 </build>
455 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700456 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400457 <id>coverage</id>
458 <activation>
459 <property>
460 <name>coverage</name>
461 </property>
462 </activation>
463 <build>
464 <plugins>
465 <plugin>
466 <groupId>org.jacoco</groupId>
467 <artifactId>jacoco-maven-plugin</artifactId>
468 <version>${jacoco.version}</version>
469 <executions>
470 <execution>
471 <id>default-prepare-agent</id>
472 <goals>
473 <goal>prepare-agent</goal>
474 </goals>
475 <configuration>
476 <propertyName>coverageArgLine</propertyName>
477 </configuration>
478 </execution>
479 <execution>
480 <id>default-prepare-agent-integration</id>
481 <goals>
482 <goal>prepare-agent-integration</goal>
483 </goals>
484 <configuration>
485 <propertyName>coverageArgLine</propertyName>
486 </configuration>
487 </execution>
488 </executions>
489 </plugin>
490 </plugins>
491 </build>
492 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400493 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400494 </properties>
495 </profile>
496 <profile>
497 <id>no-coverage</id>
498 <activation>
499 <property>
500 <name>!coverage</name>
501 </property>
502 </activation>
503 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400504 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400505 </properties>
506 </profile>
507 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700508 <id>java8</id>
509 <activation>
510 <jdk>1.8</jdk>
511 </activation>
512 <properties>
513 <jdk.version>1.8</jdk.version>
514 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700515 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800516 </profiles>
517
vinayakbe5add8a2012-10-06 19:00:14 +0000518 <modules>
519 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000520 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000521 </modules>
522</project>