blob: efad75b5d0748c7349229e4c15e1017039f5869a [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 Blowb4c1fb02016-05-09 15:41:00 -0700140 </dependencies>
141 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800142
vinayakbe5add8a2012-10-06 19:00:14 +0000143 <build>
144 <plugins>
145 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-dependency-plugin</artifactId>
148 <version>2.10</version>
149 <configuration>
150 <failOnWarning>true</failOnWarning>
151 <outputXML>true</outputXML>
152 </configuration>
153 <executions>
154 <execution>
155 <phase>process-test-classes</phase>
156 <goals>
157 <goal>analyze-only</goal>
158 </goals>
159 </execution>
160 </executions>
161 </plugin>
162 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800163 <groupId>org.codehaus.mojo</groupId>
164 <artifactId>versions-maven-plugin</artifactId>
165 <version>1.2</version>
166 </plugin>
167 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700168 <groupId>org.apache.rat</groupId>
169 <artifactId>apache-rat-plugin</artifactId>
170 <version>0.11</version>
171 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700172 <execution>
173 <phase>validate</phase>
174 <goals>
175 <goal>check</goal>
176 </goals>
177 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700178 </executions>
179 <configuration>
180 <licenses>
181 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
182 <licenseFamilyCategory>MIT</licenseFamilyCategory>
183 <licenseFamilyName>The MIT License</licenseFamilyName>
184 <notes>For JQuery MIT/GPL2 Dual License</notes>
185 <patterns>
186 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
187 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
188 <pattern>http://jquery.org/license</pattern>
189 <pattern>Dual licensed under the MIT</pattern>
190 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
191 </patterns>
192 </license>
193 </licenses>
194 <licenseFamilies>
195 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
196 <familyName>The MIT License</familyName>
197 </licenseFamily>
198 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
199 <familyName>Apache License Version 2.0</familyName>
200 </licenseFamily>
201 </licenseFamilies>
Ian Maxon9e37c962015-11-25 07:38:37 -0800202 <excludeSubProjects>false</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700203 <excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700204 <exclude>**/*.conf</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700205 <exclude>**/*.iml</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700206 <exclude>**/*.job</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700207 <exclude>**/*.prefs</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700208 <exclude>**/.classpath</exclude>
209 <exclude>**/.project</exclude>
210 <exclude>**/.settings/**</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700211 <exclude>**/actual/conf.xml</exclude>
212 <exclude>**/actual/customer_result/part-*</exclude>
213 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
214 <exclude>**/ClusterControllerService/**</exclude>
215 <exclude>**/data/**/*.ddl</exclude>
216 <exclude>**/data/**/*.tbl</exclude>
217 <exclude>**/data/**/*.tsv</exclude>
218 <exclude>**/data/**/*.txt</exclude>
219 <exclude>**/data/*.txt</exclude>
220 <exclude>**/data/dfs/**</exclude>
221 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
222 <exclude>**/invIndex*/**</exclude>
223 <exclude>**/javascript/adminconsole/*.js</exclude>
224 <exclude>**/javascript/flot/*.js</exclude>
225 <exclude>**/javascript/jquery/*.js</exclude>
226 <exclude>**/javascript/jsplumb/*.js</exclude>
227 <exclude>**/output/**</exclude>
228 <exclude>**/src/main/resources/*.cleaned</exclude>
229 <exclude>**/src/main/resources/conf/*</exclude>
230 <exclude>**/src/test/resources/data/**</exclude>
231 <exclude>**/src/test/resources/expected/**</exclude>
232 <exclude>**/src/test/resources/results/**</exclude>
233 <exclude>**/stylesheet/jquery-ui/**</exclude>
234 <exclude>**/target/**</exclude>
235 <exclude>**/testcases/*.piglet</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700236 <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude>
237 <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude>
238 <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude>
239 <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude>
240 <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude>
241 <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude>
242 <exclude>ClusterControllerService/logs/jobs/*.log</exclude>
243 <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude>
244 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude>
245 <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 -0700246 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/stylesheet/json.human.css</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700247 <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude>
248 <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude>
249 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude>
250 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude>
251 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude>
252 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude>
253 <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude>
254 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude>
255 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude>
256 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude>
257 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude>
258 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude>
259 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude>
260 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude>
261 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude>
262 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700263 </configuration>
264 </plugin>
265 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700266 <groupId>org.apache.maven.plugins</groupId>
267 <artifactId>maven-surefire-plugin</artifactId>
268 <version>2.16</version>
269 <configuration>
270 <failIfNoTests>false</failIfNoTests>
271 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800272 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700273 <argLine>-enableassertions -Xmx2048m
274 -Dfile.encoding=UTF-8
275 -Djava.util.logging.config.file=${user.home}/logging.properties
276 -Xdebug
277 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
278 ${coverageArgLine}
279 </argLine>
280 <includes>
281 <include>${global.test.includes},${test.includes}</include>
282 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800283 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700284 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800285 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700286 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700287 </plugin>
288 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700289 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700290 <artifactId>maven-compiler-plugin</artifactId>
291 <version>3.1</version>
292 <configuration>
293 <source>${jdk.version}</source>
294 <target>${jdk.version}</target>
295 <compilerArgument>-Xlint:all</compilerArgument>
296 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000297 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700298 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800299 <artifactId>maven-resources-plugin</artifactId>
300 <version>2.7</version>
301 <executions>
302 <execution>
303 <id>copy-resources</id>
304 <phase>validate</phase>
305 <goals>
306 <goal>copy-resources</goal>
307 </goals>
308 <configuration>
309 <outputDirectory>target</outputDirectory>
310 <resources>
311 <resource>
312 <directory>${root.dir}/src/main/appended-resources</directory>
313 <!-- <filtering>true</filtering> -->
314 </resource>
315 </resources>
316 </configuration>
317 </execution>
318 </executions>
319 </plugin>
320 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700321 <groupId>org.apache.maven.plugins</groupId>
322 <artifactId>maven-remote-resources-plugin</artifactId>
323 <executions>
324 <execution>
325 <goals>
326 <goal>process</goal>
327 </goals>
328 <configuration>
329 <resourceBundles combine.children="append">
330 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700331 </resourceBundles>
332 </configuration>
333 </execution>
334 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800335 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400336 <plugin>
337 <groupId>org.apache.maven.plugins</groupId>
338 <artifactId>maven-checkstyle-plugin</artifactId>
339 <version>2.17</version>
340 <executions>
341 <execution>
342 <id>verify-style</id>
343 <phase>process-classes</phase>
344 <goals>
345 <goal>check</goal>
346 </goals>
347 </execution>
348 </executions>
349 <configuration>
350 <logViolationsToConsole>true</logViolationsToConsole>
351 <checkstyleRules>
352 <module name="Checker">
353 <!-- Checks for whitespace -->
354 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400355 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400356 </module>
357 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400358 <includes>**/*.java,**/*.jj</includes>
359 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400360 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
361 </configuration>
362 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400363 <plugin>
364 <groupId>org.apache.maven.plugins</groupId>
365 <artifactId>maven-enforcer-plugin</artifactId>
366 <version>1.4.1</version>
367 <executions>
368 <execution>
369 <id>enforce-versions</id>
370 <goals>
371 <goal>enforce</goal>
372 </goals>
373 <configuration>
374 <rules>
375 <requireMavenVersion>
376 <version>[3.3.9,)</version>
377 </requireMavenVersion>
378 </rules>
379 </configuration>
380 </execution>
381 </executions>
382 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000383 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700384 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700385 <plugins>
386 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
387 <plugin>
388 <groupId>org.eclipse.m2e</groupId>
389 <artifactId>lifecycle-mapping</artifactId>
390 <version>1.0.0</version>
391 <configuration>
392 <lifecycleMappingMetadata>
393 <pluginExecutions>
394 <pluginExecution>
395 <pluginExecutionFilter>
396 <groupId>org.apache.rat</groupId>
397 <artifactId>apache-rat-plugin</artifactId>
398 <versionRange>[0.11,)</versionRange>
399 <goals>
400 <goal>check</goal>
401 </goals>
402 </pluginExecutionFilter>
403 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400404 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700405 </action>
406 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400407 <pluginExecution>
408 <pluginExecutionFilter>
409 <groupId>org.apache.maven.plugins</groupId>
410 <artifactId>maven-checkstyle-plugin</artifactId>
411 <versionRange>[2.17,)</versionRange>
412 <goals>
413 <goal>check</goal>
414 </goals>
415 </pluginExecutionFilter>
416 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400417 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400418 </action>
419 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700420 <pluginExecution>
421 <pluginExecutionFilter>
422 <groupId>org.apache.maven.plugins</groupId>
423 <artifactId>maven-dependency-plugin</artifactId>
424 <versionRange>[2.10,)</versionRange>
425 <goals>
426 <goal>analyze-only</goal>
427 </goals>
428 </pluginExecutionFilter>
429 <action>
430 <ignore></ignore>
431 </action>
432 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700433 </pluginExecutions>
434 </lifecycleMappingMetadata>
435 </configuration>
436 </plugin>
437 </plugins>
438 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000439 </build>
440
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800441 <profiles>
442 <profile>
443 <id>hanging-pregelix-tests</id>
444 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400445 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800446 </properties>
447 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700448 <profile>
449 <id>asterix-release</id>
Michael Blow1e34ec22016-05-15 19:15:40 -0700450 <activation>
451 <file>
452 <exists>src/main/assembly/source.xml</exists>
453 </file>
454 </activation>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700455 <build>
456 <plugins>
457 <plugin>
458 <groupId>org.apache.maven.plugins</groupId>
459 <artifactId>maven-assembly-plugin</artifactId>
460 <!-- We override the configuration plugin to override the descriptor to use for building
461 the source release zip. Specifically, we would like to control the inclusions/exclusions.
462 For example, we exclude the KEYS file from the zip -->
463 <executions>
464 <execution>
465 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
466 the apache parent POM under the apache-release profile -->
467 <id>source-release-assembly</id>
468 <phase>package</phase>
469 <goals>
470 <goal>single</goal>
471 </goals>
472 <!-- combine.self should be override to replace the configuration in the parent POM -->
473 <configuration combine.self="override">
474 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
475 <descriptors>
476 <descriptor>src/main/assembly/source.xml</descriptor>
477 </descriptors>
478 </configuration>
479 </execution>
480 </executions>
481 </plugin>
482 </plugins>
483 </build>
484 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700485 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400486 <id>coverage</id>
487 <activation>
488 <property>
489 <name>coverage</name>
490 </property>
491 </activation>
492 <build>
493 <plugins>
494 <plugin>
495 <groupId>org.jacoco</groupId>
496 <artifactId>jacoco-maven-plugin</artifactId>
497 <version>${jacoco.version}</version>
498 <executions>
499 <execution>
500 <id>default-prepare-agent</id>
501 <goals>
502 <goal>prepare-agent</goal>
503 </goals>
504 <configuration>
505 <propertyName>coverageArgLine</propertyName>
506 </configuration>
507 </execution>
508 <execution>
509 <id>default-prepare-agent-integration</id>
510 <goals>
511 <goal>prepare-agent-integration</goal>
512 </goals>
513 <configuration>
514 <propertyName>coverageArgLine</propertyName>
515 </configuration>
516 </execution>
517 </executions>
518 </plugin>
519 </plugins>
520 </build>
521 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400522 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400523 </properties>
524 </profile>
525 <profile>
526 <id>no-coverage</id>
527 <activation>
528 <property>
529 <name>!coverage</name>
530 </property>
531 </activation>
532 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400533 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400534 </properties>
535 </profile>
536 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700537 <id>java8</id>
538 <activation>
539 <jdk>1.8</jdk>
540 </activation>
541 <properties>
542 <jdk.version>1.8</jdk.version>
543 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700544 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800545 </profiles>
546
vinayakbe5add8a2012-10-06 19:00:14 +0000547 <modules>
548 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000549 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000550 </modules>
551</project>