blob: 7b5fd6bfe912059e6aec18465ea0e006c695fb2f [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 !-->
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -080019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
vinayakbe5add8a2012-10-06 19:00:14 +000021 <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 Jenkins0948b242017-11-20 15:56:08 -080024 <version>0.3.4-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>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <parent>
29 <groupId>org.apache</groupId>
30 <artifactId>apache</artifactId>
Michael Blowb99349d2016-11-08 19:38:02 -050031 <version>18</version>
Michael Blow380b0a22016-08-02 13:05:52 -040032 <relativePath />
Michael Blowb4c1fb02016-05-09 15:41:00 -070033 </parent>
Michael Blowb4c1fb02016-05-09 15:41:00 -070034 <licenses>
35 <license>
36 <name>Apache License, Version 2.0</name>
37 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
38 <distribution>repo</distribution>
39 <comments>A business-friendly OSS license</comments>
40 </license>
41 </licenses>
Ian Maxon4b228432017-01-16 13:35:16 -080042 <scm>
43 <connection>scm:git:https://github.com/apache/asterixdb</connection>
44 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
45 <url>https://github.com/apache/asterixdb</url>
Ian Maxona3435a32017-01-18 18:31:30 -080046 <tag>HEAD</tag>
Ian Maxon4b228432017-01-16 13:35:16 -080047 </scm>
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <properties>
49 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Michael Blowdd920be2017-06-07 15:04:33 -040050 <file.encoding>UTF-8</file.encoding>
Michael Blowb4c1fb02016-05-09 15:41:00 -070051 <jdk.version>1.8</jdk.version>
Michael Blow2b057012017-12-07 22:20:39 -050052 <javac.xlint.value>all</javac.xlint.value>
Michael Blow380b0a22016-08-02 13:05:52 -040053 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070054 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow4cd925c2018-01-20 17:15:38 -050055 <source-format.goal>format</source-format.goal>
Dmitry Lychagin249be532017-05-31 14:57:14 -070056 <source-format.skip>false</source-format.skip>
Michael Blowe30c9d32018-01-20 09:42:19 -050057 <skipTests>false</skipTests>
Michael Blowdd920be2017-06-07 15:04:33 -040058 <skip.surefire.tests>${skipTests}</skip.surefire.tests>
Michael Blow7626d162017-12-10 14:26:56 -050059 <skip.testResources>${maven.test.skip}</skip.testResources>
Michael Blow2530e392018-02-06 01:19:42 -050060 <testLog4jConfigFile>${root.dir}/src/test/resources/log4j2-hyracks-test.xml</testLog4jConfigFile>
Michael Blowb4c1fb02016-05-09 15:41:00 -070061 <!-- Definition of tests in various categories which may be excluded -->
Michael Blowb4c1fb02016-05-09 15:41:00 -070062 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
63 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
Michael Blow64d49fb2018-02-11 15:43:47 -050064 <global.test.excludes>**/Abstract*.java,${hivesterix.perf.tests}</global.test.excludes>
Michael Blowe30c9d32018-01-20 09:42:19 -050065 <test.includes>${global.test.includes}</test.includes>
66 <test.excludes>${global.test.excludes}</test.excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -070067 <!-- Versions under dependencymanagement or used in many projects via properties -->
68 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070069 <jacoco.version>0.7.6.201602180812</jacoco.version>
70 </properties>
71 <dependencyManagement>
72 <dependencies>
73 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080074 <groupId>io.netty</groupId>
75 <artifactId>netty-all</artifactId>
76 <version>4.1.6.Final</version>
77 </dependency>
78 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070079 <groupId>junit</groupId>
80 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050081 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070082 </dependency>
83 <dependency>
84 <groupId>org.apache.hadoop</groupId>
85 <artifactId>hadoop-yarn-client</artifactId>
86 <version>${hadoop.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.hadoop</groupId>
90 <artifactId>hadoop-client</artifactId>
91 <version>${hadoop.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>org.apache.hadoop</groupId>
95 <artifactId>hadoop-common</artifactId>
96 <version>${hadoop.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-hdfs</artifactId>
101 <version>${hadoop.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.hadoop</groupId>
105 <artifactId>hadoop-minicluster</artifactId>
106 <version>${hadoop.version}</version>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.hadoop</groupId>
110 <artifactId>hadoop-mapreduce-client-core</artifactId>
111 <version>${hadoop.version}</version>
112 </dependency>
113 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400114 <groupId>org.apache.hadoop</groupId>
115 <artifactId>hadoop-hdfs</artifactId>
116 <version>${hadoop.version}</version>
117 <classifier>tests</classifier>
118 <scope>test</scope>
119 </dependency>
120 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700121 <groupId>commons-io</groupId>
122 <artifactId>commons-io</artifactId>
Michael Blow204b2952017-12-07 20:17:47 -0500123 <version>2.6</version>
124 </dependency>
125 <dependency>
126 <groupId>commons-lang</groupId>
127 <artifactId>commons-lang</artifactId>
128 <version>2.6</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700129 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800130 <dependency>
131 <groupId>com.fasterxml.jackson.core</groupId>
132 <artifactId>jackson-databind</artifactId>
133 <version>2.8.4</version>
134 </dependency>
135 <dependency>
136 <groupId>com.fasterxml.jackson.core</groupId>
137 <artifactId>jackson-core</artifactId>
138 <version>2.8.4</version>
139 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500140 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500141 <groupId>com.fasterxml.jackson.core</groupId>
142 <artifactId>jackson-annotations</artifactId>
143 <version>2.8.4</version>
144 </dependency>
145 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500146 <groupId>com.google.guava</groupId>
147 <artifactId>guava</artifactId>
148 <version>18.0</version>
149 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500150 <dependency>
151 <groupId>org.apache.commons</groupId>
152 <artifactId>commons-lang3</artifactId>
Michael Blow204b2952017-12-07 20:17:47 -0500153 <version>3.7</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500154 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500155 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500156 <groupId>org.apache.commons</groupId>
157 <artifactId>commons-collections4</artifactId>
158 <version>4.1</version>
159 </dependency>
160 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800161 <groupId>org.apache.httpcomponents</groupId>
162 <artifactId>httpcore</artifactId>
163 <version>4.4.5</version>
164 </dependency>
165 <dependency>
166 <groupId>org.apache.httpcomponents</groupId>
167 <artifactId>httpclient</artifactId>
168 <version>4.5.2</version>
169 </dependency>
170 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500171 <groupId>org.apache.rat</groupId>
172 <artifactId>apache-rat-plugin</artifactId>
173 <version>0.12</version>
174 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500175 <dependency>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700176 <groupId>net.revelc.code.formatter</groupId>
177 <artifactId>formatter-maven-plugin</artifactId>
178 <version>2.0.1</version>
179 </dependency>
180 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500181 <groupId>args4j</groupId>
182 <artifactId>args4j</artifactId>
183 <version>2.33</version>
184 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300185 <dependency>
186 <groupId>org.apache.logging.log4j</groupId>
187 <artifactId>log4j-api</artifactId>
188 <version>2.10.0</version>
189 </dependency>
190 <dependency>
191 <groupId>org.apache.logging.log4j</groupId>
192 <artifactId>log4j-core</artifactId>
193 <version>2.10.0</version>
194 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800195 <dependency>
196 <groupId>org.mockito</groupId>
197 <artifactId>mockito-all</artifactId>
198 <version>2.0.2-beta</version>
199 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700200 </dependencies>
201 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000202 <build>
203 <plugins>
204 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400205 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500206 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500207 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500208 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500209 <exclude>**/DEPENDENCIES</exclude>
210 </excludes>
211 </configuration>
212 </plugin>
213 <plugin>
214 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400215 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400216 <configuration>
217 <failOnWarning>true</failOnWarning>
218 <outputXML>true</outputXML>
219 </configuration>
220 <executions>
221 <execution>
222 <phase>process-test-classes</phase>
223 <goals>
224 <goal>analyze-only</goal>
225 </goals>
226 </execution>
227 </executions>
228 </plugin>
229 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700230 <groupId>org.apache.rat</groupId>
231 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700232 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700233 <execution>
234 <phase>validate</phase>
235 <goals>
236 <goal>check</goal>
237 </goals>
238 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700239 </executions>
240 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500241 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
242 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700243 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800244 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700245 </licenses>
246 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800247 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700248 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500249 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400250 <excludes combine.children="append">
251 <exclude>**/*.iml</exclude>
252 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700253 </configuration>
254 </plugin>
255 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700256 <groupId>org.apache.maven.plugins</groupId>
257 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700258 <configuration>
259 <failIfNoTests>false</failIfNoTests>
260 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800261 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800262 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
263 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Michael Blowb4c1fb02016-05-09 15:41:00 -0700264 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300265 <systemPropertyVariables>
266 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
267 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700268 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500269 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700270 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500271 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500272 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800273 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400274 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700275 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700276 </plugin>
277 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700278 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300279 <artifactId>maven-failsafe-plugin</artifactId>
280 <configuration>
281 <systemPropertyVariables>
282 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
283 </systemPropertyVariables>
284 </configuration>
285 </plugin>
286 <plugin>
287 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700288 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700289 <configuration>
290 <source>${jdk.version}</source>
291 <target>${jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500292 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700293 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000294 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700295 <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>
Michael Blow7626d162017-12-10 14:26:56 -0500361 <plugin>
362 <groupId>org.apache.maven.plugins</groupId>
363 <artifactId>maven-resources-plugin</artifactId>
364 <executions>
365 <execution>
366 <id>default-testResources</id>
367 <goals>
368 <goal>testResources</goal>
369 </goals>
370 <configuration>
371 <skip>${skip.testResources}</skip>
372 </configuration>
373 </execution>
374 </executions>
375 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500376 <plugin>
377 <groupId>net.revelc.code.formatter</groupId>
378 <artifactId>formatter-maven-plugin</artifactId>
379 <executions>
380 <execution>
381 <goals>
382 <goal>${source-format.goal}</goal>
383 </goals>
384 </execution>
385 </executions>
386 <configuration>
387 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
388 <skipFormatting>${source-format.skip}</skipFormatting>
389 </configuration>
390 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000391 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700392 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700393 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500394 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800395 <groupId>org.apache.maven.plugins</groupId>
396 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400397 <version>3.7.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800398 </plugin>
399 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500400 <groupId>org.apache.rat</groupId>
401 <artifactId>apache-rat-plugin</artifactId>
402 <version>0.12</version>
403 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700404 <plugin>
405 <groupId>net.revelc.code.formatter</groupId>
406 <artifactId>formatter-maven-plugin</artifactId>
407 <version>2.0.1</version>
408 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700409 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
410 <plugin>
411 <groupId>org.eclipse.m2e</groupId>
412 <artifactId>lifecycle-mapping</artifactId>
413 <version>1.0.0</version>
414 <configuration>
415 <lifecycleMappingMetadata>
416 <pluginExecutions>
417 <pluginExecution>
418 <pluginExecutionFilter>
419 <groupId>org.apache.rat</groupId>
420 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400421 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700422 <goals>
423 <goal>check</goal>
424 </goals>
425 </pluginExecutionFilter>
426 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400427 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700428 </action>
429 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400430 <pluginExecution>
431 <pluginExecutionFilter>
432 <groupId>org.apache.maven.plugins</groupId>
433 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400434 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400435 <goals>
436 <goal>check</goal>
437 </goals>
438 </pluginExecutionFilter>
439 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400440 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400441 </action>
442 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700443 <pluginExecution>
444 <pluginExecutionFilter>
445 <groupId>org.apache.maven.plugins</groupId>
446 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400447 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700448 <goals>
449 <goal>analyze-only</goal>
450 </goals>
451 </pluginExecutionFilter>
452 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800453 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700454 </action>
455 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800456 <pluginExecution>
457 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800458 <groupId>net.revelc.code.formatter</groupId>
459 <artifactId>formatter-maven-plugin</artifactId>
460 <versionRange>[2.0.1,)</versionRange>
461 <goals>
462 <goal>format</goal>
463 </goals>
464 </pluginExecutionFilter>
465 <action>
466 <ignore></ignore>
467 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800468 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700469 </pluginExecutions>
470 </lifecycleMappingMetadata>
471 </configuration>
472 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800473 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500474 <groupId>org.codehaus.mojo</groupId>
475 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400476 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800477 </plugin>
478 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500479 <groupId>org.apache.maven.plugins</groupId>
480 <artifactId>maven-scm-plugin</artifactId>
481 <version>1.9.5</version>
482 </plugin>
483 <plugin>
484 <groupId>org.codehaus.mojo</groupId>
485 <artifactId>appassembler-maven-plugin</artifactId>
486 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800487 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400488 <plugin>
489 <groupId>org.apache.maven.plugins</groupId>
490 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400491 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400492 </plugin>
493 <plugin>
494 <groupId>org.apache.maven.plugins</groupId>
495 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400496 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400497 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400498 <plugin>
499 <groupId>org.apache.hyracks</groupId>
500 <artifactId>license-automation-plugin</artifactId>
501 <version>${project.version}</version>
502 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400503 <plugin>
504 <groupId>org.apache.maven.plugins</groupId>
505 <artifactId>maven-assembly-plugin</artifactId>
506 <version>3.1.0</version>
507 </plugin>
508 <plugin>
509 <groupId>org.apache.maven.plugins</groupId>
510 <artifactId>maven-antrun-plugin</artifactId>
511 <version>1.8</version>
512 </plugin>
513 <plugin>
514 <groupId>org.apache.maven.plugins</groupId>
515 <artifactId>maven-clean-plugin</artifactId>
516 <version>3.0.0</version>
517 </plugin>
518 <plugin>
519 <groupId>org.apache.maven.plugins</groupId>
520 <artifactId>maven-jar-plugin</artifactId>
521 <version>3.0.2</version>
522 </plugin>
523 <plugin>
524 <groupId>org.codehaus.mojo</groupId>
525 <artifactId>build-helper-maven-plugin</artifactId>
526 <version>3.0.0</version>
527 </plugin>
528 <plugin>
529 <groupId>org.apache.maven.plugins</groupId>
530 <artifactId>maven-dependency-plugin</artifactId>
531 <version>3.0.2</version>
532 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400533 <plugin>
534 <groupId>org.apache.maven.doxia</groupId>
535 <artifactId>doxia-maven-plugin</artifactId>
536 <version>1.1.4</version>
537 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700538 </plugins>
539 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000540 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800541 <profiles>
542 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400543 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700544 <activation>
545 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400546 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700547 </file>
548 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400549 <properties>
550 <skip.assembly>true</skip.assembly>
551 </properties>
552 </profile>
553 <profile>
554 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700555 <build>
556 <plugins>
557 <plugin>
558 <groupId>org.apache.maven.plugins</groupId>
559 <artifactId>maven-assembly-plugin</artifactId>
560 <!-- We override the configuration plugin to override the descriptor to use for building
561 the source release zip. Specifically, we would like to control the inclusions/exclusions.
562 For example, we exclude the KEYS file from the zip -->
563 <executions>
564 <execution>
565 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
566 the apache parent POM under the apache-release profile -->
567 <id>source-release-assembly</id>
568 <phase>package</phase>
569 <goals>
570 <goal>single</goal>
571 </goals>
572 <!-- combine.self should be override to replace the configuration in the parent POM -->
573 <configuration combine.self="override">
574 <descriptors>
575 <descriptor>src/main/assembly/source.xml</descriptor>
576 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400577 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700578 </configuration>
579 </execution>
580 </executions>
581 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700582 <plugin>
583 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800584 <artifactId>maven-gpg-plugin</artifactId>
585 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700586 <executions>
587 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800588 <id>sign-artifacts</id>
589 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700590 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800591 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700592 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700593 </execution>
594 </executions>
595 </plugin>
596 </plugins>
597 </build>
598 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700599 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400600 <id>coverage</id>
601 <activation>
602 <property>
603 <name>coverage</name>
604 </property>
605 </activation>
606 <build>
607 <plugins>
608 <plugin>
609 <groupId>org.jacoco</groupId>
610 <artifactId>jacoco-maven-plugin</artifactId>
611 <version>${jacoco.version}</version>
612 <executions>
613 <execution>
614 <id>default-prepare-agent</id>
615 <goals>
616 <goal>prepare-agent</goal>
617 </goals>
618 <configuration>
619 <propertyName>coverageArgLine</propertyName>
620 </configuration>
621 </execution>
622 <execution>
623 <id>default-prepare-agent-integration</id>
624 <goals>
625 <goal>prepare-agent-integration</goal>
626 </goals>
627 <configuration>
628 <propertyName>coverageArgLine</propertyName>
629 </configuration>
630 </execution>
631 </executions>
632 </plugin>
633 </plugins>
634 </build>
635 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400636 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400637 </properties>
638 </profile>
639 <profile>
640 <id>no-coverage</id>
641 <activation>
642 <property>
643 <name>!coverage</name>
644 </property>
645 </activation>
646 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400647 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400648 </properties>
649 </profile>
650 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700651 <id>java8</id>
652 <activation>
653 <jdk>1.8</jdk>
654 </activation>
655 <properties>
656 <jdk.version>1.8</jdk.version>
657 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700658 </profile>
Michael Blow64d49fb2018-02-11 15:43:47 -0500659 <profile>
660 <id>integration-tests-only</id>
661 <properties>
662 <test.includes/>
663 <failIfNoTests>false</failIfNoTests>
664 </properties>
665 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800666 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +0000667 <modules>
668 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000669 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500670 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000671 </modules>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800672</project>