blob: 66cbbf20eefab1c86532ecf6761b6f8c85170eec [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>
Michael Blowc3dfd4b2017-01-17 17:19:49 -050023 <artifactId>apache-hyracks</artifactId>
Ian Maxondef643d2017-01-18 18:31:11 -080024 <version>0.3.0</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
Ian Maxon4b228432017-01-16 13:35:16 -080045 <scm>
46 <connection>scm:git:https://github.com/apache/asterixdb</connection>
47 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
48 <url>https://github.com/apache/asterixdb</url>
Ian Maxondef643d2017-01-18 18:31:11 -080049 <tag>apache-hyracks-0.3.0-rc2</tag>
Ian Maxon4b228432017-01-16 13:35:16 -080050 </scm>
51
Michael Blowb4c1fb02016-05-09 15:41:00 -070052 <properties>
53 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
54 <jdk.version>1.8</jdk.version>
Michael Blow380b0a22016-08-02 13:05:52 -040055 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070056 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow7c15c132016-05-04 22:06:34 -040057
Michael Blowb4c1fb02016-05-09 15:41:00 -070058 <!-- Definition of tests in various categories which may be excluded -->
59 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
60 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
61 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
62 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
63 </global.test.excludes>
64 <!-- Versions under dependencymanagement or used in many projects via properties -->
65 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow599ef8f2017-01-12 11:02:53 -050067 <jetty.version>9.3.11.v20160721</jetty.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070068 </properties>
69 <dependencyManagement>
70 <dependencies>
71 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050072 <groupId>org.eclipse.jetty</groupId>
73 <artifactId>jetty-server</artifactId>
74 <version>${jetty.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.eclipse.jetty</groupId>
78 <artifactId>jetty-servlet</artifactId>
79 <version>${jetty.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.eclipse.jetty</groupId>
83 <artifactId>jetty-http</artifactId>
84 <version>${jetty.version}</version>
85 </dependency>
86 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070087 <groupId>junit</groupId>
88 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050089 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070090 </dependency>
91 <dependency>
92 <groupId>org.apache.hadoop</groupId>
93 <artifactId>hadoop-yarn-client</artifactId>
94 <version>${hadoop.version}</version>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.hadoop</groupId>
98 <artifactId>hadoop-client</artifactId>
99 <version>${hadoop.version}</version>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.hadoop</groupId>
103 <artifactId>hadoop-common</artifactId>
104 <version>${hadoop.version}</version>
105 </dependency>
106 <dependency>
107 <groupId>org.apache.hadoop</groupId>
108 <artifactId>hadoop-hdfs</artifactId>
109 <version>${hadoop.version}</version>
110 </dependency>
111 <dependency>
112 <groupId>org.apache.hadoop</groupId>
113 <artifactId>hadoop-minicluster</artifactId>
114 <version>${hadoop.version}</version>
115 </dependency>
116 <dependency>
117 <groupId>org.apache.hadoop</groupId>
118 <artifactId>hadoop-mapreduce-client-core</artifactId>
119 <version>${hadoop.version}</version>
120 </dependency>
121 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400122 <groupId>org.apache.hadoop</groupId>
123 <artifactId>hadoop-hdfs</artifactId>
124 <version>${hadoop.version}</version>
125 <classifier>tests</classifier>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700129 <groupId>commons-io</groupId>
130 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500131 <version>2.5</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700132 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800133 <dependency>
134 <groupId>com.fasterxml.jackson.core</groupId>
135 <artifactId>jackson-databind</artifactId>
136 <version>2.8.4</version>
137 </dependency>
138 <dependency>
139 <groupId>com.fasterxml.jackson.core</groupId>
140 <artifactId>jackson-core</artifactId>
141 <version>2.8.4</version>
142 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500143 <dependency>
144 <groupId>com.google.guava</groupId>
145 <artifactId>guava</artifactId>
146 <version>18.0</version>
147 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500148 <dependency>
149 <groupId>org.apache.commons</groupId>
150 <artifactId>commons-lang3</artifactId>
151 <version>3.5</version>
152 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700153 </dependencies>
154 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800155
vinayakbe5add8a2012-10-06 19:00:14 +0000156 <build>
157 <plugins>
158 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400159 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500160 <artifactId>maven-jar-plugin</artifactId>
161 <version>3.0.0</version>
162 <configuration>
163 <excludes>
164 <exclude>**/DEPENDENCIES</exclude>
165 </excludes>
166 </configuration>
167 </plugin>
168 <plugin>
169 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400170 <artifactId>maven-dependency-plugin</artifactId>
171 <version>2.10</version>
172 <configuration>
173 <failOnWarning>true</failOnWarning>
174 <outputXML>true</outputXML>
175 </configuration>
176 <executions>
177 <execution>
178 <phase>process-test-classes</phase>
179 <goals>
180 <goal>analyze-only</goal>
181 </goals>
182 </execution>
183 </executions>
184 </plugin>
185 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800186 <groupId>org.codehaus.mojo</groupId>
187 <artifactId>versions-maven-plugin</artifactId>
188 <version>1.2</version>
189 </plugin>
190 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700191 <groupId>org.apache.rat</groupId>
192 <artifactId>apache-rat-plugin</artifactId>
193 <version>0.11</version>
194 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700195 <execution>
196 <phase>validate</phase>
197 <goals>
198 <goal>check</goal>
199 </goals>
200 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700201 </executions>
202 <configuration>
203 <licenses>
204 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
205 <licenseFamilyCategory>MIT</licenseFamilyCategory>
206 <licenseFamilyName>The MIT License</licenseFamilyName>
207 <notes>For JQuery MIT/GPL2 Dual License</notes>
208 <patterns>
209 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
210 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
211 <pattern>http://jquery.org/license</pattern>
212 <pattern>Dual licensed under the MIT</pattern>
213 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
214 </patterns>
215 </license>
216 </licenses>
217 <licenseFamilies>
218 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
219 <familyName>The MIT License</familyName>
220 </licenseFamily>
221 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
222 <familyName>Apache License Version 2.0</familyName>
223 </licenseFamily>
224 </licenseFamilies>
Ian Maxon9e37c962015-11-25 07:38:37 -0800225 <excludeSubProjects>false</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700226 <excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700227 <exclude>**/*.conf</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700228 <exclude>**/*.iml</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700229 <exclude>**/*.job</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700230 <exclude>**/*.prefs</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700231 <exclude>**/.classpath</exclude>
232 <exclude>**/.project</exclude>
233 <exclude>**/.settings/**</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700234 <exclude>**/actual/conf.xml</exclude>
235 <exclude>**/actual/customer_result/part-*</exclude>
236 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
237 <exclude>**/ClusterControllerService/**</exclude>
238 <exclude>**/data/**/*.ddl</exclude>
239 <exclude>**/data/**/*.tbl</exclude>
240 <exclude>**/data/**/*.tsv</exclude>
241 <exclude>**/data/**/*.txt</exclude>
242 <exclude>**/data/*.txt</exclude>
243 <exclude>**/data/dfs/**</exclude>
244 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
245 <exclude>**/invIndex*/**</exclude>
246 <exclude>**/javascript/adminconsole/*.js</exclude>
247 <exclude>**/javascript/flot/*.js</exclude>
248 <exclude>**/javascript/jquery/*.js</exclude>
249 <exclude>**/javascript/jsplumb/*.js</exclude>
250 <exclude>**/output/**</exclude>
251 <exclude>**/src/main/resources/*.cleaned</exclude>
252 <exclude>**/src/main/resources/conf/*</exclude>
253 <exclude>**/src/test/resources/data/**</exclude>
254 <exclude>**/src/test/resources/expected/**</exclude>
255 <exclude>**/src/test/resources/results/**</exclude>
256 <exclude>**/stylesheet/jquery-ui/**</exclude>
257 <exclude>**/target/**</exclude>
258 <exclude>**/testcases/*.piglet</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700259 <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude>
260 <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude>
261 <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude>
262 <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude>
263 <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude>
264 <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude>
265 <exclude>ClusterControllerService/logs/jobs/*.log</exclude>
266 <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude>
267 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude>
268 <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 -0700269 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/stylesheet/json.human.css</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700270 <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude>
271 <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude>
272 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude>
273 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude>
274 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude>
275 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude>
276 <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude>
277 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude>
278 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude>
279 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude>
280 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude>
281 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude>
282 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude>
283 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude>
284 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude>
285 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700286 </configuration>
287 </plugin>
288 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700289 <groupId>org.apache.maven.plugins</groupId>
290 <artifactId>maven-surefire-plugin</artifactId>
291 <version>2.16</version>
292 <configuration>
293 <failIfNoTests>false</failIfNoTests>
294 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800295 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700296 <argLine>-enableassertions -Xmx2048m
297 -Dfile.encoding=UTF-8
298 -Djava.util.logging.config.file=${user.home}/logging.properties
299 -Xdebug
300 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
301 ${coverageArgLine}
302 </argLine>
303 <includes>
304 <include>${global.test.includes},${test.includes}</include>
305 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800306 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700307 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800308 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700309 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700310 </plugin>
311 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700312 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700313 <artifactId>maven-compiler-plugin</artifactId>
314 <version>3.1</version>
315 <configuration>
316 <source>${jdk.version}</source>
317 <target>${jdk.version}</target>
318 <compilerArgument>-Xlint:all</compilerArgument>
319 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000320 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700321 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800322 <artifactId>maven-resources-plugin</artifactId>
323 <version>2.7</version>
324 <executions>
325 <execution>
326 <id>copy-resources</id>
327 <phase>validate</phase>
328 <goals>
329 <goal>copy-resources</goal>
330 </goals>
331 <configuration>
332 <outputDirectory>target</outputDirectory>
333 <resources>
334 <resource>
335 <directory>${root.dir}/src/main/appended-resources</directory>
336 <!-- <filtering>true</filtering> -->
337 </resource>
338 </resources>
339 </configuration>
340 </execution>
341 </executions>
342 </plugin>
343 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700344 <groupId>org.apache.maven.plugins</groupId>
345 <artifactId>maven-remote-resources-plugin</artifactId>
346 <executions>
347 <execution>
348 <goals>
349 <goal>process</goal>
350 </goals>
351 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500352 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700353 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700354 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500355 <properties>
356 <projectName>Apache Hyracks - ${project.name}</projectName>
357 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700358 </configuration>
359 </execution>
360 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800361 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400362 <plugin>
363 <groupId>org.apache.maven.plugins</groupId>
364 <artifactId>maven-checkstyle-plugin</artifactId>
365 <version>2.17</version>
366 <executions>
367 <execution>
368 <id>verify-style</id>
369 <phase>process-classes</phase>
370 <goals>
371 <goal>check</goal>
372 </goals>
373 </execution>
374 </executions>
375 <configuration>
376 <logViolationsToConsole>true</logViolationsToConsole>
377 <checkstyleRules>
378 <module name="Checker">
379 <!-- Checks for whitespace -->
380 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400381 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400382 </module>
383 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400384 <includes>**/*.java,**/*.jj</includes>
385 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400386 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
387 </configuration>
388 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400389 <plugin>
390 <groupId>org.apache.maven.plugins</groupId>
391 <artifactId>maven-enforcer-plugin</artifactId>
392 <version>1.4.1</version>
393 <executions>
394 <execution>
395 <id>enforce-versions</id>
396 <goals>
397 <goal>enforce</goal>
398 </goals>
399 <configuration>
400 <rules>
401 <requireMavenVersion>
402 <version>[3.3.9,)</version>
403 </requireMavenVersion>
404 </rules>
405 </configuration>
406 </execution>
407 </executions>
408 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000409 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700410 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700411 <plugins>
412 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
413 <plugin>
414 <groupId>org.eclipse.m2e</groupId>
415 <artifactId>lifecycle-mapping</artifactId>
416 <version>1.0.0</version>
417 <configuration>
418 <lifecycleMappingMetadata>
419 <pluginExecutions>
420 <pluginExecution>
421 <pluginExecutionFilter>
422 <groupId>org.apache.rat</groupId>
423 <artifactId>apache-rat-plugin</artifactId>
424 <versionRange>[0.11,)</versionRange>
425 <goals>
426 <goal>check</goal>
427 </goals>
428 </pluginExecutionFilter>
429 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400430 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700431 </action>
432 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400433 <pluginExecution>
434 <pluginExecutionFilter>
435 <groupId>org.apache.maven.plugins</groupId>
436 <artifactId>maven-checkstyle-plugin</artifactId>
437 <versionRange>[2.17,)</versionRange>
438 <goals>
439 <goal>check</goal>
440 </goals>
441 </pluginExecutionFilter>
442 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400443 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400444 </action>
445 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700446 <pluginExecution>
447 <pluginExecutionFilter>
448 <groupId>org.apache.maven.plugins</groupId>
449 <artifactId>maven-dependency-plugin</artifactId>
450 <versionRange>[2.10,)</versionRange>
451 <goals>
452 <goal>analyze-only</goal>
453 </goals>
454 </pluginExecutionFilter>
455 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800456 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700457 </action>
458 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700459 </pluginExecutions>
460 </lifecycleMappingMetadata>
461 </configuration>
462 </plugin>
463 </plugins>
464 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000465 </build>
466
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800467 <profiles>
468 <profile>
469 <id>hanging-pregelix-tests</id>
470 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400471 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800472 </properties>
473 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700474 <profile>
475 <id>asterix-release</id>
Michael Blow1e34ec22016-05-15 19:15:40 -0700476 <activation>
477 <file>
478 <exists>src/main/assembly/source.xml</exists>
479 </file>
480 </activation>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700481 <build>
482 <plugins>
483 <plugin>
484 <groupId>org.apache.maven.plugins</groupId>
485 <artifactId>maven-assembly-plugin</artifactId>
486 <!-- We override the configuration plugin to override the descriptor to use for building
487 the source release zip. Specifically, we would like to control the inclusions/exclusions.
488 For example, we exclude the KEYS file from the zip -->
489 <executions>
490 <execution>
491 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
492 the apache parent POM under the apache-release profile -->
493 <id>source-release-assembly</id>
494 <phase>package</phase>
495 <goals>
496 <goal>single</goal>
497 </goals>
498 <!-- combine.self should be override to replace the configuration in the parent POM -->
499 <configuration combine.self="override">
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700500 <descriptors>
501 <descriptor>src/main/assembly/source.xml</descriptor>
502 </descriptors>
503 </configuration>
504 </execution>
505 </executions>
506 </plugin>
507 </plugins>
508 </build>
509 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700510 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400511 <id>coverage</id>
512 <activation>
513 <property>
514 <name>coverage</name>
515 </property>
516 </activation>
517 <build>
518 <plugins>
519 <plugin>
520 <groupId>org.jacoco</groupId>
521 <artifactId>jacoco-maven-plugin</artifactId>
522 <version>${jacoco.version}</version>
523 <executions>
524 <execution>
525 <id>default-prepare-agent</id>
526 <goals>
527 <goal>prepare-agent</goal>
528 </goals>
529 <configuration>
530 <propertyName>coverageArgLine</propertyName>
531 </configuration>
532 </execution>
533 <execution>
534 <id>default-prepare-agent-integration</id>
535 <goals>
536 <goal>prepare-agent-integration</goal>
537 </goals>
538 <configuration>
539 <propertyName>coverageArgLine</propertyName>
540 </configuration>
541 </execution>
542 </executions>
543 </plugin>
544 </plugins>
545 </build>
546 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400547 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400548 </properties>
549 </profile>
550 <profile>
551 <id>no-coverage</id>
552 <activation>
553 <property>
554 <name>!coverage</name>
555 </property>
556 </activation>
557 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400558 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400559 </properties>
560 </profile>
561 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700562 <id>java8</id>
563 <activation>
564 <jdk>1.8</jdk>
565 </activation>
566 <properties>
567 <jdk.version>1.8</jdk.version>
568 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700569 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800570 </profiles>
571
vinayakbe5add8a2012-10-06 19:00:14 +0000572 <modules>
573 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000574 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500575 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000576 </modules>
577</project>