blob: 53ce6ddaf28aa452a4252ebf147323586b30796d [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>
Michael Blow7c15c132016-05-04 22:06:34 -040057
Michael Blowb4c1fb02016-05-09 15:41:00 -070058 <!-- Definition of tests in various categories which may be excluded -->
59 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
60 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
61 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
62 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
63 </global.test.excludes>
64 <!-- Versions under dependencymanagement or used in many projects via properties -->
65 <hadoop.version>2.2.0</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 <jacoco.version>0.7.6.201602180812</jacoco.version>
67 </properties>
68 <dependencyManagement>
69 <dependencies>
70 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080071 <groupId>io.netty</groupId>
72 <artifactId>netty-all</artifactId>
73 <version>4.1.6.Final</version>
74 </dependency>
75 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070076 <groupId>junit</groupId>
77 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050078 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070079 </dependency>
80 <dependency>
81 <groupId>org.apache.hadoop</groupId>
82 <artifactId>hadoop-yarn-client</artifactId>
83 <version>${hadoop.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.hadoop</groupId>
87 <artifactId>hadoop-client</artifactId>
88 <version>${hadoop.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.hadoop</groupId>
92 <artifactId>hadoop-common</artifactId>
93 <version>${hadoop.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>org.apache.hadoop</groupId>
97 <artifactId>hadoop-hdfs</artifactId>
98 <version>${hadoop.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.hadoop</groupId>
102 <artifactId>hadoop-minicluster</artifactId>
103 <version>${hadoop.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.hadoop</groupId>
107 <artifactId>hadoop-mapreduce-client-core</artifactId>
108 <version>${hadoop.version}</version>
109 </dependency>
110 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400111 <groupId>org.apache.hadoop</groupId>
112 <artifactId>hadoop-hdfs</artifactId>
113 <version>${hadoop.version}</version>
114 <classifier>tests</classifier>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700118 <groupId>commons-io</groupId>
119 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500120 <version>2.5</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700121 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800122 <dependency>
123 <groupId>com.fasterxml.jackson.core</groupId>
124 <artifactId>jackson-databind</artifactId>
125 <version>2.8.4</version>
126 </dependency>
127 <dependency>
128 <groupId>com.fasterxml.jackson.core</groupId>
129 <artifactId>jackson-core</artifactId>
130 <version>2.8.4</version>
131 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500132 <dependency>
133 <groupId>com.google.guava</groupId>
134 <artifactId>guava</artifactId>
135 <version>18.0</version>
136 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500137 <dependency>
138 <groupId>org.apache.commons</groupId>
139 <artifactId>commons-lang3</artifactId>
140 <version>3.5</version>
141 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500142 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500143 <groupId>org.apache.commons</groupId>
144 <artifactId>commons-collections4</artifactId>
145 <version>4.1</version>
146 </dependency>
147 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800148 <groupId>org.apache.httpcomponents</groupId>
149 <artifactId>httpcore</artifactId>
150 <version>4.4.5</version>
151 </dependency>
152 <dependency>
153 <groupId>org.apache.httpcomponents</groupId>
154 <artifactId>httpclient</artifactId>
155 <version>4.5.2</version>
156 </dependency>
157 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500158 <groupId>org.apache.rat</groupId>
159 <artifactId>apache-rat-plugin</artifactId>
160 <version>0.12</version>
161 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500162 <dependency>
163 <groupId>args4j</groupId>
164 <artifactId>args4j</artifactId>
165 <version>2.33</version>
166 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700167 </dependencies>
168 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800169
vinayakbe5add8a2012-10-06 19:00:14 +0000170 <build>
171 <plugins>
172 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400173 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500174 <artifactId>maven-jar-plugin</artifactId>
175 <version>3.0.0</version>
176 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500177 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500178 <exclude>**/DEPENDENCIES</exclude>
179 </excludes>
180 </configuration>
181 </plugin>
182 <plugin>
183 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400184 <artifactId>maven-dependency-plugin</artifactId>
185 <version>2.10</version>
186 <configuration>
187 <failOnWarning>true</failOnWarning>
188 <outputXML>true</outputXML>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500189 <usedDependencies>
190 <usedDependency>org.slf4j:slf4j-simple</usedDependency>
191 </usedDependencies>
Michael Blowba358122016-10-13 19:56:03 -0400192 </configuration>
193 <executions>
194 <execution>
195 <phase>process-test-classes</phase>
196 <goals>
197 <goal>analyze-only</goal>
198 </goals>
199 </execution>
200 </executions>
201 </plugin>
202 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800203 <groupId>org.codehaus.mojo</groupId>
204 <artifactId>versions-maven-plugin</artifactId>
205 <version>1.2</version>
206 </plugin>
207 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700208 <groupId>org.apache.rat</groupId>
209 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700210 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700211 <execution>
212 <phase>validate</phase>
213 <goals>
214 <goal>check</goal>
215 </goals>
216 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700217 </executions>
218 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500219 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
220 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700221 <licenses>
Michael Blow5e17af22017-02-02 10:00:44 -0500222 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700223 </licenses>
224 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500225 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700226 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500227 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400228 <excludes combine.children="append">
229 <exclude>**/*.iml</exclude>
230 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700231 </configuration>
232 </plugin>
233 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700234 <groupId>org.apache.maven.plugins</groupId>
235 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700236 <configuration>
237 <failIfNoTests>false</failIfNoTests>
238 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800239 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700240 <argLine>-enableassertions -Xmx2048m
241 -Dfile.encoding=UTF-8
242 -Djava.util.logging.config.file=${user.home}/logging.properties
243 -Xdebug
244 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
245 ${coverageArgLine}
246 </argLine>
247 <includes>
248 <include>${global.test.includes},${test.includes}</include>
249 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500250 <excludes combine.children="append">
Chris Hilleryc48cc422014-03-21 22:47:23 -0700251 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800252 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700253 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700254 </plugin>
255 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700256 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700257 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700258 <configuration>
259 <source>${jdk.version}</source>
260 <target>${jdk.version}</target>
261 <compilerArgument>-Xlint:all</compilerArgument>
262 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000263 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700264 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800265 <artifactId>maven-resources-plugin</artifactId>
266 <version>2.7</version>
267 <executions>
268 <execution>
269 <id>copy-resources</id>
270 <phase>validate</phase>
271 <goals>
272 <goal>copy-resources</goal>
273 </goals>
274 <configuration>
275 <outputDirectory>target</outputDirectory>
276 <resources>
277 <resource>
278 <directory>${root.dir}/src/main/appended-resources</directory>
279 <!-- <filtering>true</filtering> -->
280 </resource>
281 </resources>
282 </configuration>
283 </execution>
284 </executions>
285 </plugin>
286 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700287 <groupId>org.apache.maven.plugins</groupId>
288 <artifactId>maven-remote-resources-plugin</artifactId>
289 <executions>
290 <execution>
291 <goals>
292 <goal>process</goal>
293 </goals>
294 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500295 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700296 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700297 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500298 <properties>
299 <projectName>Apache Hyracks - ${project.name}</projectName>
300 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700301 </configuration>
302 </execution>
303 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800304 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400305 <plugin>
306 <groupId>org.apache.maven.plugins</groupId>
307 <artifactId>maven-checkstyle-plugin</artifactId>
308 <version>2.17</version>
309 <executions>
310 <execution>
311 <id>verify-style</id>
312 <phase>process-classes</phase>
313 <goals>
314 <goal>check</goal>
315 </goals>
316 </execution>
317 </executions>
318 <configuration>
319 <logViolationsToConsole>true</logViolationsToConsole>
320 <checkstyleRules>
321 <module name="Checker">
322 <!-- Checks for whitespace -->
323 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400324 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400325 </module>
326 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400327 <includes>**/*.java,**/*.jj</includes>
328 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400329 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
330 </configuration>
331 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400332 <plugin>
333 <groupId>org.apache.maven.plugins</groupId>
334 <artifactId>maven-enforcer-plugin</artifactId>
335 <version>1.4.1</version>
336 <executions>
337 <execution>
338 <id>enforce-versions</id>
339 <goals>
340 <goal>enforce</goal>
341 </goals>
342 <configuration>
343 <rules>
344 <requireMavenVersion>
345 <version>[3.3.9,)</version>
346 </requireMavenVersion>
347 </rules>
348 </configuration>
349 </execution>
350 </executions>
351 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000352 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700353 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700354 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500355 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800356 <groupId>org.apache.maven.plugins</groupId>
357 <artifactId>maven-compiler-plugin</artifactId>
358 <version>3.6.1</version>
359 </plugin>
360 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500361 <groupId>org.apache.rat</groupId>
362 <artifactId>apache-rat-plugin</artifactId>
363 <version>0.12</version>
364 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700365 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
366 <plugin>
367 <groupId>org.eclipse.m2e</groupId>
368 <artifactId>lifecycle-mapping</artifactId>
369 <version>1.0.0</version>
370 <configuration>
371 <lifecycleMappingMetadata>
372 <pluginExecutions>
373 <pluginExecution>
374 <pluginExecutionFilter>
375 <groupId>org.apache.rat</groupId>
376 <artifactId>apache-rat-plugin</artifactId>
377 <versionRange>[0.11,)</versionRange>
378 <goals>
379 <goal>check</goal>
380 </goals>
381 </pluginExecutionFilter>
382 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400383 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700384 </action>
385 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400386 <pluginExecution>
387 <pluginExecutionFilter>
388 <groupId>org.apache.maven.plugins</groupId>
389 <artifactId>maven-checkstyle-plugin</artifactId>
390 <versionRange>[2.17,)</versionRange>
391 <goals>
392 <goal>check</goal>
393 </goals>
394 </pluginExecutionFilter>
395 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400396 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400397 </action>
398 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700399 <pluginExecution>
400 <pluginExecutionFilter>
401 <groupId>org.apache.maven.plugins</groupId>
402 <artifactId>maven-dependency-plugin</artifactId>
403 <versionRange>[2.10,)</versionRange>
404 <goals>
405 <goal>analyze-only</goal>
406 </goals>
407 </pluginExecutionFilter>
408 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800409 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700410 </action>
411 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700412 </pluginExecutions>
413 </lifecycleMappingMetadata>
414 </configuration>
415 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800416 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500417 <groupId>org.codehaus.mojo</groupId>
418 <artifactId>versions-maven-plugin</artifactId>
419 <version>2.1</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800420 </plugin>
421 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500422 <groupId>org.apache.maven.plugins</groupId>
423 <artifactId>maven-scm-plugin</artifactId>
424 <version>1.9.5</version>
425 </plugin>
426 <plugin>
427 <groupId>org.codehaus.mojo</groupId>
428 <artifactId>appassembler-maven-plugin</artifactId>
429 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800430 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400431 <plugin>
432 <groupId>org.apache.maven.plugins</groupId>
433 <artifactId>maven-surefire-plugin</artifactId>
434 <version>2.20</version>
435 </plugin>
436 <plugin>
437 <groupId>org.apache.maven.plugins</groupId>
438 <artifactId>maven-failsafe-plugin</artifactId>
439 <version>2.20</version>
440 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700441 </plugins>
442 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000443 </build>
444
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800445 <profiles>
446 <profile>
447 <id>hanging-pregelix-tests</id>
448 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400449 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800450 </properties>
451 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700452 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400453 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700454 <activation>
455 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400456 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700457 </file>
458 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400459 <properties>
460 <skip.assembly>true</skip.assembly>
461 </properties>
462 </profile>
463 <profile>
464 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700465 <build>
466 <plugins>
467 <plugin>
468 <groupId>org.apache.maven.plugins</groupId>
469 <artifactId>maven-assembly-plugin</artifactId>
470 <!-- We override the configuration plugin to override the descriptor to use for building
471 the source release zip. Specifically, we would like to control the inclusions/exclusions.
472 For example, we exclude the KEYS file from the zip -->
473 <executions>
474 <execution>
475 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
476 the apache parent POM under the apache-release profile -->
477 <id>source-release-assembly</id>
478 <phase>package</phase>
479 <goals>
480 <goal>single</goal>
481 </goals>
482 <!-- combine.self should be override to replace the configuration in the parent POM -->
483 <configuration combine.self="override">
484 <descriptors>
485 <descriptor>src/main/assembly/source.xml</descriptor>
486 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400487 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700488 </configuration>
489 </execution>
490 </executions>
491 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700492 <plugin>
493 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800494 <artifactId>maven-gpg-plugin</artifactId>
495 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700496 <executions>
497 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800498 <id>sign-artifacts</id>
499 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700500 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800501 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700502 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700503 </execution>
504 </executions>
505 </plugin>
506 </plugins>
507 </build>
508 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700509 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400510 <id>coverage</id>
511 <activation>
512 <property>
513 <name>coverage</name>
514 </property>
515 </activation>
516 <build>
517 <plugins>
518 <plugin>
519 <groupId>org.jacoco</groupId>
520 <artifactId>jacoco-maven-plugin</artifactId>
521 <version>${jacoco.version}</version>
522 <executions>
523 <execution>
524 <id>default-prepare-agent</id>
525 <goals>
526 <goal>prepare-agent</goal>
527 </goals>
528 <configuration>
529 <propertyName>coverageArgLine</propertyName>
530 </configuration>
531 </execution>
532 <execution>
533 <id>default-prepare-agent-integration</id>
534 <goals>
535 <goal>prepare-agent-integration</goal>
536 </goals>
537 <configuration>
538 <propertyName>coverageArgLine</propertyName>
539 </configuration>
540 </execution>
541 </executions>
542 </plugin>
543 </plugins>
544 </build>
545 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400546 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400547 </properties>
548 </profile>
549 <profile>
550 <id>no-coverage</id>
551 <activation>
552 <property>
553 <name>!coverage</name>
554 </property>
555 </activation>
556 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400557 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400558 </properties>
559 </profile>
560 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700561 <id>java8</id>
562 <activation>
563 <jdk>1.8</jdk>
564 </activation>
565 <properties>
566 <jdk.version>1.8</jdk.version>
567 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700568 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800569 </profiles>
570
vinayakbe5add8a2012-10-06 19:00:14 +0000571 <modules>
572 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000573 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500574 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000575 </modules>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500576
577 <dependencies>
578 <dependency>
579 <groupId>org.slf4j</groupId>
580 <artifactId>slf4j-simple</artifactId>
581 <version>1.7.22</version>
582 <scope>test</scope>
583 </dependency>
584 </dependencies>
585
vinayakbe5add8a2012-10-06 19:00:14 +0000586</project>