blob: 44d4f4f7e1dbf87db27843e4f1a086b42ddb05b2 [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>
AsterixDB Jenkins92a9a652017-08-07 17:23:07 -070024 <version>0.3.3-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
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 Maxona3435a32017-01-18 18:31:30 -080049 <tag>HEAD</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>
Michael Blowdd920be2017-06-07 15:04:33 -040054 <file.encoding>UTF-8</file.encoding>
Michael Blowb4c1fb02016-05-09 15:41:00 -070055 <jdk.version>1.8</jdk.version>
Michael Blow2b057012017-12-07 22:20:39 -050056 <javac.xlint.value>all</javac.xlint.value>
Michael Blow380b0a22016-08-02 13:05:52 -040057 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070058 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Dmitry Lychagin249be532017-05-31 14:57:14 -070059 <source-format.skip>false</source-format.skip>
Michael Blowdd920be2017-06-07 15:04:33 -040060 <skip.surefire.tests>${skipTests}</skip.surefire.tests>
Michael Blow7626d162017-12-10 14:26:56 -050061 <skip.testResources>${maven.test.skip}</skip.testResources>
Michael Blow7c15c132016-05-04 22:06:34 -040062
Michael Blowb4c1fb02016-05-09 15:41:00 -070063 <!-- Definition of tests in various categories which may be excluded -->
64 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
65 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
66 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
67 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
68 </global.test.excludes>
69 <!-- Versions under dependencymanagement or used in many projects via properties -->
70 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070071 <jacoco.version>0.7.6.201602180812</jacoco.version>
72 </properties>
73 <dependencyManagement>
74 <dependencies>
75 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080076 <groupId>io.netty</groupId>
77 <artifactId>netty-all</artifactId>
78 <version>4.1.6.Final</version>
79 </dependency>
80 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070081 <groupId>junit</groupId>
82 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050083 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070084 </dependency>
85 <dependency>
86 <groupId>org.apache.hadoop</groupId>
87 <artifactId>hadoop-yarn-client</artifactId>
88 <version>${hadoop.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.hadoop</groupId>
92 <artifactId>hadoop-client</artifactId>
93 <version>${hadoop.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>org.apache.hadoop</groupId>
97 <artifactId>hadoop-common</artifactId>
98 <version>${hadoop.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.hadoop</groupId>
102 <artifactId>hadoop-hdfs</artifactId>
103 <version>${hadoop.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.hadoop</groupId>
107 <artifactId>hadoop-minicluster</artifactId>
108 <version>${hadoop.version}</version>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.hadoop</groupId>
112 <artifactId>hadoop-mapreduce-client-core</artifactId>
113 <version>${hadoop.version}</version>
114 </dependency>
115 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400116 <groupId>org.apache.hadoop</groupId>
117 <artifactId>hadoop-hdfs</artifactId>
118 <version>${hadoop.version}</version>
119 <classifier>tests</classifier>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700123 <groupId>commons-io</groupId>
124 <artifactId>commons-io</artifactId>
Michael Blow204b2952017-12-07 20:17:47 -0500125 <version>2.6</version>
126 </dependency>
127 <dependency>
128 <groupId>commons-lang</groupId>
129 <artifactId>commons-lang</artifactId>
130 <version>2.6</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700131 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800132 <dependency>
133 <groupId>com.fasterxml.jackson.core</groupId>
134 <artifactId>jackson-databind</artifactId>
135 <version>2.8.4</version>
136 </dependency>
137 <dependency>
138 <groupId>com.fasterxml.jackson.core</groupId>
139 <artifactId>jackson-core</artifactId>
140 <version>2.8.4</version>
141 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500142 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500143 <groupId>com.fasterxml.jackson.core</groupId>
144 <artifactId>jackson-annotations</artifactId>
145 <version>2.8.4</version>
146 </dependency>
147 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500148 <groupId>com.google.guava</groupId>
149 <artifactId>guava</artifactId>
150 <version>18.0</version>
151 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500152 <dependency>
153 <groupId>org.apache.commons</groupId>
154 <artifactId>commons-lang3</artifactId>
Michael Blow204b2952017-12-07 20:17:47 -0500155 <version>3.7</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500156 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500157 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500158 <groupId>org.apache.commons</groupId>
159 <artifactId>commons-collections4</artifactId>
160 <version>4.1</version>
161 </dependency>
162 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800163 <groupId>org.apache.httpcomponents</groupId>
164 <artifactId>httpcore</artifactId>
165 <version>4.4.5</version>
166 </dependency>
167 <dependency>
168 <groupId>org.apache.httpcomponents</groupId>
169 <artifactId>httpclient</artifactId>
170 <version>4.5.2</version>
171 </dependency>
172 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500173 <groupId>org.apache.rat</groupId>
174 <artifactId>apache-rat-plugin</artifactId>
175 <version>0.12</version>
176 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500177 <dependency>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700178 <groupId>net.revelc.code.formatter</groupId>
179 <artifactId>formatter-maven-plugin</artifactId>
180 <version>2.0.1</version>
181 </dependency>
182 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500183 <groupId>args4j</groupId>
184 <artifactId>args4j</artifactId>
185 <version>2.33</version>
186 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300187 <dependency>
188 <groupId>org.apache.logging.log4j</groupId>
189 <artifactId>log4j-api</artifactId>
190 <version>2.10.0</version>
191 </dependency>
192 <dependency>
193 <groupId>org.apache.logging.log4j</groupId>
194 <artifactId>log4j-core</artifactId>
195 <version>2.10.0</version>
196 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700197 </dependencies>
198 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800199
vinayakbe5add8a2012-10-06 19:00:14 +0000200 <build>
201 <plugins>
202 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400203 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500204 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500205 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500206 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500207 <exclude>**/DEPENDENCIES</exclude>
208 </excludes>
209 </configuration>
210 </plugin>
211 <plugin>
212 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400213 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400214 <configuration>
215 <failOnWarning>true</failOnWarning>
216 <outputXML>true</outputXML>
217 </configuration>
218 <executions>
219 <execution>
220 <phase>process-test-classes</phase>
221 <goals>
222 <goal>analyze-only</goal>
223 </goals>
224 </execution>
225 </executions>
226 </plugin>
227 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700228 <groupId>org.apache.rat</groupId>
229 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700230 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700231 <execution>
232 <phase>validate</phase>
233 <goals>
234 <goal>check</goal>
235 </goals>
236 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700237 </executions>
238 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500239 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
240 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700241 <licenses>
Michael Blow5e17af22017-02-02 10:00:44 -0500242 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700243 </licenses>
244 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500245 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700246 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500247 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400248 <excludes combine.children="append">
249 <exclude>**/*.iml</exclude>
250 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700251 </configuration>
252 </plugin>
253 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700254 <groupId>org.apache.maven.plugins</groupId>
255 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700256 <configuration>
257 <failIfNoTests>false</failIfNoTests>
258 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800259 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700260 <argLine>-enableassertions -Xmx2048m
261 -Dfile.encoding=UTF-8
262 -Djava.util.logging.config.file=${user.home}/logging.properties
263 -Xdebug
264 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
265 ${coverageArgLine}
266 </argLine>
267 <includes>
268 <include>${global.test.includes},${test.includes}</include>
269 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500270 <excludes combine.children="append">
Chris Hilleryc48cc422014-03-21 22:47:23 -0700271 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800272 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400273 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700274 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700275 </plugin>
276 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700277 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700278 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700279 <configuration>
280 <source>${jdk.version}</source>
281 <target>${jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500282 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700283 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000284 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700285 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700286 <groupId>org.apache.maven.plugins</groupId>
287 <artifactId>maven-remote-resources-plugin</artifactId>
288 <executions>
289 <execution>
290 <goals>
291 <goal>process</goal>
292 </goals>
293 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500294 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700295 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700296 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500297 <properties>
298 <projectName>Apache Hyracks - ${project.name}</projectName>
299 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700300 </configuration>
301 </execution>
302 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800303 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400304 <plugin>
305 <groupId>org.apache.maven.plugins</groupId>
306 <artifactId>maven-checkstyle-plugin</artifactId>
307 <version>2.17</version>
308 <executions>
309 <execution>
310 <id>verify-style</id>
311 <phase>process-classes</phase>
312 <goals>
313 <goal>check</goal>
314 </goals>
315 </execution>
316 </executions>
317 <configuration>
318 <logViolationsToConsole>true</logViolationsToConsole>
319 <checkstyleRules>
320 <module name="Checker">
321 <!-- Checks for whitespace -->
322 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400323 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400324 </module>
325 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400326 <includes>**/*.java,**/*.jj</includes>
327 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400328 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
329 </configuration>
330 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400331 <plugin>
332 <groupId>org.apache.maven.plugins</groupId>
333 <artifactId>maven-enforcer-plugin</artifactId>
Michael Blow918c5b12017-10-30 14:51:13 -0400334 <version>3.0.0-M1</version>
Michael Blowf53c1c62016-06-17 16:51:59 -0400335 <executions>
336 <execution>
337 <id>enforce-versions</id>
338 <goals>
339 <goal>enforce</goal>
340 </goals>
341 <configuration>
342 <rules>
343 <requireMavenVersion>
344 <version>[3.3.9,)</version>
345 </requireMavenVersion>
346 </rules>
347 </configuration>
348 </execution>
349 </executions>
350 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500351 <plugin>
352 <groupId>org.apache.maven.plugins</groupId>
353 <artifactId>maven-resources-plugin</artifactId>
354 <executions>
355 <execution>
356 <id>default-testResources</id>
357 <goals>
358 <goal>testResources</goal>
359 </goals>
360 <configuration>
361 <skip>${skip.testResources}</skip>
362 </configuration>
363 </execution>
364 </executions>
365 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000366 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700367 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700368 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500369 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800370 <groupId>org.apache.maven.plugins</groupId>
371 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400372 <version>3.7.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800373 </plugin>
374 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500375 <groupId>org.apache.rat</groupId>
376 <artifactId>apache-rat-plugin</artifactId>
377 <version>0.12</version>
378 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700379 <plugin>
380 <groupId>net.revelc.code.formatter</groupId>
381 <artifactId>formatter-maven-plugin</artifactId>
382 <version>2.0.1</version>
383 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700384 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
385 <plugin>
386 <groupId>org.eclipse.m2e</groupId>
387 <artifactId>lifecycle-mapping</artifactId>
388 <version>1.0.0</version>
389 <configuration>
390 <lifecycleMappingMetadata>
391 <pluginExecutions>
392 <pluginExecution>
393 <pluginExecutionFilter>
394 <groupId>org.apache.rat</groupId>
395 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400396 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700397 <goals>
398 <goal>check</goal>
399 </goals>
400 </pluginExecutionFilter>
401 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400402 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700403 </action>
404 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400405 <pluginExecution>
406 <pluginExecutionFilter>
407 <groupId>org.apache.maven.plugins</groupId>
408 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400409 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400410 <goals>
411 <goal>check</goal>
412 </goals>
413 </pluginExecutionFilter>
414 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400415 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400416 </action>
417 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700418 <pluginExecution>
419 <pluginExecutionFilter>
420 <groupId>org.apache.maven.plugins</groupId>
421 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400422 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700423 <goals>
424 <goal>analyze-only</goal>
425 </goals>
426 </pluginExecutionFilter>
427 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800428 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700429 </action>
430 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700431 </pluginExecutions>
432 </lifecycleMappingMetadata>
433 </configuration>
434 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800435 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500436 <groupId>org.codehaus.mojo</groupId>
437 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400438 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800439 </plugin>
440 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500441 <groupId>org.apache.maven.plugins</groupId>
442 <artifactId>maven-scm-plugin</artifactId>
443 <version>1.9.5</version>
444 </plugin>
445 <plugin>
446 <groupId>org.codehaus.mojo</groupId>
447 <artifactId>appassembler-maven-plugin</artifactId>
448 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800449 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400450 <plugin>
451 <groupId>org.apache.maven.plugins</groupId>
452 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400453 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400454 </plugin>
455 <plugin>
456 <groupId>org.apache.maven.plugins</groupId>
457 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400458 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400459 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400460 <plugin>
461 <groupId>org.apache.hyracks</groupId>
462 <artifactId>license-automation-plugin</artifactId>
463 <version>${project.version}</version>
464 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400465 <plugin>
466 <groupId>org.apache.maven.plugins</groupId>
467 <artifactId>maven-assembly-plugin</artifactId>
468 <version>3.1.0</version>
469 </plugin>
470 <plugin>
471 <groupId>org.apache.maven.plugins</groupId>
472 <artifactId>maven-antrun-plugin</artifactId>
473 <version>1.8</version>
474 </plugin>
475 <plugin>
476 <groupId>org.apache.maven.plugins</groupId>
477 <artifactId>maven-clean-plugin</artifactId>
478 <version>3.0.0</version>
479 </plugin>
480 <plugin>
481 <groupId>org.apache.maven.plugins</groupId>
482 <artifactId>maven-jar-plugin</artifactId>
483 <version>3.0.2</version>
484 </plugin>
485 <plugin>
486 <groupId>org.codehaus.mojo</groupId>
487 <artifactId>build-helper-maven-plugin</artifactId>
488 <version>3.0.0</version>
489 </plugin>
490 <plugin>
491 <groupId>org.apache.maven.plugins</groupId>
492 <artifactId>maven-dependency-plugin</artifactId>
493 <version>3.0.2</version>
494 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400495 <plugin>
496 <groupId>org.apache.maven.doxia</groupId>
497 <artifactId>doxia-maven-plugin</artifactId>
498 <version>1.1.4</version>
499 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700500 </plugins>
501 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000502 </build>
503
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800504 <profiles>
505 <profile>
506 <id>hanging-pregelix-tests</id>
507 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400508 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800509 </properties>
510 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700511 <profile>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700512 <id>source-format</id>
513 <activation>
514 <activeByDefault>false</activeByDefault>
515 </activation>
516 <properties>
517 <source-format.goal>format</source-format.goal>
518 </properties>
519 <build>
520 <plugins>
521 <plugin>
522 <groupId>net.revelc.code.formatter</groupId>
523 <artifactId>formatter-maven-plugin</artifactId>
524 <executions>
525 <execution>
526 <goals>
527 <goal>${source-format.goal}</goal>
528 </goals>
529 </execution>
530 </executions>
531 <configuration>
532 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
533 <skipFormatting>${source-format.skip}</skipFormatting>
534 </configuration>
535 </plugin>
536 </plugins>
537 </build>
538 </profile>
539 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400540 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700541 <activation>
542 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400543 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700544 </file>
545 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400546 <properties>
547 <skip.assembly>true</skip.assembly>
548 </properties>
549 </profile>
550 <profile>
551 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700552 <build>
553 <plugins>
554 <plugin>
555 <groupId>org.apache.maven.plugins</groupId>
556 <artifactId>maven-assembly-plugin</artifactId>
557 <!-- We override the configuration plugin to override the descriptor to use for building
558 the source release zip. Specifically, we would like to control the inclusions/exclusions.
559 For example, we exclude the KEYS file from the zip -->
560 <executions>
561 <execution>
562 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
563 the apache parent POM under the apache-release profile -->
564 <id>source-release-assembly</id>
565 <phase>package</phase>
566 <goals>
567 <goal>single</goal>
568 </goals>
569 <!-- combine.self should be override to replace the configuration in the parent POM -->
570 <configuration combine.self="override">
571 <descriptors>
572 <descriptor>src/main/assembly/source.xml</descriptor>
573 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400574 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700575 </configuration>
576 </execution>
577 </executions>
578 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700579 <plugin>
580 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800581 <artifactId>maven-gpg-plugin</artifactId>
582 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700583 <executions>
584 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800585 <id>sign-artifacts</id>
586 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700587 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800588 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700589 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700590 </execution>
591 </executions>
592 </plugin>
593 </plugins>
594 </build>
595 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700596 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400597 <id>coverage</id>
598 <activation>
599 <property>
600 <name>coverage</name>
601 </property>
602 </activation>
603 <build>
604 <plugins>
605 <plugin>
606 <groupId>org.jacoco</groupId>
607 <artifactId>jacoco-maven-plugin</artifactId>
608 <version>${jacoco.version}</version>
609 <executions>
610 <execution>
611 <id>default-prepare-agent</id>
612 <goals>
613 <goal>prepare-agent</goal>
614 </goals>
615 <configuration>
616 <propertyName>coverageArgLine</propertyName>
617 </configuration>
618 </execution>
619 <execution>
620 <id>default-prepare-agent-integration</id>
621 <goals>
622 <goal>prepare-agent-integration</goal>
623 </goals>
624 <configuration>
625 <propertyName>coverageArgLine</propertyName>
626 </configuration>
627 </execution>
628 </executions>
629 </plugin>
630 </plugins>
631 </build>
632 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400633 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400634 </properties>
635 </profile>
636 <profile>
637 <id>no-coverage</id>
638 <activation>
639 <property>
640 <name>!coverage</name>
641 </property>
642 </activation>
643 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400644 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400645 </properties>
646 </profile>
647 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700648 <id>java8</id>
649 <activation>
650 <jdk>1.8</jdk>
651 </activation>
652 <properties>
653 <jdk.version>1.8</jdk.version>
654 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700655 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800656 </profiles>
657
vinayakbe5add8a2012-10-06 19:00:14 +0000658 <modules>
659 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000660 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500661 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000662 </modules>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500663
vinayakbe5add8a2012-10-06 19:00:14 +0000664</project>