blob: 6c153c601a069cd7e56418ad7ee2f736f4817c81 [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>
Michael Blowc96bb1f2017-01-16 16:31:54 -050027 <url>https://asterixdb.apache.org/</url>
Ian Maxonc4821272015-08-21 16:08:01 -070028
Michael Blowb4c1fb02016-05-09 15:41:00 -070029 <parent>
30 <groupId>org.apache</groupId>
31 <artifactId>apache</artifactId>
Michael Blowb99349d2016-11-08 19:38:02 -050032 <version>18</version>
Michael Blow380b0a22016-08-02 13:05:52 -040033 <relativePath />
Michael Blowb4c1fb02016-05-09 15:41:00 -070034 </parent>
Ian Maxonc4821272015-08-21 16:08:01 -070035
Michael Blowb4c1fb02016-05-09 15:41:00 -070036 <licenses>
37 <license>
38 <name>Apache License, Version 2.0</name>
39 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
40 <distribution>repo</distribution>
41 <comments>A business-friendly OSS license</comments>
42 </license>
43 </licenses>
vinayakbe5add8a2012-10-06 19:00:14 +000044
Michael Blowb4c1fb02016-05-09 15:41:00 -070045 <properties>
46 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47 <jdk.version>1.8</jdk.version>
Michael Blow380b0a22016-08-02 13:05:52 -040048 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow7c15c132016-05-04 22:06:34 -040050
Michael Blowb4c1fb02016-05-09 15:41:00 -070051 <!-- Definition of tests in various categories which may be excluded -->
52 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
53 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
54 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
55 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
56 </global.test.excludes>
57 <!-- Versions under dependencymanagement or used in many projects via properties -->
58 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070059 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow599ef8f2017-01-12 11:02:53 -050060 <jetty.version>9.3.11.v20160721</jetty.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070061 </properties>
62 <dependencyManagement>
63 <dependencies>
64 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050065 <groupId>org.eclipse.jetty</groupId>
66 <artifactId>jetty-server</artifactId>
67 <version>${jetty.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.eclipse.jetty</groupId>
71 <artifactId>jetty-servlet</artifactId>
72 <version>${jetty.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.eclipse.jetty</groupId>
76 <artifactId>jetty-http</artifactId>
77 <version>${jetty.version}</version>
78 </dependency>
79 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070080 <groupId>junit</groupId>
81 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050082 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070083 </dependency>
84 <dependency>
85 <groupId>org.apache.hadoop</groupId>
86 <artifactId>hadoop-yarn-client</artifactId>
87 <version>${hadoop.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.hadoop</groupId>
91 <artifactId>hadoop-client</artifactId>
92 <version>${hadoop.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.hadoop</groupId>
96 <artifactId>hadoop-common</artifactId>
97 <version>${hadoop.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>org.apache.hadoop</groupId>
101 <artifactId>hadoop-hdfs</artifactId>
102 <version>${hadoop.version}</version>
103 </dependency>
104 <dependency>
105 <groupId>org.apache.hadoop</groupId>
106 <artifactId>hadoop-minicluster</artifactId>
107 <version>${hadoop.version}</version>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.hadoop</groupId>
111 <artifactId>hadoop-mapreduce-client-core</artifactId>
112 <version>${hadoop.version}</version>
113 </dependency>
114 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400115 <groupId>org.apache.hadoop</groupId>
116 <artifactId>hadoop-hdfs</artifactId>
117 <version>${hadoop.version}</version>
118 <classifier>tests</classifier>
119 <scope>test</scope>
120 </dependency>
121 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700122 <groupId>commons-io</groupId>
123 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500124 <version>2.5</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700125 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800126 <dependency>
127 <groupId>com.fasterxml.jackson.core</groupId>
128 <artifactId>jackson-databind</artifactId>
129 <version>2.8.4</version>
130 </dependency>
131 <dependency>
132 <groupId>com.fasterxml.jackson.core</groupId>
133 <artifactId>jackson-core</artifactId>
134 <version>2.8.4</version>
135 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500136 <dependency>
137 <groupId>com.google.guava</groupId>
138 <artifactId>guava</artifactId>
139 <version>18.0</version>
140 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500141 <dependency>
142 <groupId>org.apache.commons</groupId>
143 <artifactId>commons-lang3</artifactId>
144 <version>3.5</version>
145 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700146 </dependencies>
147 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800148
vinayakbe5add8a2012-10-06 19:00:14 +0000149 <build>
150 <plugins>
151 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400152 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500153 <artifactId>maven-jar-plugin</artifactId>
154 <version>3.0.0</version>
155 <configuration>
156 <excludes>
157 <exclude>**/DEPENDENCIES</exclude>
158 </excludes>
159 </configuration>
160 </plugin>
161 <plugin>
162 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400163 <artifactId>maven-dependency-plugin</artifactId>
164 <version>2.10</version>
165 <configuration>
166 <failOnWarning>true</failOnWarning>
167 <outputXML>true</outputXML>
168 </configuration>
169 <executions>
170 <execution>
171 <phase>process-test-classes</phase>
172 <goals>
173 <goal>analyze-only</goal>
174 </goals>
175 </execution>
176 </executions>
177 </plugin>
178 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800179 <groupId>org.codehaus.mojo</groupId>
180 <artifactId>versions-maven-plugin</artifactId>
181 <version>1.2</version>
182 </plugin>
183 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700184 <groupId>org.apache.rat</groupId>
185 <artifactId>apache-rat-plugin</artifactId>
186 <version>0.11</version>
187 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700188 <execution>
189 <phase>validate</phase>
190 <goals>
191 <goal>check</goal>
192 </goals>
193 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700194 </executions>
195 <configuration>
196 <licenses>
197 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
198 <licenseFamilyCategory>MIT</licenseFamilyCategory>
199 <licenseFamilyName>The MIT License</licenseFamilyName>
200 <notes>For JQuery MIT/GPL2 Dual License</notes>
201 <patterns>
202 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
203 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
204 <pattern>http://jquery.org/license</pattern>
205 <pattern>Dual licensed under the MIT</pattern>
206 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
207 </patterns>
208 </license>
209 </licenses>
210 <licenseFamilies>
211 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
212 <familyName>The MIT License</familyName>
213 </licenseFamily>
214 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
215 <familyName>Apache License Version 2.0</familyName>
216 </licenseFamily>
217 </licenseFamilies>
Ian Maxon9e37c962015-11-25 07:38:37 -0800218 <excludeSubProjects>false</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700219 <excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700220 <exclude>**/*.conf</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700221 <exclude>**/*.iml</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700222 <exclude>**/*.job</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700223 <exclude>**/*.prefs</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700224 <exclude>**/.classpath</exclude>
225 <exclude>**/.project</exclude>
226 <exclude>**/.settings/**</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700227 <exclude>**/actual/conf.xml</exclude>
228 <exclude>**/actual/customer_result/part-*</exclude>
229 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
230 <exclude>**/ClusterControllerService/**</exclude>
231 <exclude>**/data/**/*.ddl</exclude>
232 <exclude>**/data/**/*.tbl</exclude>
233 <exclude>**/data/**/*.tsv</exclude>
234 <exclude>**/data/**/*.txt</exclude>
235 <exclude>**/data/*.txt</exclude>
236 <exclude>**/data/dfs/**</exclude>
237 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
238 <exclude>**/invIndex*/**</exclude>
239 <exclude>**/javascript/adminconsole/*.js</exclude>
240 <exclude>**/javascript/flot/*.js</exclude>
241 <exclude>**/javascript/jquery/*.js</exclude>
242 <exclude>**/javascript/jsplumb/*.js</exclude>
243 <exclude>**/output/**</exclude>
244 <exclude>**/src/main/resources/*.cleaned</exclude>
245 <exclude>**/src/main/resources/conf/*</exclude>
246 <exclude>**/src/test/resources/data/**</exclude>
247 <exclude>**/src/test/resources/expected/**</exclude>
248 <exclude>**/src/test/resources/results/**</exclude>
249 <exclude>**/stylesheet/jquery-ui/**</exclude>
250 <exclude>**/target/**</exclude>
251 <exclude>**/testcases/*.piglet</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700252 <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude>
253 <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude>
254 <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude>
255 <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude>
256 <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude>
257 <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude>
258 <exclude>ClusterControllerService/logs/jobs/*.log</exclude>
259 <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude>
260 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude>
261 <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 -0700262 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/stylesheet/json.human.css</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700263 <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude>
264 <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude>
265 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude>
266 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude>
267 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude>
268 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude>
269 <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude>
270 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude>
271 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude>
272 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude>
273 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude>
274 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude>
275 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude>
276 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude>
277 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude>
278 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700279 </configuration>
280 </plugin>
281 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700282 <groupId>org.apache.maven.plugins</groupId>
283 <artifactId>maven-surefire-plugin</artifactId>
284 <version>2.16</version>
285 <configuration>
286 <failIfNoTests>false</failIfNoTests>
287 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800288 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700289 <argLine>-enableassertions -Xmx2048m
290 -Dfile.encoding=UTF-8
291 -Djava.util.logging.config.file=${user.home}/logging.properties
292 -Xdebug
293 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
294 ${coverageArgLine}
295 </argLine>
296 <includes>
297 <include>${global.test.includes},${test.includes}</include>
298 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800299 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700300 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800301 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700302 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700303 </plugin>
304 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700305 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700306 <artifactId>maven-compiler-plugin</artifactId>
307 <version>3.1</version>
308 <configuration>
309 <source>${jdk.version}</source>
310 <target>${jdk.version}</target>
311 <compilerArgument>-Xlint:all</compilerArgument>
312 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000313 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700314 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800315 <artifactId>maven-resources-plugin</artifactId>
316 <version>2.7</version>
317 <executions>
318 <execution>
319 <id>copy-resources</id>
320 <phase>validate</phase>
321 <goals>
322 <goal>copy-resources</goal>
323 </goals>
324 <configuration>
325 <outputDirectory>target</outputDirectory>
326 <resources>
327 <resource>
328 <directory>${root.dir}/src/main/appended-resources</directory>
329 <!-- <filtering>true</filtering> -->
330 </resource>
331 </resources>
332 </configuration>
333 </execution>
334 </executions>
335 </plugin>
336 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700337 <groupId>org.apache.maven.plugins</groupId>
338 <artifactId>maven-remote-resources-plugin</artifactId>
339 <executions>
340 <execution>
341 <goals>
342 <goal>process</goal>
343 </goals>
344 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500345 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700346 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700347 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500348 <properties>
349 <projectName>Apache Hyracks - ${project.name}</projectName>
350 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700351 </configuration>
352 </execution>
353 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800354 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400355 <plugin>
356 <groupId>org.apache.maven.plugins</groupId>
357 <artifactId>maven-checkstyle-plugin</artifactId>
358 <version>2.17</version>
359 <executions>
360 <execution>
361 <id>verify-style</id>
362 <phase>process-classes</phase>
363 <goals>
364 <goal>check</goal>
365 </goals>
366 </execution>
367 </executions>
368 <configuration>
369 <logViolationsToConsole>true</logViolationsToConsole>
370 <checkstyleRules>
371 <module name="Checker">
372 <!-- Checks for whitespace -->
373 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400374 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400375 </module>
376 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400377 <includes>**/*.java,**/*.jj</includes>
378 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400379 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
380 </configuration>
381 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400382 <plugin>
383 <groupId>org.apache.maven.plugins</groupId>
384 <artifactId>maven-enforcer-plugin</artifactId>
385 <version>1.4.1</version>
386 <executions>
387 <execution>
388 <id>enforce-versions</id>
389 <goals>
390 <goal>enforce</goal>
391 </goals>
392 <configuration>
393 <rules>
394 <requireMavenVersion>
395 <version>[3.3.9,)</version>
396 </requireMavenVersion>
397 </rules>
398 </configuration>
399 </execution>
400 </executions>
401 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000402 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700403 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700404 <plugins>
405 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
406 <plugin>
407 <groupId>org.eclipse.m2e</groupId>
408 <artifactId>lifecycle-mapping</artifactId>
409 <version>1.0.0</version>
410 <configuration>
411 <lifecycleMappingMetadata>
412 <pluginExecutions>
413 <pluginExecution>
414 <pluginExecutionFilter>
415 <groupId>org.apache.rat</groupId>
416 <artifactId>apache-rat-plugin</artifactId>
417 <versionRange>[0.11,)</versionRange>
418 <goals>
419 <goal>check</goal>
420 </goals>
421 </pluginExecutionFilter>
422 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400423 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700424 </action>
425 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400426 <pluginExecution>
427 <pluginExecutionFilter>
428 <groupId>org.apache.maven.plugins</groupId>
429 <artifactId>maven-checkstyle-plugin</artifactId>
430 <versionRange>[2.17,)</versionRange>
431 <goals>
432 <goal>check</goal>
433 </goals>
434 </pluginExecutionFilter>
435 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400436 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400437 </action>
438 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700439 <pluginExecution>
440 <pluginExecutionFilter>
441 <groupId>org.apache.maven.plugins</groupId>
442 <artifactId>maven-dependency-plugin</artifactId>
443 <versionRange>[2.10,)</versionRange>
444 <goals>
445 <goal>analyze-only</goal>
446 </goals>
447 </pluginExecutionFilter>
448 <action>
449 <ignore></ignore>
450 </action>
451 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700452 </pluginExecutions>
453 </lifecycleMappingMetadata>
454 </configuration>
455 </plugin>
456 </plugins>
457 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000458 </build>
459
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800460 <profiles>
461 <profile>
462 <id>hanging-pregelix-tests</id>
463 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400464 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800465 </properties>
466 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700467 <profile>
468 <id>asterix-release</id>
Michael Blow1e34ec22016-05-15 19:15:40 -0700469 <activation>
470 <file>
471 <exists>src/main/assembly/source.xml</exists>
472 </file>
473 </activation>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700474 <build>
475 <plugins>
476 <plugin>
477 <groupId>org.apache.maven.plugins</groupId>
478 <artifactId>maven-assembly-plugin</artifactId>
479 <!-- We override the configuration plugin to override the descriptor to use for building
480 the source release zip. Specifically, we would like to control the inclusions/exclusions.
481 For example, we exclude the KEYS file from the zip -->
482 <executions>
483 <execution>
484 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
485 the apache parent POM under the apache-release profile -->
486 <id>source-release-assembly</id>
487 <phase>package</phase>
488 <goals>
489 <goal>single</goal>
490 </goals>
491 <!-- combine.self should be override to replace the configuration in the parent POM -->
492 <configuration combine.self="override">
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700493 <descriptors>
494 <descriptor>src/main/assembly/source.xml</descriptor>
495 </descriptors>
496 </configuration>
497 </execution>
498 </executions>
499 </plugin>
500 </plugins>
501 </build>
502 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700503 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400504 <id>coverage</id>
505 <activation>
506 <property>
507 <name>coverage</name>
508 </property>
509 </activation>
510 <build>
511 <plugins>
512 <plugin>
513 <groupId>org.jacoco</groupId>
514 <artifactId>jacoco-maven-plugin</artifactId>
515 <version>${jacoco.version}</version>
516 <executions>
517 <execution>
518 <id>default-prepare-agent</id>
519 <goals>
520 <goal>prepare-agent</goal>
521 </goals>
522 <configuration>
523 <propertyName>coverageArgLine</propertyName>
524 </configuration>
525 </execution>
526 <execution>
527 <id>default-prepare-agent-integration</id>
528 <goals>
529 <goal>prepare-agent-integration</goal>
530 </goals>
531 <configuration>
532 <propertyName>coverageArgLine</propertyName>
533 </configuration>
534 </execution>
535 </executions>
536 </plugin>
537 </plugins>
538 </build>
539 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400540 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400541 </properties>
542 </profile>
543 <profile>
544 <id>no-coverage</id>
545 <activation>
546 <property>
547 <name>!coverage</name>
548 </property>
549 </activation>
550 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400551 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400552 </properties>
553 </profile>
554 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700555 <id>java8</id>
556 <activation>
557 <jdk>1.8</jdk>
558 </activation>
559 <properties>
560 <jdk.version>1.8</jdk.version>
561 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700562 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800563 </profiles>
564
vinayakbe5add8a2012-10-06 19:00:14 +0000565 <modules>
566 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000567 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500568 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000569 </modules>
570</project>