blob: 9de65260dc0defd4c50f4ee45329277dac870879 [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 Blow7c15c132016-05-04 22:06:34 -040061
Michael Blowb4c1fb02016-05-09 15:41:00 -070062 <!-- Definition of tests in various categories which may be excluded -->
63 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
64 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
65 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
66 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
67 </global.test.excludes>
68 <!-- Versions under dependencymanagement or used in many projects via properties -->
69 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070070 <jacoco.version>0.7.6.201602180812</jacoco.version>
71 </properties>
72 <dependencyManagement>
73 <dependencies>
74 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080075 <groupId>io.netty</groupId>
76 <artifactId>netty-all</artifactId>
77 <version>4.1.6.Final</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 Blow204b2952017-12-07 20:17:47 -0500124 <version>2.6</version>
125 </dependency>
126 <dependency>
127 <groupId>commons-lang</groupId>
128 <artifactId>commons-lang</artifactId>
129 <version>2.6</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700130 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800131 <dependency>
132 <groupId>com.fasterxml.jackson.core</groupId>
133 <artifactId>jackson-databind</artifactId>
134 <version>2.8.4</version>
135 </dependency>
136 <dependency>
137 <groupId>com.fasterxml.jackson.core</groupId>
138 <artifactId>jackson-core</artifactId>
139 <version>2.8.4</version>
140 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500141 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500142 <groupId>com.fasterxml.jackson.core</groupId>
143 <artifactId>jackson-annotations</artifactId>
144 <version>2.8.4</version>
145 </dependency>
146 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500147 <groupId>com.google.guava</groupId>
148 <artifactId>guava</artifactId>
149 <version>18.0</version>
150 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500151 <dependency>
152 <groupId>org.apache.commons</groupId>
153 <artifactId>commons-lang3</artifactId>
Michael Blow204b2952017-12-07 20:17:47 -0500154 <version>3.7</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500155 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500156 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500157 <groupId>org.apache.commons</groupId>
158 <artifactId>commons-collections4</artifactId>
159 <version>4.1</version>
160 </dependency>
161 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800162 <groupId>org.apache.httpcomponents</groupId>
163 <artifactId>httpcore</artifactId>
164 <version>4.4.5</version>
165 </dependency>
166 <dependency>
167 <groupId>org.apache.httpcomponents</groupId>
168 <artifactId>httpclient</artifactId>
169 <version>4.5.2</version>
170 </dependency>
171 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500172 <groupId>org.apache.rat</groupId>
173 <artifactId>apache-rat-plugin</artifactId>
174 <version>0.12</version>
175 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500176 <dependency>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700177 <groupId>net.revelc.code.formatter</groupId>
178 <artifactId>formatter-maven-plugin</artifactId>
179 <version>2.0.1</version>
180 </dependency>
181 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500182 <groupId>args4j</groupId>
183 <artifactId>args4j</artifactId>
184 <version>2.33</version>
185 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700186 </dependencies>
187 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800188
vinayakbe5add8a2012-10-06 19:00:14 +0000189 <build>
190 <plugins>
191 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400192 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500193 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500194 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500195 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500196 <exclude>**/DEPENDENCIES</exclude>
197 </excludes>
198 </configuration>
199 </plugin>
200 <plugin>
201 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400202 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400203 <configuration>
204 <failOnWarning>true</failOnWarning>
205 <outputXML>true</outputXML>
206 </configuration>
207 <executions>
208 <execution>
209 <phase>process-test-classes</phase>
210 <goals>
211 <goal>analyze-only</goal>
212 </goals>
213 </execution>
214 </executions>
215 </plugin>
216 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700217 <groupId>org.apache.rat</groupId>
218 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700219 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700220 <execution>
221 <phase>validate</phase>
222 <goals>
223 <goal>check</goal>
224 </goals>
225 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700226 </executions>
227 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500228 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
229 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700230 <licenses>
Michael Blow5e17af22017-02-02 10:00:44 -0500231 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700232 </licenses>
233 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500234 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700235 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500236 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400237 <excludes combine.children="append">
238 <exclude>**/*.iml</exclude>
239 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700240 </configuration>
241 </plugin>
242 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700243 <groupId>org.apache.maven.plugins</groupId>
244 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700245 <configuration>
246 <failIfNoTests>false</failIfNoTests>
247 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800248 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700249 <argLine>-enableassertions -Xmx2048m
250 -Dfile.encoding=UTF-8
251 -Djava.util.logging.config.file=${user.home}/logging.properties
252 -Xdebug
253 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
254 ${coverageArgLine}
255 </argLine>
256 <includes>
257 <include>${global.test.includes},${test.includes}</include>
258 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500259 <excludes combine.children="append">
Chris Hilleryc48cc422014-03-21 22:47:23 -0700260 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800261 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400262 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700263 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700264 </plugin>
265 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700266 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700267 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700268 <configuration>
269 <source>${jdk.version}</source>
270 <target>${jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500271 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700272 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000273 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700274 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800275 <artifactId>maven-resources-plugin</artifactId>
Ian Maxon9e37c962015-11-25 07:38:37 -0800276 <executions>
277 <execution>
278 <id>copy-resources</id>
279 <phase>validate</phase>
280 <goals>
281 <goal>copy-resources</goal>
282 </goals>
283 <configuration>
284 <outputDirectory>target</outputDirectory>
285 <resources>
286 <resource>
287 <directory>${root.dir}/src/main/appended-resources</directory>
288 <!-- <filtering>true</filtering> -->
289 </resource>
290 </resources>
291 </configuration>
292 </execution>
293 </executions>
294 </plugin>
295 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700296 <groupId>org.apache.maven.plugins</groupId>
297 <artifactId>maven-remote-resources-plugin</artifactId>
298 <executions>
299 <execution>
300 <goals>
301 <goal>process</goal>
302 </goals>
303 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500304 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700305 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700306 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500307 <properties>
308 <projectName>Apache Hyracks - ${project.name}</projectName>
309 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700310 </configuration>
311 </execution>
312 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800313 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400314 <plugin>
315 <groupId>org.apache.maven.plugins</groupId>
316 <artifactId>maven-checkstyle-plugin</artifactId>
317 <version>2.17</version>
318 <executions>
319 <execution>
320 <id>verify-style</id>
321 <phase>process-classes</phase>
322 <goals>
323 <goal>check</goal>
324 </goals>
325 </execution>
326 </executions>
327 <configuration>
328 <logViolationsToConsole>true</logViolationsToConsole>
329 <checkstyleRules>
330 <module name="Checker">
331 <!-- Checks for whitespace -->
332 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400333 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400334 </module>
335 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400336 <includes>**/*.java,**/*.jj</includes>
337 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400338 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
339 </configuration>
340 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400341 <plugin>
342 <groupId>org.apache.maven.plugins</groupId>
343 <artifactId>maven-enforcer-plugin</artifactId>
Michael Blow918c5b12017-10-30 14:51:13 -0400344 <version>3.0.0-M1</version>
Michael Blowf53c1c62016-06-17 16:51:59 -0400345 <executions>
346 <execution>
347 <id>enforce-versions</id>
348 <goals>
349 <goal>enforce</goal>
350 </goals>
351 <configuration>
352 <rules>
353 <requireMavenVersion>
354 <version>[3.3.9,)</version>
355 </requireMavenVersion>
356 </rules>
357 </configuration>
358 </execution>
359 </executions>
360 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000361 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700362 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700363 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500364 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800365 <groupId>org.apache.maven.plugins</groupId>
366 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400367 <version>3.7.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800368 </plugin>
369 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500370 <groupId>org.apache.rat</groupId>
371 <artifactId>apache-rat-plugin</artifactId>
372 <version>0.12</version>
373 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700374 <plugin>
375 <groupId>net.revelc.code.formatter</groupId>
376 <artifactId>formatter-maven-plugin</artifactId>
377 <version>2.0.1</version>
378 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700379 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
380 <plugin>
381 <groupId>org.eclipse.m2e</groupId>
382 <artifactId>lifecycle-mapping</artifactId>
383 <version>1.0.0</version>
384 <configuration>
385 <lifecycleMappingMetadata>
386 <pluginExecutions>
387 <pluginExecution>
388 <pluginExecutionFilter>
389 <groupId>org.apache.rat</groupId>
390 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400391 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700392 <goals>
393 <goal>check</goal>
394 </goals>
395 </pluginExecutionFilter>
396 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400397 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700398 </action>
399 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400400 <pluginExecution>
401 <pluginExecutionFilter>
402 <groupId>org.apache.maven.plugins</groupId>
403 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400404 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400405 <goals>
406 <goal>check</goal>
407 </goals>
408 </pluginExecutionFilter>
409 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400410 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400411 </action>
412 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700413 <pluginExecution>
414 <pluginExecutionFilter>
415 <groupId>org.apache.maven.plugins</groupId>
416 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400417 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700418 <goals>
419 <goal>analyze-only</goal>
420 </goals>
421 </pluginExecutionFilter>
422 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800423 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700424 </action>
425 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700426 </pluginExecutions>
427 </lifecycleMappingMetadata>
428 </configuration>
429 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800430 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500431 <groupId>org.codehaus.mojo</groupId>
432 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400433 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800434 </plugin>
435 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500436 <groupId>org.apache.maven.plugins</groupId>
437 <artifactId>maven-scm-plugin</artifactId>
438 <version>1.9.5</version>
439 </plugin>
440 <plugin>
441 <groupId>org.codehaus.mojo</groupId>
442 <artifactId>appassembler-maven-plugin</artifactId>
443 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800444 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400445 <plugin>
446 <groupId>org.apache.maven.plugins</groupId>
447 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400448 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400449 </plugin>
450 <plugin>
451 <groupId>org.apache.maven.plugins</groupId>
452 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400453 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400454 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400455 <plugin>
456 <groupId>org.apache.hyracks</groupId>
457 <artifactId>license-automation-plugin</artifactId>
458 <version>${project.version}</version>
459 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400460 <plugin>
461 <groupId>org.apache.maven.plugins</groupId>
462 <artifactId>maven-assembly-plugin</artifactId>
463 <version>3.1.0</version>
464 </plugin>
465 <plugin>
466 <groupId>org.apache.maven.plugins</groupId>
467 <artifactId>maven-antrun-plugin</artifactId>
468 <version>1.8</version>
469 </plugin>
470 <plugin>
471 <groupId>org.apache.maven.plugins</groupId>
472 <artifactId>maven-clean-plugin</artifactId>
473 <version>3.0.0</version>
474 </plugin>
475 <plugin>
476 <groupId>org.apache.maven.plugins</groupId>
477 <artifactId>maven-jar-plugin</artifactId>
478 <version>3.0.2</version>
479 </plugin>
480 <plugin>
481 <groupId>org.codehaus.mojo</groupId>
482 <artifactId>build-helper-maven-plugin</artifactId>
483 <version>3.0.0</version>
484 </plugin>
485 <plugin>
486 <groupId>org.apache.maven.plugins</groupId>
487 <artifactId>maven-dependency-plugin</artifactId>
488 <version>3.0.2</version>
489 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400490 <plugin>
491 <groupId>org.apache.maven.doxia</groupId>
492 <artifactId>doxia-maven-plugin</artifactId>
493 <version>1.1.4</version>
494 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700495 </plugins>
496 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000497 </build>
498
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800499 <profiles>
500 <profile>
501 <id>hanging-pregelix-tests</id>
502 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400503 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800504 </properties>
505 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700506 <profile>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700507 <id>source-format</id>
508 <activation>
509 <activeByDefault>false</activeByDefault>
510 </activation>
511 <properties>
512 <source-format.goal>format</source-format.goal>
513 </properties>
514 <build>
515 <plugins>
516 <plugin>
517 <groupId>net.revelc.code.formatter</groupId>
518 <artifactId>formatter-maven-plugin</artifactId>
519 <executions>
520 <execution>
521 <goals>
522 <goal>${source-format.goal}</goal>
523 </goals>
524 </execution>
525 </executions>
526 <configuration>
527 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
528 <skipFormatting>${source-format.skip}</skipFormatting>
529 </configuration>
530 </plugin>
531 </plugins>
532 </build>
533 </profile>
534 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400535 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700536 <activation>
537 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400538 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700539 </file>
540 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400541 <properties>
542 <skip.assembly>true</skip.assembly>
543 </properties>
544 </profile>
545 <profile>
546 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700547 <build>
548 <plugins>
549 <plugin>
550 <groupId>org.apache.maven.plugins</groupId>
551 <artifactId>maven-assembly-plugin</artifactId>
552 <!-- We override the configuration plugin to override the descriptor to use for building
553 the source release zip. Specifically, we would like to control the inclusions/exclusions.
554 For example, we exclude the KEYS file from the zip -->
555 <executions>
556 <execution>
557 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
558 the apache parent POM under the apache-release profile -->
559 <id>source-release-assembly</id>
560 <phase>package</phase>
561 <goals>
562 <goal>single</goal>
563 </goals>
564 <!-- combine.self should be override to replace the configuration in the parent POM -->
565 <configuration combine.self="override">
566 <descriptors>
567 <descriptor>src/main/assembly/source.xml</descriptor>
568 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400569 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700570 </configuration>
571 </execution>
572 </executions>
573 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700574 <plugin>
575 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800576 <artifactId>maven-gpg-plugin</artifactId>
577 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700578 <executions>
579 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800580 <id>sign-artifacts</id>
581 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700582 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800583 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700584 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700585 </execution>
586 </executions>
587 </plugin>
588 </plugins>
589 </build>
590 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700591 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400592 <id>coverage</id>
593 <activation>
594 <property>
595 <name>coverage</name>
596 </property>
597 </activation>
598 <build>
599 <plugins>
600 <plugin>
601 <groupId>org.jacoco</groupId>
602 <artifactId>jacoco-maven-plugin</artifactId>
603 <version>${jacoco.version}</version>
604 <executions>
605 <execution>
606 <id>default-prepare-agent</id>
607 <goals>
608 <goal>prepare-agent</goal>
609 </goals>
610 <configuration>
611 <propertyName>coverageArgLine</propertyName>
612 </configuration>
613 </execution>
614 <execution>
615 <id>default-prepare-agent-integration</id>
616 <goals>
617 <goal>prepare-agent-integration</goal>
618 </goals>
619 <configuration>
620 <propertyName>coverageArgLine</propertyName>
621 </configuration>
622 </execution>
623 </executions>
624 </plugin>
625 </plugins>
626 </build>
627 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400628 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400629 </properties>
630 </profile>
631 <profile>
632 <id>no-coverage</id>
633 <activation>
634 <property>
635 <name>!coverage</name>
636 </property>
637 </activation>
638 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400639 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400640 </properties>
641 </profile>
642 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700643 <id>java8</id>
644 <activation>
645 <jdk>1.8</jdk>
646 </activation>
647 <properties>
648 <jdk.version>1.8</jdk.version>
649 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700650 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800651 </profiles>
652
vinayakbe5add8a2012-10-06 19:00:14 +0000653 <modules>
654 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000655 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500656 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000657 </modules>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500658
vinayakbe5add8a2012-10-06 19:00:14 +0000659</project>