blob: f08bec6d03d26003e891e4bb4f4e4fa32bae04f8 [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>
Murtadha Hubail06ca2792018-01-16 00:12:27 +030062 <testLog4jConfigFile>${root.dir}/src/test/resources/log4j2-test.xml</testLog4jConfigFile>
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
Michael Blowb4c1fb02016-05-09 15:41:00 -0700262 -Xdebug
263 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
264 ${coverageArgLine}
265 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300266 <systemPropertyVariables>
267 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
268 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700269 <includes>
270 <include>${global.test.includes},${test.includes}</include>
271 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500272 <excludes combine.children="append">
Chris Hilleryc48cc422014-03-21 22:47:23 -0700273 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800274 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400275 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700276 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700277 </plugin>
278 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700279 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300280 <artifactId>maven-failsafe-plugin</artifactId>
281 <configuration>
282 <systemPropertyVariables>
283 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
284 </systemPropertyVariables>
285 </configuration>
286 </plugin>
287 <plugin>
288 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700289 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700290 <configuration>
291 <source>${jdk.version}</source>
292 <target>${jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500293 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700294 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000295 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700296 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700297 <groupId>org.apache.maven.plugins</groupId>
298 <artifactId>maven-remote-resources-plugin</artifactId>
299 <executions>
300 <execution>
301 <goals>
302 <goal>process</goal>
303 </goals>
304 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500305 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700306 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700307 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500308 <properties>
309 <projectName>Apache Hyracks - ${project.name}</projectName>
310 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700311 </configuration>
312 </execution>
313 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800314 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400315 <plugin>
316 <groupId>org.apache.maven.plugins</groupId>
317 <artifactId>maven-checkstyle-plugin</artifactId>
318 <version>2.17</version>
319 <executions>
320 <execution>
321 <id>verify-style</id>
322 <phase>process-classes</phase>
323 <goals>
324 <goal>check</goal>
325 </goals>
326 </execution>
327 </executions>
328 <configuration>
329 <logViolationsToConsole>true</logViolationsToConsole>
330 <checkstyleRules>
331 <module name="Checker">
332 <!-- Checks for whitespace -->
333 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400334 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400335 </module>
336 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400337 <includes>**/*.java,**/*.jj</includes>
338 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400339 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
340 </configuration>
341 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400342 <plugin>
343 <groupId>org.apache.maven.plugins</groupId>
344 <artifactId>maven-enforcer-plugin</artifactId>
Michael Blow918c5b12017-10-30 14:51:13 -0400345 <version>3.0.0-M1</version>
Michael Blowf53c1c62016-06-17 16:51:59 -0400346 <executions>
347 <execution>
348 <id>enforce-versions</id>
349 <goals>
350 <goal>enforce</goal>
351 </goals>
352 <configuration>
353 <rules>
354 <requireMavenVersion>
355 <version>[3.3.9,)</version>
356 </requireMavenVersion>
357 </rules>
358 </configuration>
359 </execution>
360 </executions>
361 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500362 <plugin>
363 <groupId>org.apache.maven.plugins</groupId>
364 <artifactId>maven-resources-plugin</artifactId>
365 <executions>
366 <execution>
367 <id>default-testResources</id>
368 <goals>
369 <goal>testResources</goal>
370 </goals>
371 <configuration>
372 <skip>${skip.testResources}</skip>
373 </configuration>
374 </execution>
375 </executions>
376 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000377 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700378 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700379 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500380 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800381 <groupId>org.apache.maven.plugins</groupId>
382 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400383 <version>3.7.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800384 </plugin>
385 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500386 <groupId>org.apache.rat</groupId>
387 <artifactId>apache-rat-plugin</artifactId>
388 <version>0.12</version>
389 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700390 <plugin>
391 <groupId>net.revelc.code.formatter</groupId>
392 <artifactId>formatter-maven-plugin</artifactId>
393 <version>2.0.1</version>
394 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700395 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
396 <plugin>
397 <groupId>org.eclipse.m2e</groupId>
398 <artifactId>lifecycle-mapping</artifactId>
399 <version>1.0.0</version>
400 <configuration>
401 <lifecycleMappingMetadata>
402 <pluginExecutions>
403 <pluginExecution>
404 <pluginExecutionFilter>
405 <groupId>org.apache.rat</groupId>
406 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400407 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700408 <goals>
409 <goal>check</goal>
410 </goals>
411 </pluginExecutionFilter>
412 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400413 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700414 </action>
415 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400416 <pluginExecution>
417 <pluginExecutionFilter>
418 <groupId>org.apache.maven.plugins</groupId>
419 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400420 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400421 <goals>
422 <goal>check</goal>
423 </goals>
424 </pluginExecutionFilter>
425 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400426 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400427 </action>
428 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700429 <pluginExecution>
430 <pluginExecutionFilter>
431 <groupId>org.apache.maven.plugins</groupId>
432 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400433 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700434 <goals>
435 <goal>analyze-only</goal>
436 </goals>
437 </pluginExecutionFilter>
438 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800439 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700440 </action>
441 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700442 </pluginExecutions>
443 </lifecycleMappingMetadata>
444 </configuration>
445 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800446 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500447 <groupId>org.codehaus.mojo</groupId>
448 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400449 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800450 </plugin>
451 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500452 <groupId>org.apache.maven.plugins</groupId>
453 <artifactId>maven-scm-plugin</artifactId>
454 <version>1.9.5</version>
455 </plugin>
456 <plugin>
457 <groupId>org.codehaus.mojo</groupId>
458 <artifactId>appassembler-maven-plugin</artifactId>
459 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800460 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400461 <plugin>
462 <groupId>org.apache.maven.plugins</groupId>
463 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400464 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400465 </plugin>
466 <plugin>
467 <groupId>org.apache.maven.plugins</groupId>
468 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400469 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400470 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400471 <plugin>
472 <groupId>org.apache.hyracks</groupId>
473 <artifactId>license-automation-plugin</artifactId>
474 <version>${project.version}</version>
475 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400476 <plugin>
477 <groupId>org.apache.maven.plugins</groupId>
478 <artifactId>maven-assembly-plugin</artifactId>
479 <version>3.1.0</version>
480 </plugin>
481 <plugin>
482 <groupId>org.apache.maven.plugins</groupId>
483 <artifactId>maven-antrun-plugin</artifactId>
484 <version>1.8</version>
485 </plugin>
486 <plugin>
487 <groupId>org.apache.maven.plugins</groupId>
488 <artifactId>maven-clean-plugin</artifactId>
489 <version>3.0.0</version>
490 </plugin>
491 <plugin>
492 <groupId>org.apache.maven.plugins</groupId>
493 <artifactId>maven-jar-plugin</artifactId>
494 <version>3.0.2</version>
495 </plugin>
496 <plugin>
497 <groupId>org.codehaus.mojo</groupId>
498 <artifactId>build-helper-maven-plugin</artifactId>
499 <version>3.0.0</version>
500 </plugin>
501 <plugin>
502 <groupId>org.apache.maven.plugins</groupId>
503 <artifactId>maven-dependency-plugin</artifactId>
504 <version>3.0.2</version>
505 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400506 <plugin>
507 <groupId>org.apache.maven.doxia</groupId>
508 <artifactId>doxia-maven-plugin</artifactId>
509 <version>1.1.4</version>
510 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700511 </plugins>
512 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000513 </build>
514
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800515 <profiles>
516 <profile>
517 <id>hanging-pregelix-tests</id>
518 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400519 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800520 </properties>
521 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700522 <profile>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700523 <id>source-format</id>
524 <activation>
525 <activeByDefault>false</activeByDefault>
526 </activation>
527 <properties>
528 <source-format.goal>format</source-format.goal>
529 </properties>
530 <build>
531 <plugins>
532 <plugin>
533 <groupId>net.revelc.code.formatter</groupId>
534 <artifactId>formatter-maven-plugin</artifactId>
535 <executions>
536 <execution>
537 <goals>
538 <goal>${source-format.goal}</goal>
539 </goals>
540 </execution>
541 </executions>
542 <configuration>
543 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
544 <skipFormatting>${source-format.skip}</skipFormatting>
545 </configuration>
546 </plugin>
547 </plugins>
548 </build>
549 </profile>
550 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400551 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700552 <activation>
553 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400554 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700555 </file>
556 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400557 <properties>
558 <skip.assembly>true</skip.assembly>
559 </properties>
560 </profile>
561 <profile>
562 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700563 <build>
564 <plugins>
565 <plugin>
566 <groupId>org.apache.maven.plugins</groupId>
567 <artifactId>maven-assembly-plugin</artifactId>
568 <!-- We override the configuration plugin to override the descriptor to use for building
569 the source release zip. Specifically, we would like to control the inclusions/exclusions.
570 For example, we exclude the KEYS file from the zip -->
571 <executions>
572 <execution>
573 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
574 the apache parent POM under the apache-release profile -->
575 <id>source-release-assembly</id>
576 <phase>package</phase>
577 <goals>
578 <goal>single</goal>
579 </goals>
580 <!-- combine.self should be override to replace the configuration in the parent POM -->
581 <configuration combine.self="override">
582 <descriptors>
583 <descriptor>src/main/assembly/source.xml</descriptor>
584 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400585 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700586 </configuration>
587 </execution>
588 </executions>
589 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700590 <plugin>
591 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800592 <artifactId>maven-gpg-plugin</artifactId>
593 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700594 <executions>
595 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800596 <id>sign-artifacts</id>
597 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700598 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800599 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700600 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700601 </execution>
602 </executions>
603 </plugin>
604 </plugins>
605 </build>
606 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700607 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400608 <id>coverage</id>
609 <activation>
610 <property>
611 <name>coverage</name>
612 </property>
613 </activation>
614 <build>
615 <plugins>
616 <plugin>
617 <groupId>org.jacoco</groupId>
618 <artifactId>jacoco-maven-plugin</artifactId>
619 <version>${jacoco.version}</version>
620 <executions>
621 <execution>
622 <id>default-prepare-agent</id>
623 <goals>
624 <goal>prepare-agent</goal>
625 </goals>
626 <configuration>
627 <propertyName>coverageArgLine</propertyName>
628 </configuration>
629 </execution>
630 <execution>
631 <id>default-prepare-agent-integration</id>
632 <goals>
633 <goal>prepare-agent-integration</goal>
634 </goals>
635 <configuration>
636 <propertyName>coverageArgLine</propertyName>
637 </configuration>
638 </execution>
639 </executions>
640 </plugin>
641 </plugins>
642 </build>
643 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400644 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400645 </properties>
646 </profile>
647 <profile>
648 <id>no-coverage</id>
649 <activation>
650 <property>
651 <name>!coverage</name>
652 </property>
653 </activation>
654 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400655 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400656 </properties>
657 </profile>
658 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700659 <id>java8</id>
660 <activation>
661 <jdk>1.8</jdk>
662 </activation>
663 <properties>
664 <jdk.version>1.8</jdk.version>
665 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700666 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800667 </profiles>
668
vinayakbe5add8a2012-10-06 19:00:14 +0000669 <modules>
670 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000671 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500672 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000673 </modules>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500674
vinayakbe5add8a2012-10-06 19:00:14 +0000675</project>