blob: 4473802fb0ebe8010438e7a03dfda2eab6993b3b [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 Blowb4c1fb02016-05-09 15:41:00 -070058 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow599ef8f2017-01-12 11:02:53 -050059 <jetty.version>9.3.11.v20160721</jetty.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070060 </properties>
61 <dependencyManagement>
62 <dependencies>
63 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050064 <groupId>org.eclipse.jetty</groupId>
65 <artifactId>jetty-server</artifactId>
66 <version>${jetty.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.eclipse.jetty</groupId>
70 <artifactId>jetty-servlet</artifactId>
71 <version>${jetty.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>org.eclipse.jetty</groupId>
75 <artifactId>jetty-http</artifactId>
76 <version>${jetty.version}</version>
77 </dependency>
78 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070079 <groupId>junit</groupId>
80 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050081 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070082 </dependency>
83 <dependency>
84 <groupId>org.apache.hadoop</groupId>
85 <artifactId>hadoop-yarn-client</artifactId>
86 <version>${hadoop.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.hadoop</groupId>
90 <artifactId>hadoop-client</artifactId>
91 <version>${hadoop.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>org.apache.hadoop</groupId>
95 <artifactId>hadoop-common</artifactId>
96 <version>${hadoop.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-hdfs</artifactId>
101 <version>${hadoop.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.hadoop</groupId>
105 <artifactId>hadoop-minicluster</artifactId>
106 <version>${hadoop.version}</version>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.hadoop</groupId>
110 <artifactId>hadoop-mapreduce-client-core</artifactId>
111 <version>${hadoop.version}</version>
112 </dependency>
113 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400114 <groupId>org.apache.hadoop</groupId>
115 <artifactId>hadoop-hdfs</artifactId>
116 <version>${hadoop.version}</version>
117 <classifier>tests</classifier>
118 <scope>test</scope>
119 </dependency>
120 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700121 <groupId>commons-io</groupId>
122 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500123 <version>2.5</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700124 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800125 <dependency>
126 <groupId>com.fasterxml.jackson.core</groupId>
127 <artifactId>jackson-databind</artifactId>
128 <version>2.8.4</version>
129 </dependency>
130 <dependency>
131 <groupId>com.fasterxml.jackson.core</groupId>
132 <artifactId>jackson-core</artifactId>
133 <version>2.8.4</version>
134 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500135 <dependency>
136 <groupId>com.google.guava</groupId>
137 <artifactId>guava</artifactId>
138 <version>18.0</version>
139 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500140 <dependency>
141 <groupId>org.apache.commons</groupId>
142 <artifactId>commons-lang3</artifactId>
143 <version>3.5</version>
144 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700145 </dependencies>
146 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800147
vinayakbe5add8a2012-10-06 19:00:14 +0000148 <build>
149 <plugins>
150 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400151 <groupId>org.apache.maven.plugins</groupId>
152 <artifactId>maven-dependency-plugin</artifactId>
153 <version>2.10</version>
154 <configuration>
155 <failOnWarning>true</failOnWarning>
156 <outputXML>true</outputXML>
157 </configuration>
158 <executions>
159 <execution>
160 <phase>process-test-classes</phase>
161 <goals>
162 <goal>analyze-only</goal>
163 </goals>
164 </execution>
165 </executions>
166 </plugin>
167 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800168 <groupId>org.codehaus.mojo</groupId>
169 <artifactId>versions-maven-plugin</artifactId>
170 <version>1.2</version>
171 </plugin>
172 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700173 <groupId>org.apache.rat</groupId>
174 <artifactId>apache-rat-plugin</artifactId>
175 <version>0.11</version>
176 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700177 <execution>
178 <phase>validate</phase>
179 <goals>
180 <goal>check</goal>
181 </goals>
182 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700183 </executions>
184 <configuration>
185 <licenses>
186 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
187 <licenseFamilyCategory>MIT</licenseFamilyCategory>
188 <licenseFamilyName>The MIT License</licenseFamilyName>
189 <notes>For JQuery MIT/GPL2 Dual License</notes>
190 <patterns>
191 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
192 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
193 <pattern>http://jquery.org/license</pattern>
194 <pattern>Dual licensed under the MIT</pattern>
195 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
196 </patterns>
197 </license>
198 </licenses>
199 <licenseFamilies>
200 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
201 <familyName>The MIT License</familyName>
202 </licenseFamily>
203 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
204 <familyName>Apache License Version 2.0</familyName>
205 </licenseFamily>
206 </licenseFamilies>
Ian Maxon9e37c962015-11-25 07:38:37 -0800207 <excludeSubProjects>false</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700208 <excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700209 <exclude>**/*.conf</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700210 <exclude>**/*.iml</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700211 <exclude>**/*.job</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700212 <exclude>**/*.prefs</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700213 <exclude>**/.classpath</exclude>
214 <exclude>**/.project</exclude>
215 <exclude>**/.settings/**</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700216 <exclude>**/actual/conf.xml</exclude>
217 <exclude>**/actual/customer_result/part-*</exclude>
218 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
219 <exclude>**/ClusterControllerService/**</exclude>
220 <exclude>**/data/**/*.ddl</exclude>
221 <exclude>**/data/**/*.tbl</exclude>
222 <exclude>**/data/**/*.tsv</exclude>
223 <exclude>**/data/**/*.txt</exclude>
224 <exclude>**/data/*.txt</exclude>
225 <exclude>**/data/dfs/**</exclude>
226 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
227 <exclude>**/invIndex*/**</exclude>
228 <exclude>**/javascript/adminconsole/*.js</exclude>
229 <exclude>**/javascript/flot/*.js</exclude>
230 <exclude>**/javascript/jquery/*.js</exclude>
231 <exclude>**/javascript/jsplumb/*.js</exclude>
232 <exclude>**/output/**</exclude>
233 <exclude>**/src/main/resources/*.cleaned</exclude>
234 <exclude>**/src/main/resources/conf/*</exclude>
235 <exclude>**/src/test/resources/data/**</exclude>
236 <exclude>**/src/test/resources/expected/**</exclude>
237 <exclude>**/src/test/resources/results/**</exclude>
238 <exclude>**/stylesheet/jquery-ui/**</exclude>
239 <exclude>**/target/**</exclude>
240 <exclude>**/testcases/*.piglet</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700241 <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude>
242 <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude>
243 <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude>
244 <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude>
245 <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude>
246 <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude>
247 <exclude>ClusterControllerService/logs/jobs/*.log</exclude>
248 <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude>
249 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude>
250 <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 -0700251 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/stylesheet/json.human.css</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700252 <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude>
253 <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude>
254 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude>
255 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude>
256 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude>
257 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude>
258 <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude>
259 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude>
260 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude>
261 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude>
262 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude>
263 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude>
264 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude>
265 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude>
266 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude>
267 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700268 </configuration>
269 </plugin>
270 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700271 <groupId>org.apache.maven.plugins</groupId>
272 <artifactId>maven-surefire-plugin</artifactId>
273 <version>2.16</version>
274 <configuration>
275 <failIfNoTests>false</failIfNoTests>
276 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800277 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700278 <argLine>-enableassertions -Xmx2048m
279 -Dfile.encoding=UTF-8
280 -Djava.util.logging.config.file=${user.home}/logging.properties
281 -Xdebug
282 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
283 ${coverageArgLine}
284 </argLine>
285 <includes>
286 <include>${global.test.includes},${test.includes}</include>
287 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800288 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700289 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800290 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700291 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700292 </plugin>
293 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700294 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700295 <artifactId>maven-compiler-plugin</artifactId>
296 <version>3.1</version>
297 <configuration>
298 <source>${jdk.version}</source>
299 <target>${jdk.version}</target>
300 <compilerArgument>-Xlint:all</compilerArgument>
301 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000302 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700303 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800304 <artifactId>maven-resources-plugin</artifactId>
305 <version>2.7</version>
306 <executions>
307 <execution>
308 <id>copy-resources</id>
309 <phase>validate</phase>
310 <goals>
311 <goal>copy-resources</goal>
312 </goals>
313 <configuration>
314 <outputDirectory>target</outputDirectory>
315 <resources>
316 <resource>
317 <directory>${root.dir}/src/main/appended-resources</directory>
318 <!-- <filtering>true</filtering> -->
319 </resource>
320 </resources>
321 </configuration>
322 </execution>
323 </executions>
324 </plugin>
325 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700326 <groupId>org.apache.maven.plugins</groupId>
327 <artifactId>maven-remote-resources-plugin</artifactId>
328 <executions>
329 <execution>
330 <goals>
331 <goal>process</goal>
332 </goals>
333 <configuration>
334 <resourceBundles combine.children="append">
335 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700336 </resourceBundles>
337 </configuration>
338 </execution>
339 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800340 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400341 <plugin>
342 <groupId>org.apache.maven.plugins</groupId>
343 <artifactId>maven-checkstyle-plugin</artifactId>
344 <version>2.17</version>
345 <executions>
346 <execution>
347 <id>verify-style</id>
348 <phase>process-classes</phase>
349 <goals>
350 <goal>check</goal>
351 </goals>
352 </execution>
353 </executions>
354 <configuration>
355 <logViolationsToConsole>true</logViolationsToConsole>
356 <checkstyleRules>
357 <module name="Checker">
358 <!-- Checks for whitespace -->
359 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400360 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400361 </module>
362 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400363 <includes>**/*.java,**/*.jj</includes>
364 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400365 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
366 </configuration>
367 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400368 <plugin>
369 <groupId>org.apache.maven.plugins</groupId>
370 <artifactId>maven-enforcer-plugin</artifactId>
371 <version>1.4.1</version>
372 <executions>
373 <execution>
374 <id>enforce-versions</id>
375 <goals>
376 <goal>enforce</goal>
377 </goals>
378 <configuration>
379 <rules>
380 <requireMavenVersion>
381 <version>[3.3.9,)</version>
382 </requireMavenVersion>
383 </rules>
384 </configuration>
385 </execution>
386 </executions>
387 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000388 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700389 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700390 <plugins>
391 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
392 <plugin>
393 <groupId>org.eclipse.m2e</groupId>
394 <artifactId>lifecycle-mapping</artifactId>
395 <version>1.0.0</version>
396 <configuration>
397 <lifecycleMappingMetadata>
398 <pluginExecutions>
399 <pluginExecution>
400 <pluginExecutionFilter>
401 <groupId>org.apache.rat</groupId>
402 <artifactId>apache-rat-plugin</artifactId>
403 <versionRange>[0.11,)</versionRange>
404 <goals>
405 <goal>check</goal>
406 </goals>
407 </pluginExecutionFilter>
408 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400409 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700410 </action>
411 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400412 <pluginExecution>
413 <pluginExecutionFilter>
414 <groupId>org.apache.maven.plugins</groupId>
415 <artifactId>maven-checkstyle-plugin</artifactId>
416 <versionRange>[2.17,)</versionRange>
417 <goals>
418 <goal>check</goal>
419 </goals>
420 </pluginExecutionFilter>
421 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400422 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400423 </action>
424 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700425 <pluginExecution>
426 <pluginExecutionFilter>
427 <groupId>org.apache.maven.plugins</groupId>
428 <artifactId>maven-dependency-plugin</artifactId>
429 <versionRange>[2.10,)</versionRange>
430 <goals>
431 <goal>analyze-only</goal>
432 </goals>
433 </pluginExecutionFilter>
434 <action>
435 <ignore></ignore>
436 </action>
437 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700438 </pluginExecutions>
439 </lifecycleMappingMetadata>
440 </configuration>
441 </plugin>
442 </plugins>
443 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000444 </build>
445
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800446 <profiles>
447 <profile>
448 <id>hanging-pregelix-tests</id>
449 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400450 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800451 </properties>
452 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700453 <profile>
454 <id>asterix-release</id>
Michael Blow1e34ec22016-05-15 19:15:40 -0700455 <activation>
456 <file>
457 <exists>src/main/assembly/source.xml</exists>
458 </file>
459 </activation>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700460 <build>
461 <plugins>
462 <plugin>
463 <groupId>org.apache.maven.plugins</groupId>
464 <artifactId>maven-assembly-plugin</artifactId>
465 <!-- We override the configuration plugin to override the descriptor to use for building
466 the source release zip. Specifically, we would like to control the inclusions/exclusions.
467 For example, we exclude the KEYS file from the zip -->
468 <executions>
469 <execution>
470 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
471 the apache parent POM under the apache-release profile -->
472 <id>source-release-assembly</id>
473 <phase>package</phase>
474 <goals>
475 <goal>single</goal>
476 </goals>
477 <!-- combine.self should be override to replace the configuration in the parent POM -->
478 <configuration combine.self="override">
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700479 <descriptors>
480 <descriptor>src/main/assembly/source.xml</descriptor>
481 </descriptors>
482 </configuration>
483 </execution>
484 </executions>
485 </plugin>
486 </plugins>
487 </build>
488 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700489 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400490 <id>coverage</id>
491 <activation>
492 <property>
493 <name>coverage</name>
494 </property>
495 </activation>
496 <build>
497 <plugins>
498 <plugin>
499 <groupId>org.jacoco</groupId>
500 <artifactId>jacoco-maven-plugin</artifactId>
501 <version>${jacoco.version}</version>
502 <executions>
503 <execution>
504 <id>default-prepare-agent</id>
505 <goals>
506 <goal>prepare-agent</goal>
507 </goals>
508 <configuration>
509 <propertyName>coverageArgLine</propertyName>
510 </configuration>
511 </execution>
512 <execution>
513 <id>default-prepare-agent-integration</id>
514 <goals>
515 <goal>prepare-agent-integration</goal>
516 </goals>
517 <configuration>
518 <propertyName>coverageArgLine</propertyName>
519 </configuration>
520 </execution>
521 </executions>
522 </plugin>
523 </plugins>
524 </build>
525 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400526 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400527 </properties>
528 </profile>
529 <profile>
530 <id>no-coverage</id>
531 <activation>
532 <property>
533 <name>!coverage</name>
534 </property>
535 </activation>
536 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400537 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400538 </properties>
539 </profile>
540 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700541 <id>java8</id>
542 <activation>
543 <jdk>1.8</jdk>
544 </activation>
545 <properties>
546 <jdk.version>1.8</jdk.version>
547 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700548 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800549 </profiles>
550
vinayakbe5add8a2012-10-06 19:00:14 +0000551 <modules>
552 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000553 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500554 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000555 </modules>
556</project>