blob: 28b60d3dd5ec1edf2d86a857be6647ffa6abc802 [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>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700187 </dependencies>
188 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800189
vinayakbe5add8a2012-10-06 19:00:14 +0000190 <build>
191 <plugins>
192 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400193 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500194 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500195 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500196 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500197 <exclude>**/DEPENDENCIES</exclude>
198 </excludes>
199 </configuration>
200 </plugin>
201 <plugin>
202 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400203 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400204 <configuration>
205 <failOnWarning>true</failOnWarning>
206 <outputXML>true</outputXML>
207 </configuration>
208 <executions>
209 <execution>
210 <phase>process-test-classes</phase>
211 <goals>
212 <goal>analyze-only</goal>
213 </goals>
214 </execution>
215 </executions>
216 </plugin>
217 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700218 <groupId>org.apache.rat</groupId>
219 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700220 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700221 <execution>
222 <phase>validate</phase>
223 <goals>
224 <goal>check</goal>
225 </goals>
226 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700227 </executions>
228 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500229 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
230 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700231 <licenses>
Michael Blow5e17af22017-02-02 10:00:44 -0500232 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700233 </licenses>
234 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500235 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700236 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500237 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400238 <excludes combine.children="append">
239 <exclude>**/*.iml</exclude>
240 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700241 </configuration>
242 </plugin>
243 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700244 <groupId>org.apache.maven.plugins</groupId>
245 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700246 <configuration>
247 <failIfNoTests>false</failIfNoTests>
248 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800249 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700250 <argLine>-enableassertions -Xmx2048m
251 -Dfile.encoding=UTF-8
252 -Djava.util.logging.config.file=${user.home}/logging.properties
253 -Xdebug
254 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
255 ${coverageArgLine}
256 </argLine>
257 <includes>
258 <include>${global.test.includes},${test.includes}</include>
259 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500260 <excludes combine.children="append">
Chris Hilleryc48cc422014-03-21 22:47:23 -0700261 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800262 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400263 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700264 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700265 </plugin>
266 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700267 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700268 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700269 <configuration>
270 <source>${jdk.version}</source>
271 <target>${jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500272 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700273 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000274 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700275 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700276 <groupId>org.apache.maven.plugins</groupId>
277 <artifactId>maven-remote-resources-plugin</artifactId>
278 <executions>
279 <execution>
280 <goals>
281 <goal>process</goal>
282 </goals>
283 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500284 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700285 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700286 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500287 <properties>
288 <projectName>Apache Hyracks - ${project.name}</projectName>
289 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700290 </configuration>
291 </execution>
292 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800293 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400294 <plugin>
295 <groupId>org.apache.maven.plugins</groupId>
296 <artifactId>maven-checkstyle-plugin</artifactId>
297 <version>2.17</version>
298 <executions>
299 <execution>
300 <id>verify-style</id>
301 <phase>process-classes</phase>
302 <goals>
303 <goal>check</goal>
304 </goals>
305 </execution>
306 </executions>
307 <configuration>
308 <logViolationsToConsole>true</logViolationsToConsole>
309 <checkstyleRules>
310 <module name="Checker">
311 <!-- Checks for whitespace -->
312 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400313 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400314 </module>
315 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400316 <includes>**/*.java,**/*.jj</includes>
317 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400318 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
319 </configuration>
320 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400321 <plugin>
322 <groupId>org.apache.maven.plugins</groupId>
323 <artifactId>maven-enforcer-plugin</artifactId>
Michael Blow918c5b12017-10-30 14:51:13 -0400324 <version>3.0.0-M1</version>
Michael Blowf53c1c62016-06-17 16:51:59 -0400325 <executions>
326 <execution>
327 <id>enforce-versions</id>
328 <goals>
329 <goal>enforce</goal>
330 </goals>
331 <configuration>
332 <rules>
333 <requireMavenVersion>
334 <version>[3.3.9,)</version>
335 </requireMavenVersion>
336 </rules>
337 </configuration>
338 </execution>
339 </executions>
340 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500341 <plugin>
342 <groupId>org.apache.maven.plugins</groupId>
343 <artifactId>maven-resources-plugin</artifactId>
344 <executions>
345 <execution>
346 <id>default-testResources</id>
347 <goals>
348 <goal>testResources</goal>
349 </goals>
350 <configuration>
351 <skip>${skip.testResources}</skip>
352 </configuration>
353 </execution>
354 </executions>
355 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000356 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700357 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700358 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500359 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800360 <groupId>org.apache.maven.plugins</groupId>
361 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400362 <version>3.7.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800363 </plugin>
364 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500365 <groupId>org.apache.rat</groupId>
366 <artifactId>apache-rat-plugin</artifactId>
367 <version>0.12</version>
368 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700369 <plugin>
370 <groupId>net.revelc.code.formatter</groupId>
371 <artifactId>formatter-maven-plugin</artifactId>
372 <version>2.0.1</version>
373 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700374 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
375 <plugin>
376 <groupId>org.eclipse.m2e</groupId>
377 <artifactId>lifecycle-mapping</artifactId>
378 <version>1.0.0</version>
379 <configuration>
380 <lifecycleMappingMetadata>
381 <pluginExecutions>
382 <pluginExecution>
383 <pluginExecutionFilter>
384 <groupId>org.apache.rat</groupId>
385 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400386 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700387 <goals>
388 <goal>check</goal>
389 </goals>
390 </pluginExecutionFilter>
391 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400392 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700393 </action>
394 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400395 <pluginExecution>
396 <pluginExecutionFilter>
397 <groupId>org.apache.maven.plugins</groupId>
398 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400399 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400400 <goals>
401 <goal>check</goal>
402 </goals>
403 </pluginExecutionFilter>
404 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400405 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400406 </action>
407 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700408 <pluginExecution>
409 <pluginExecutionFilter>
410 <groupId>org.apache.maven.plugins</groupId>
411 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400412 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700413 <goals>
414 <goal>analyze-only</goal>
415 </goals>
416 </pluginExecutionFilter>
417 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800418 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700419 </action>
420 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700421 </pluginExecutions>
422 </lifecycleMappingMetadata>
423 </configuration>
424 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800425 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500426 <groupId>org.codehaus.mojo</groupId>
427 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400428 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800429 </plugin>
430 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500431 <groupId>org.apache.maven.plugins</groupId>
432 <artifactId>maven-scm-plugin</artifactId>
433 <version>1.9.5</version>
434 </plugin>
435 <plugin>
436 <groupId>org.codehaus.mojo</groupId>
437 <artifactId>appassembler-maven-plugin</artifactId>
438 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800439 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400440 <plugin>
441 <groupId>org.apache.maven.plugins</groupId>
442 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400443 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400444 </plugin>
445 <plugin>
446 <groupId>org.apache.maven.plugins</groupId>
447 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400448 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400449 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400450 <plugin>
451 <groupId>org.apache.hyracks</groupId>
452 <artifactId>license-automation-plugin</artifactId>
453 <version>${project.version}</version>
454 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400455 <plugin>
456 <groupId>org.apache.maven.plugins</groupId>
457 <artifactId>maven-assembly-plugin</artifactId>
458 <version>3.1.0</version>
459 </plugin>
460 <plugin>
461 <groupId>org.apache.maven.plugins</groupId>
462 <artifactId>maven-antrun-plugin</artifactId>
463 <version>1.8</version>
464 </plugin>
465 <plugin>
466 <groupId>org.apache.maven.plugins</groupId>
467 <artifactId>maven-clean-plugin</artifactId>
468 <version>3.0.0</version>
469 </plugin>
470 <plugin>
471 <groupId>org.apache.maven.plugins</groupId>
472 <artifactId>maven-jar-plugin</artifactId>
473 <version>3.0.2</version>
474 </plugin>
475 <plugin>
476 <groupId>org.codehaus.mojo</groupId>
477 <artifactId>build-helper-maven-plugin</artifactId>
478 <version>3.0.0</version>
479 </plugin>
480 <plugin>
481 <groupId>org.apache.maven.plugins</groupId>
482 <artifactId>maven-dependency-plugin</artifactId>
483 <version>3.0.2</version>
484 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400485 <plugin>
486 <groupId>org.apache.maven.doxia</groupId>
487 <artifactId>doxia-maven-plugin</artifactId>
488 <version>1.1.4</version>
489 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700490 </plugins>
491 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000492 </build>
493
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800494 <profiles>
495 <profile>
496 <id>hanging-pregelix-tests</id>
497 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400498 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800499 </properties>
500 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700501 <profile>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700502 <id>source-format</id>
503 <activation>
504 <activeByDefault>false</activeByDefault>
505 </activation>
506 <properties>
507 <source-format.goal>format</source-format.goal>
508 </properties>
509 <build>
510 <plugins>
511 <plugin>
512 <groupId>net.revelc.code.formatter</groupId>
513 <artifactId>formatter-maven-plugin</artifactId>
514 <executions>
515 <execution>
516 <goals>
517 <goal>${source-format.goal}</goal>
518 </goals>
519 </execution>
520 </executions>
521 <configuration>
522 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
523 <skipFormatting>${source-format.skip}</skipFormatting>
524 </configuration>
525 </plugin>
526 </plugins>
527 </build>
528 </profile>
529 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400530 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700531 <activation>
532 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400533 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700534 </file>
535 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400536 <properties>
537 <skip.assembly>true</skip.assembly>
538 </properties>
539 </profile>
540 <profile>
541 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700542 <build>
543 <plugins>
544 <plugin>
545 <groupId>org.apache.maven.plugins</groupId>
546 <artifactId>maven-assembly-plugin</artifactId>
547 <!-- We override the configuration plugin to override the descriptor to use for building
548 the source release zip. Specifically, we would like to control the inclusions/exclusions.
549 For example, we exclude the KEYS file from the zip -->
550 <executions>
551 <execution>
552 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
553 the apache parent POM under the apache-release profile -->
554 <id>source-release-assembly</id>
555 <phase>package</phase>
556 <goals>
557 <goal>single</goal>
558 </goals>
559 <!-- combine.self should be override to replace the configuration in the parent POM -->
560 <configuration combine.self="override">
561 <descriptors>
562 <descriptor>src/main/assembly/source.xml</descriptor>
563 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400564 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700565 </configuration>
566 </execution>
567 </executions>
568 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700569 <plugin>
570 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800571 <artifactId>maven-gpg-plugin</artifactId>
572 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700573 <executions>
574 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800575 <id>sign-artifacts</id>
576 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700577 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800578 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700579 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700580 </execution>
581 </executions>
582 </plugin>
583 </plugins>
584 </build>
585 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700586 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400587 <id>coverage</id>
588 <activation>
589 <property>
590 <name>coverage</name>
591 </property>
592 </activation>
593 <build>
594 <plugins>
595 <plugin>
596 <groupId>org.jacoco</groupId>
597 <artifactId>jacoco-maven-plugin</artifactId>
598 <version>${jacoco.version}</version>
599 <executions>
600 <execution>
601 <id>default-prepare-agent</id>
602 <goals>
603 <goal>prepare-agent</goal>
604 </goals>
605 <configuration>
606 <propertyName>coverageArgLine</propertyName>
607 </configuration>
608 </execution>
609 <execution>
610 <id>default-prepare-agent-integration</id>
611 <goals>
612 <goal>prepare-agent-integration</goal>
613 </goals>
614 <configuration>
615 <propertyName>coverageArgLine</propertyName>
616 </configuration>
617 </execution>
618 </executions>
619 </plugin>
620 </plugins>
621 </build>
622 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400623 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400624 </properties>
625 </profile>
626 <profile>
627 <id>no-coverage</id>
628 <activation>
629 <property>
630 <name>!coverage</name>
631 </property>
632 </activation>
633 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400634 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400635 </properties>
636 </profile>
637 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700638 <id>java8</id>
639 <activation>
640 <jdk>1.8</jdk>
641 </activation>
642 <properties>
643 <jdk.version>1.8</jdk.version>
644 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700645 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800646 </profiles>
647
vinayakbe5add8a2012-10-06 19:00:14 +0000648 <modules>
649 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000650 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500651 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000652 </modules>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500653
vinayakbe5add8a2012-10-06 19:00:14 +0000654</project>