blob: 6e3d71f1c723a478d48f26daa7b50cb20de8c97c [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 Blowe30c9d32018-01-20 09:42:19 -050060 <skipTests>false</skipTests>
Michael Blowdd920be2017-06-07 15:04:33 -040061 <skip.surefire.tests>${skipTests}</skip.surefire.tests>
Michael Blow7626d162017-12-10 14:26:56 -050062 <skip.testResources>${maven.test.skip}</skip.testResources>
Murtadha Hubail06ca2792018-01-16 00:12:27 +030063 <testLog4jConfigFile>${root.dir}/src/test/resources/log4j2-test.xml</testLog4jConfigFile>
Michael Blowb4c1fb02016-05-09 15:41:00 -070064 <!-- Definition of tests in various categories which may be excluded -->
65 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
66 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
67 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
Michael Blowe30c9d32018-01-20 09:42:19 -050068 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}</global.test.excludes>
69 <test.includes>${global.test.includes}</test.includes>
70 <test.excludes>${global.test.excludes}</test.excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -070071 <!-- Versions under dependencymanagement or used in many projects via properties -->
72 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 <jacoco.version>0.7.6.201602180812</jacoco.version>
74 </properties>
75 <dependencyManagement>
76 <dependencies>
77 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080078 <groupId>io.netty</groupId>
79 <artifactId>netty-all</artifactId>
80 <version>4.1.6.Final</version>
81 </dependency>
82 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070083 <groupId>junit</groupId>
84 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050085 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070086 </dependency>
87 <dependency>
88 <groupId>org.apache.hadoop</groupId>
89 <artifactId>hadoop-yarn-client</artifactId>
90 <version>${hadoop.version}</version>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.hadoop</groupId>
94 <artifactId>hadoop-client</artifactId>
95 <version>${hadoop.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>org.apache.hadoop</groupId>
99 <artifactId>hadoop-common</artifactId>
100 <version>${hadoop.version}</version>
101 </dependency>
102 <dependency>
103 <groupId>org.apache.hadoop</groupId>
104 <artifactId>hadoop-hdfs</artifactId>
105 <version>${hadoop.version}</version>
106 </dependency>
107 <dependency>
108 <groupId>org.apache.hadoop</groupId>
109 <artifactId>hadoop-minicluster</artifactId>
110 <version>${hadoop.version}</version>
111 </dependency>
112 <dependency>
113 <groupId>org.apache.hadoop</groupId>
114 <artifactId>hadoop-mapreduce-client-core</artifactId>
115 <version>${hadoop.version}</version>
116 </dependency>
117 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400118 <groupId>org.apache.hadoop</groupId>
119 <artifactId>hadoop-hdfs</artifactId>
120 <version>${hadoop.version}</version>
121 <classifier>tests</classifier>
122 <scope>test</scope>
123 </dependency>
124 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700125 <groupId>commons-io</groupId>
126 <artifactId>commons-io</artifactId>
Michael Blow204b2952017-12-07 20:17:47 -0500127 <version>2.6</version>
128 </dependency>
129 <dependency>
130 <groupId>commons-lang</groupId>
131 <artifactId>commons-lang</artifactId>
132 <version>2.6</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700133 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800134 <dependency>
135 <groupId>com.fasterxml.jackson.core</groupId>
136 <artifactId>jackson-databind</artifactId>
137 <version>2.8.4</version>
138 </dependency>
139 <dependency>
140 <groupId>com.fasterxml.jackson.core</groupId>
141 <artifactId>jackson-core</artifactId>
142 <version>2.8.4</version>
143 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500144 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500145 <groupId>com.fasterxml.jackson.core</groupId>
146 <artifactId>jackson-annotations</artifactId>
147 <version>2.8.4</version>
148 </dependency>
149 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500150 <groupId>com.google.guava</groupId>
151 <artifactId>guava</artifactId>
152 <version>18.0</version>
153 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500154 <dependency>
155 <groupId>org.apache.commons</groupId>
156 <artifactId>commons-lang3</artifactId>
Michael Blow204b2952017-12-07 20:17:47 -0500157 <version>3.7</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500158 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500159 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500160 <groupId>org.apache.commons</groupId>
161 <artifactId>commons-collections4</artifactId>
162 <version>4.1</version>
163 </dependency>
164 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800165 <groupId>org.apache.httpcomponents</groupId>
166 <artifactId>httpcore</artifactId>
167 <version>4.4.5</version>
168 </dependency>
169 <dependency>
170 <groupId>org.apache.httpcomponents</groupId>
171 <artifactId>httpclient</artifactId>
172 <version>4.5.2</version>
173 </dependency>
174 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500175 <groupId>org.apache.rat</groupId>
176 <artifactId>apache-rat-plugin</artifactId>
177 <version>0.12</version>
178 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500179 <dependency>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700180 <groupId>net.revelc.code.formatter</groupId>
181 <artifactId>formatter-maven-plugin</artifactId>
182 <version>2.0.1</version>
183 </dependency>
184 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500185 <groupId>args4j</groupId>
186 <artifactId>args4j</artifactId>
187 <version>2.33</version>
188 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300189 <dependency>
190 <groupId>org.apache.logging.log4j</groupId>
191 <artifactId>log4j-api</artifactId>
192 <version>2.10.0</version>
193 </dependency>
194 <dependency>
195 <groupId>org.apache.logging.log4j</groupId>
196 <artifactId>log4j-core</artifactId>
197 <version>2.10.0</version>
198 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700199 </dependencies>
200 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800201
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>
Michael Blow5e17af22017-02-02 10:00:44 -0500244 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700245 </licenses>
246 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500247 <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>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700262 <argLine>-enableassertions -Xmx2048m
263 -Dfile.encoding=UTF-8
Michael Blowb4c1fb02016-05-09 15:41:00 -0700264 -Xdebug
265 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
266 ${coverageArgLine}
267 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300268 <systemPropertyVariables>
269 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
270 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700271 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500272 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700273 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500274 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500275 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800276 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400277 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700278 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700279 </plugin>
280 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700281 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300282 <artifactId>maven-failsafe-plugin</artifactId>
283 <configuration>
284 <systemPropertyVariables>
285 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
286 </systemPropertyVariables>
287 </configuration>
288 </plugin>
289 <plugin>
290 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700291 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700292 <configuration>
293 <source>${jdk.version}</source>
294 <target>${jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500295 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700296 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000297 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700298 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700299 <groupId>org.apache.maven.plugins</groupId>
300 <artifactId>maven-remote-resources-plugin</artifactId>
301 <executions>
302 <execution>
303 <goals>
304 <goal>process</goal>
305 </goals>
306 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500307 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700308 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700309 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500310 <properties>
311 <projectName>Apache Hyracks - ${project.name}</projectName>
312 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700313 </configuration>
314 </execution>
315 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800316 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400317 <plugin>
318 <groupId>org.apache.maven.plugins</groupId>
319 <artifactId>maven-checkstyle-plugin</artifactId>
320 <version>2.17</version>
321 <executions>
322 <execution>
323 <id>verify-style</id>
324 <phase>process-classes</phase>
325 <goals>
326 <goal>check</goal>
327 </goals>
328 </execution>
329 </executions>
330 <configuration>
331 <logViolationsToConsole>true</logViolationsToConsole>
332 <checkstyleRules>
333 <module name="Checker">
334 <!-- Checks for whitespace -->
335 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400336 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400337 </module>
338 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400339 <includes>**/*.java,**/*.jj</includes>
340 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400341 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
342 </configuration>
343 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400344 <plugin>
345 <groupId>org.apache.maven.plugins</groupId>
346 <artifactId>maven-enforcer-plugin</artifactId>
Michael Blow918c5b12017-10-30 14:51:13 -0400347 <version>3.0.0-M1</version>
Michael Blowf53c1c62016-06-17 16:51:59 -0400348 <executions>
349 <execution>
350 <id>enforce-versions</id>
351 <goals>
352 <goal>enforce</goal>
353 </goals>
354 <configuration>
355 <rules>
356 <requireMavenVersion>
357 <version>[3.3.9,)</version>
358 </requireMavenVersion>
359 </rules>
360 </configuration>
361 </execution>
362 </executions>
363 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500364 <plugin>
365 <groupId>org.apache.maven.plugins</groupId>
366 <artifactId>maven-resources-plugin</artifactId>
367 <executions>
368 <execution>
369 <id>default-testResources</id>
370 <goals>
371 <goal>testResources</goal>
372 </goals>
373 <configuration>
374 <skip>${skip.testResources}</skip>
375 </configuration>
376 </execution>
377 </executions>
378 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000379 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700380 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700381 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500382 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800383 <groupId>org.apache.maven.plugins</groupId>
384 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400385 <version>3.7.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800386 </plugin>
387 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500388 <groupId>org.apache.rat</groupId>
389 <artifactId>apache-rat-plugin</artifactId>
390 <version>0.12</version>
391 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700392 <plugin>
393 <groupId>net.revelc.code.formatter</groupId>
394 <artifactId>formatter-maven-plugin</artifactId>
395 <version>2.0.1</version>
396 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700397 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
398 <plugin>
399 <groupId>org.eclipse.m2e</groupId>
400 <artifactId>lifecycle-mapping</artifactId>
401 <version>1.0.0</version>
402 <configuration>
403 <lifecycleMappingMetadata>
404 <pluginExecutions>
405 <pluginExecution>
406 <pluginExecutionFilter>
407 <groupId>org.apache.rat</groupId>
408 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400409 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700410 <goals>
411 <goal>check</goal>
412 </goals>
413 </pluginExecutionFilter>
414 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400415 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700416 </action>
417 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400418 <pluginExecution>
419 <pluginExecutionFilter>
420 <groupId>org.apache.maven.plugins</groupId>
421 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400422 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400423 <goals>
424 <goal>check</goal>
425 </goals>
426 </pluginExecutionFilter>
427 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400428 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400429 </action>
430 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700431 <pluginExecution>
432 <pluginExecutionFilter>
433 <groupId>org.apache.maven.plugins</groupId>
434 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400435 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700436 <goals>
437 <goal>analyze-only</goal>
438 </goals>
439 </pluginExecutionFilter>
440 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800441 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700442 </action>
443 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700444 </pluginExecutions>
445 </lifecycleMappingMetadata>
446 </configuration>
447 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800448 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500449 <groupId>org.codehaus.mojo</groupId>
450 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400451 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800452 </plugin>
453 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500454 <groupId>org.apache.maven.plugins</groupId>
455 <artifactId>maven-scm-plugin</artifactId>
456 <version>1.9.5</version>
457 </plugin>
458 <plugin>
459 <groupId>org.codehaus.mojo</groupId>
460 <artifactId>appassembler-maven-plugin</artifactId>
461 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800462 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400463 <plugin>
464 <groupId>org.apache.maven.plugins</groupId>
465 <artifactId>maven-surefire-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400466 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400467 </plugin>
468 <plugin>
469 <groupId>org.apache.maven.plugins</groupId>
470 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400471 <version>2.20.1</version>
Michael Blow10a74862017-05-23 16:55:39 -0400472 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400473 <plugin>
474 <groupId>org.apache.hyracks</groupId>
475 <artifactId>license-automation-plugin</artifactId>
476 <version>${project.version}</version>
477 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400478 <plugin>
479 <groupId>org.apache.maven.plugins</groupId>
480 <artifactId>maven-assembly-plugin</artifactId>
481 <version>3.1.0</version>
482 </plugin>
483 <plugin>
484 <groupId>org.apache.maven.plugins</groupId>
485 <artifactId>maven-antrun-plugin</artifactId>
486 <version>1.8</version>
487 </plugin>
488 <plugin>
489 <groupId>org.apache.maven.plugins</groupId>
490 <artifactId>maven-clean-plugin</artifactId>
491 <version>3.0.0</version>
492 </plugin>
493 <plugin>
494 <groupId>org.apache.maven.plugins</groupId>
495 <artifactId>maven-jar-plugin</artifactId>
496 <version>3.0.2</version>
497 </plugin>
498 <plugin>
499 <groupId>org.codehaus.mojo</groupId>
500 <artifactId>build-helper-maven-plugin</artifactId>
501 <version>3.0.0</version>
502 </plugin>
503 <plugin>
504 <groupId>org.apache.maven.plugins</groupId>
505 <artifactId>maven-dependency-plugin</artifactId>
506 <version>3.0.2</version>
507 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400508 <plugin>
509 <groupId>org.apache.maven.doxia</groupId>
510 <artifactId>doxia-maven-plugin</artifactId>
511 <version>1.1.4</version>
512 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700513 </plugins>
514 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000515 </build>
516
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800517 <profiles>
518 <profile>
519 <id>hanging-pregelix-tests</id>
520 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400521 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800522 </properties>
523 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700524 <profile>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700525 <id>source-format</id>
526 <activation>
527 <activeByDefault>false</activeByDefault>
528 </activation>
529 <properties>
530 <source-format.goal>format</source-format.goal>
531 </properties>
532 <build>
533 <plugins>
534 <plugin>
535 <groupId>net.revelc.code.formatter</groupId>
536 <artifactId>formatter-maven-plugin</artifactId>
537 <executions>
538 <execution>
539 <goals>
540 <goal>${source-format.goal}</goal>
541 </goals>
542 </execution>
543 </executions>
544 <configuration>
545 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
546 <skipFormatting>${source-format.skip}</skipFormatting>
547 </configuration>
548 </plugin>
549 </plugins>
550 </build>
551 </profile>
552 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400553 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700554 <activation>
555 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400556 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700557 </file>
558 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400559 <properties>
560 <skip.assembly>true</skip.assembly>
561 </properties>
562 </profile>
563 <profile>
564 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700565 <build>
566 <plugins>
567 <plugin>
568 <groupId>org.apache.maven.plugins</groupId>
569 <artifactId>maven-assembly-plugin</artifactId>
570 <!-- We override the configuration plugin to override the descriptor to use for building
571 the source release zip. Specifically, we would like to control the inclusions/exclusions.
572 For example, we exclude the KEYS file from the zip -->
573 <executions>
574 <execution>
575 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
576 the apache parent POM under the apache-release profile -->
577 <id>source-release-assembly</id>
578 <phase>package</phase>
579 <goals>
580 <goal>single</goal>
581 </goals>
582 <!-- combine.self should be override to replace the configuration in the parent POM -->
583 <configuration combine.self="override">
584 <descriptors>
585 <descriptor>src/main/assembly/source.xml</descriptor>
586 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400587 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700588 </configuration>
589 </execution>
590 </executions>
591 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700592 <plugin>
593 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800594 <artifactId>maven-gpg-plugin</artifactId>
595 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700596 <executions>
597 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800598 <id>sign-artifacts</id>
599 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700600 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800601 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700602 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700603 </execution>
604 </executions>
605 </plugin>
606 </plugins>
607 </build>
608 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700609 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400610 <id>coverage</id>
611 <activation>
612 <property>
613 <name>coverage</name>
614 </property>
615 </activation>
616 <build>
617 <plugins>
618 <plugin>
619 <groupId>org.jacoco</groupId>
620 <artifactId>jacoco-maven-plugin</artifactId>
621 <version>${jacoco.version}</version>
622 <executions>
623 <execution>
624 <id>default-prepare-agent</id>
625 <goals>
626 <goal>prepare-agent</goal>
627 </goals>
628 <configuration>
629 <propertyName>coverageArgLine</propertyName>
630 </configuration>
631 </execution>
632 <execution>
633 <id>default-prepare-agent-integration</id>
634 <goals>
635 <goal>prepare-agent-integration</goal>
636 </goals>
637 <configuration>
638 <propertyName>coverageArgLine</propertyName>
639 </configuration>
640 </execution>
641 </executions>
642 </plugin>
643 </plugins>
644 </build>
645 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400646 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400647 </properties>
648 </profile>
649 <profile>
650 <id>no-coverage</id>
651 <activation>
652 <property>
653 <name>!coverage</name>
654 </property>
655 </activation>
656 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400657 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400658 </properties>
659 </profile>
660 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700661 <id>java8</id>
662 <activation>
663 <jdk>1.8</jdk>
664 </activation>
665 <properties>
666 <jdk.version>1.8</jdk.version>
667 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700668 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800669 </profiles>
670
vinayakbe5add8a2012-10-06 19:00:14 +0000671 <modules>
672 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000673 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500674 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000675 </modules>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500676
vinayakbe5add8a2012-10-06 19:00:14 +0000677</project>