blob: b6d482ed19dbccb435e8e701220ee5fb555d8fa7 [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 Jenkins93b46c82017-04-13 15:00:24 -070024 <version>0.3.2-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>
54 <jdk.version>1.8</jdk.version>
Michael Blow380b0a22016-08-02 13:05:52 -040055 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070056 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Dmitry Lychagin249be532017-05-31 14:57:14 -070057 <source-format.skip>false</source-format.skip>
Michael Blow7c15c132016-05-04 22:06:34 -040058
Michael Blowb4c1fb02016-05-09 15:41:00 -070059 <!-- Definition of tests in various categories which may be excluded -->
60 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
61 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
62 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
63 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
64 </global.test.excludes>
65 <!-- Versions under dependencymanagement or used in many projects via properties -->
66 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070067 <jacoco.version>0.7.6.201602180812</jacoco.version>
68 </properties>
69 <dependencyManagement>
70 <dependencies>
71 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080072 <groupId>io.netty</groupId>
73 <artifactId>netty-all</artifactId>
74 <version>4.1.6.Final</version>
75 </dependency>
76 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070077 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050079 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070080 </dependency>
81 <dependency>
82 <groupId>org.apache.hadoop</groupId>
83 <artifactId>hadoop-yarn-client</artifactId>
84 <version>${hadoop.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.hadoop</groupId>
88 <artifactId>hadoop-client</artifactId>
89 <version>${hadoop.version}</version>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.hadoop</groupId>
93 <artifactId>hadoop-common</artifactId>
94 <version>${hadoop.version}</version>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.hadoop</groupId>
98 <artifactId>hadoop-hdfs</artifactId>
99 <version>${hadoop.version}</version>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.hadoop</groupId>
103 <artifactId>hadoop-minicluster</artifactId>
104 <version>${hadoop.version}</version>
105 </dependency>
106 <dependency>
107 <groupId>org.apache.hadoop</groupId>
108 <artifactId>hadoop-mapreduce-client-core</artifactId>
109 <version>${hadoop.version}</version>
110 </dependency>
111 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400112 <groupId>org.apache.hadoop</groupId>
113 <artifactId>hadoop-hdfs</artifactId>
114 <version>${hadoop.version}</version>
115 <classifier>tests</classifier>
116 <scope>test</scope>
117 </dependency>
118 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700119 <groupId>commons-io</groupId>
120 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500121 <version>2.5</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700122 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800123 <dependency>
124 <groupId>com.fasterxml.jackson.core</groupId>
125 <artifactId>jackson-databind</artifactId>
126 <version>2.8.4</version>
127 </dependency>
128 <dependency>
129 <groupId>com.fasterxml.jackson.core</groupId>
130 <artifactId>jackson-core</artifactId>
131 <version>2.8.4</version>
132 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500133 <dependency>
134 <groupId>com.google.guava</groupId>
135 <artifactId>guava</artifactId>
136 <version>18.0</version>
137 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500138 <dependency>
139 <groupId>org.apache.commons</groupId>
140 <artifactId>commons-lang3</artifactId>
141 <version>3.5</version>
142 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500143 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500144 <groupId>org.apache.commons</groupId>
145 <artifactId>commons-collections4</artifactId>
146 <version>4.1</version>
147 </dependency>
148 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800149 <groupId>org.apache.httpcomponents</groupId>
150 <artifactId>httpcore</artifactId>
151 <version>4.4.5</version>
152 </dependency>
153 <dependency>
154 <groupId>org.apache.httpcomponents</groupId>
155 <artifactId>httpclient</artifactId>
156 <version>4.5.2</version>
157 </dependency>
158 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500159 <groupId>org.apache.rat</groupId>
160 <artifactId>apache-rat-plugin</artifactId>
161 <version>0.12</version>
162 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500163 <dependency>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700164 <groupId>net.revelc.code.formatter</groupId>
165 <artifactId>formatter-maven-plugin</artifactId>
166 <version>2.0.1</version>
167 </dependency>
168 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500169 <groupId>args4j</groupId>
170 <artifactId>args4j</artifactId>
171 <version>2.33</version>
172 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700173 </dependencies>
174 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800175
vinayakbe5add8a2012-10-06 19:00:14 +0000176 <build>
177 <plugins>
178 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400179 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500180 <artifactId>maven-jar-plugin</artifactId>
181 <version>3.0.0</version>
182 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500183 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500184 <exclude>**/DEPENDENCIES</exclude>
185 </excludes>
186 </configuration>
187 </plugin>
188 <plugin>
189 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400190 <artifactId>maven-dependency-plugin</artifactId>
191 <version>2.10</version>
192 <configuration>
193 <failOnWarning>true</failOnWarning>
194 <outputXML>true</outputXML>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500195 <usedDependencies>
196 <usedDependency>org.slf4j:slf4j-simple</usedDependency>
197 </usedDependencies>
Michael Blowba358122016-10-13 19:56:03 -0400198 </configuration>
199 <executions>
200 <execution>
201 <phase>process-test-classes</phase>
202 <goals>
203 <goal>analyze-only</goal>
204 </goals>
205 </execution>
206 </executions>
207 </plugin>
208 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800209 <groupId>org.codehaus.mojo</groupId>
210 <artifactId>versions-maven-plugin</artifactId>
211 <version>1.2</version>
212 </plugin>
213 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700214 <groupId>org.apache.rat</groupId>
215 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700216 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700217 <execution>
218 <phase>validate</phase>
219 <goals>
220 <goal>check</goal>
221 </goals>
222 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700223 </executions>
224 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500225 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
226 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700227 <licenses>
Michael Blow5e17af22017-02-02 10:00:44 -0500228 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700229 </licenses>
230 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500231 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700232 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500233 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400234 <excludes combine.children="append">
235 <exclude>**/*.iml</exclude>
236 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700237 </configuration>
238 </plugin>
239 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700240 <groupId>org.apache.maven.plugins</groupId>
241 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700242 <configuration>
243 <failIfNoTests>false</failIfNoTests>
244 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800245 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700246 <argLine>-enableassertions -Xmx2048m
247 -Dfile.encoding=UTF-8
248 -Djava.util.logging.config.file=${user.home}/logging.properties
249 -Xdebug
250 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
251 ${coverageArgLine}
252 </argLine>
253 <includes>
254 <include>${global.test.includes},${test.includes}</include>
255 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500256 <excludes combine.children="append">
Chris Hilleryc48cc422014-03-21 22:47:23 -0700257 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800258 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700259 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700260 </plugin>
261 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700262 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700263 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700264 <configuration>
265 <source>${jdk.version}</source>
266 <target>${jdk.version}</target>
267 <compilerArgument>-Xlint:all</compilerArgument>
268 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000269 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700270 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800271 <artifactId>maven-resources-plugin</artifactId>
272 <version>2.7</version>
273 <executions>
274 <execution>
275 <id>copy-resources</id>
276 <phase>validate</phase>
277 <goals>
278 <goal>copy-resources</goal>
279 </goals>
280 <configuration>
281 <outputDirectory>target</outputDirectory>
282 <resources>
283 <resource>
284 <directory>${root.dir}/src/main/appended-resources</directory>
285 <!-- <filtering>true</filtering> -->
286 </resource>
287 </resources>
288 </configuration>
289 </execution>
290 </executions>
291 </plugin>
292 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700293 <groupId>org.apache.maven.plugins</groupId>
294 <artifactId>maven-remote-resources-plugin</artifactId>
295 <executions>
296 <execution>
297 <goals>
298 <goal>process</goal>
299 </goals>
300 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500301 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700302 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700303 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500304 <properties>
305 <projectName>Apache Hyracks - ${project.name}</projectName>
306 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700307 </configuration>
308 </execution>
309 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800310 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400311 <plugin>
312 <groupId>org.apache.maven.plugins</groupId>
313 <artifactId>maven-checkstyle-plugin</artifactId>
314 <version>2.17</version>
315 <executions>
316 <execution>
317 <id>verify-style</id>
318 <phase>process-classes</phase>
319 <goals>
320 <goal>check</goal>
321 </goals>
322 </execution>
323 </executions>
324 <configuration>
325 <logViolationsToConsole>true</logViolationsToConsole>
326 <checkstyleRules>
327 <module name="Checker">
328 <!-- Checks for whitespace -->
329 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400330 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400331 </module>
332 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400333 <includes>**/*.java,**/*.jj</includes>
334 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400335 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
336 </configuration>
337 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400338 <plugin>
339 <groupId>org.apache.maven.plugins</groupId>
340 <artifactId>maven-enforcer-plugin</artifactId>
341 <version>1.4.1</version>
342 <executions>
343 <execution>
344 <id>enforce-versions</id>
345 <goals>
346 <goal>enforce</goal>
347 </goals>
348 <configuration>
349 <rules>
350 <requireMavenVersion>
351 <version>[3.3.9,)</version>
352 </requireMavenVersion>
353 </rules>
354 </configuration>
355 </execution>
356 </executions>
357 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000358 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700359 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700360 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500361 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800362 <groupId>org.apache.maven.plugins</groupId>
363 <artifactId>maven-compiler-plugin</artifactId>
364 <version>3.6.1</version>
365 </plugin>
366 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500367 <groupId>org.apache.rat</groupId>
368 <artifactId>apache-rat-plugin</artifactId>
369 <version>0.12</version>
370 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700371 <plugin>
372 <groupId>net.revelc.code.formatter</groupId>
373 <artifactId>formatter-maven-plugin</artifactId>
374 <version>2.0.1</version>
375 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700376 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
377 <plugin>
378 <groupId>org.eclipse.m2e</groupId>
379 <artifactId>lifecycle-mapping</artifactId>
380 <version>1.0.0</version>
381 <configuration>
382 <lifecycleMappingMetadata>
383 <pluginExecutions>
384 <pluginExecution>
385 <pluginExecutionFilter>
386 <groupId>org.apache.rat</groupId>
387 <artifactId>apache-rat-plugin</artifactId>
388 <versionRange>[0.11,)</versionRange>
389 <goals>
390 <goal>check</goal>
391 </goals>
392 </pluginExecutionFilter>
393 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400394 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700395 </action>
396 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400397 <pluginExecution>
398 <pluginExecutionFilter>
399 <groupId>org.apache.maven.plugins</groupId>
400 <artifactId>maven-checkstyle-plugin</artifactId>
401 <versionRange>[2.17,)</versionRange>
402 <goals>
403 <goal>check</goal>
404 </goals>
405 </pluginExecutionFilter>
406 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400407 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400408 </action>
409 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700410 <pluginExecution>
411 <pluginExecutionFilter>
412 <groupId>org.apache.maven.plugins</groupId>
413 <artifactId>maven-dependency-plugin</artifactId>
414 <versionRange>[2.10,)</versionRange>
415 <goals>
416 <goal>analyze-only</goal>
417 </goals>
418 </pluginExecutionFilter>
419 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800420 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700421 </action>
422 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700423 </pluginExecutions>
424 </lifecycleMappingMetadata>
425 </configuration>
426 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800427 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500428 <groupId>org.codehaus.mojo</groupId>
429 <artifactId>versions-maven-plugin</artifactId>
430 <version>2.1</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800431 </plugin>
432 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500433 <groupId>org.apache.maven.plugins</groupId>
434 <artifactId>maven-scm-plugin</artifactId>
435 <version>1.9.5</version>
436 </plugin>
437 <plugin>
438 <groupId>org.codehaus.mojo</groupId>
439 <artifactId>appassembler-maven-plugin</artifactId>
440 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800441 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400442 <plugin>
443 <groupId>org.apache.maven.plugins</groupId>
444 <artifactId>maven-surefire-plugin</artifactId>
445 <version>2.20</version>
446 </plugin>
447 <plugin>
448 <groupId>org.apache.maven.plugins</groupId>
449 <artifactId>maven-failsafe-plugin</artifactId>
450 <version>2.20</version>
451 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700452 </plugins>
453 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000454 </build>
455
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800456 <profiles>
457 <profile>
458 <id>hanging-pregelix-tests</id>
459 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400460 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800461 </properties>
462 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700463 <profile>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700464 <id>source-format</id>
465 <activation>
466 <activeByDefault>false</activeByDefault>
467 </activation>
468 <properties>
469 <source-format.goal>format</source-format.goal>
470 </properties>
471 <build>
472 <plugins>
473 <plugin>
474 <groupId>net.revelc.code.formatter</groupId>
475 <artifactId>formatter-maven-plugin</artifactId>
476 <executions>
477 <execution>
478 <goals>
479 <goal>${source-format.goal}</goal>
480 </goals>
481 </execution>
482 </executions>
483 <configuration>
484 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
485 <skipFormatting>${source-format.skip}</skipFormatting>
486 </configuration>
487 </plugin>
488 </plugins>
489 </build>
490 </profile>
491 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400492 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700493 <activation>
494 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400495 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700496 </file>
497 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400498 <properties>
499 <skip.assembly>true</skip.assembly>
500 </properties>
501 </profile>
502 <profile>
503 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700504 <build>
505 <plugins>
506 <plugin>
507 <groupId>org.apache.maven.plugins</groupId>
508 <artifactId>maven-assembly-plugin</artifactId>
509 <!-- We override the configuration plugin to override the descriptor to use for building
510 the source release zip. Specifically, we would like to control the inclusions/exclusions.
511 For example, we exclude the KEYS file from the zip -->
512 <executions>
513 <execution>
514 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
515 the apache parent POM under the apache-release profile -->
516 <id>source-release-assembly</id>
517 <phase>package</phase>
518 <goals>
519 <goal>single</goal>
520 </goals>
521 <!-- combine.self should be override to replace the configuration in the parent POM -->
522 <configuration combine.self="override">
523 <descriptors>
524 <descriptor>src/main/assembly/source.xml</descriptor>
525 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400526 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700527 </configuration>
528 </execution>
529 </executions>
530 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700531 <plugin>
532 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800533 <artifactId>maven-gpg-plugin</artifactId>
534 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700535 <executions>
536 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800537 <id>sign-artifacts</id>
538 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700539 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800540 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700541 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700542 </execution>
543 </executions>
544 </plugin>
545 </plugins>
546 </build>
547 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700548 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400549 <id>coverage</id>
550 <activation>
551 <property>
552 <name>coverage</name>
553 </property>
554 </activation>
555 <build>
556 <plugins>
557 <plugin>
558 <groupId>org.jacoco</groupId>
559 <artifactId>jacoco-maven-plugin</artifactId>
560 <version>${jacoco.version}</version>
561 <executions>
562 <execution>
563 <id>default-prepare-agent</id>
564 <goals>
565 <goal>prepare-agent</goal>
566 </goals>
567 <configuration>
568 <propertyName>coverageArgLine</propertyName>
569 </configuration>
570 </execution>
571 <execution>
572 <id>default-prepare-agent-integration</id>
573 <goals>
574 <goal>prepare-agent-integration</goal>
575 </goals>
576 <configuration>
577 <propertyName>coverageArgLine</propertyName>
578 </configuration>
579 </execution>
580 </executions>
581 </plugin>
582 </plugins>
583 </build>
584 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400585 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400586 </properties>
587 </profile>
588 <profile>
589 <id>no-coverage</id>
590 <activation>
591 <property>
592 <name>!coverage</name>
593 </property>
594 </activation>
595 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400596 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400597 </properties>
598 </profile>
599 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700600 <id>java8</id>
601 <activation>
602 <jdk>1.8</jdk>
603 </activation>
604 <properties>
605 <jdk.version>1.8</jdk.version>
606 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700607 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800608 </profiles>
609
vinayakbe5add8a2012-10-06 19:00:14 +0000610 <modules>
611 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000612 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500613 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000614 </modules>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500615
616 <dependencies>
617 <dependency>
618 <groupId>org.slf4j</groupId>
619 <artifactId>slf4j-simple</artifactId>
620 <version>1.7.22</version>
621 <scope>test</scope>
622 </dependency>
623 </dependencies>
624
vinayakbe5add8a2012-10-06 19:00:14 +0000625</project>