blob: cbb83aa4aa8f8a64aba6d3adf03c611c3ce091ca [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>
Ian Maxona3435a32017-01-18 18:31:30 -080024 <version>0.3.1-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>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800143 <groupId>org.apache.httpcomponents</groupId>
144 <artifactId>httpcore</artifactId>
145 <version>4.4.5</version>
146 </dependency>
147 <dependency>
148 <groupId>org.apache.httpcomponents</groupId>
149 <artifactId>httpclient</artifactId>
150 <version>4.5.2</version>
151 </dependency>
152 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500153 <groupId>org.apache.rat</groupId>
154 <artifactId>apache-rat-plugin</artifactId>
155 <version>0.12</version>
156 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700157 </dependencies>
158 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800159
vinayakbe5add8a2012-10-06 19:00:14 +0000160 <build>
161 <plugins>
162 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400163 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500164 <artifactId>maven-jar-plugin</artifactId>
165 <version>3.0.0</version>
166 <configuration>
167 <excludes>
168 <exclude>**/DEPENDENCIES</exclude>
169 </excludes>
170 </configuration>
171 </plugin>
172 <plugin>
173 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400174 <artifactId>maven-dependency-plugin</artifactId>
175 <version>2.10</version>
176 <configuration>
177 <failOnWarning>true</failOnWarning>
178 <outputXML>true</outputXML>
179 </configuration>
180 <executions>
181 <execution>
182 <phase>process-test-classes</phase>
183 <goals>
184 <goal>analyze-only</goal>
185 </goals>
186 </execution>
187 </executions>
188 </plugin>
189 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800190 <groupId>org.codehaus.mojo</groupId>
191 <artifactId>versions-maven-plugin</artifactId>
192 <version>1.2</version>
193 </plugin>
194 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700195 <groupId>org.apache.rat</groupId>
196 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700197 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700198 <execution>
199 <phase>validate</phase>
200 <goals>
201 <goal>check</goal>
202 </goals>
203 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700204 </executions>
205 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500206 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
207 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700208 <licenses>
Michael Blow5e17af22017-02-02 10:00:44 -0500209 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700210 </licenses>
211 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500212 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700213 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500214 <excludeSubProjects>true</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700215 </configuration>
216 </plugin>
217 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700218 <groupId>org.apache.maven.plugins</groupId>
219 <artifactId>maven-surefire-plugin</artifactId>
220 <version>2.16</version>
221 <configuration>
222 <failIfNoTests>false</failIfNoTests>
223 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800224 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700225 <argLine>-enableassertions -Xmx2048m
226 -Dfile.encoding=UTF-8
227 -Djava.util.logging.config.file=${user.home}/logging.properties
228 -Xdebug
229 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
230 ${coverageArgLine}
231 </argLine>
232 <includes>
233 <include>${global.test.includes},${test.includes}</include>
234 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800235 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700236 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800237 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700238 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700239 </plugin>
240 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700241 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700242 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700243 <configuration>
244 <source>${jdk.version}</source>
245 <target>${jdk.version}</target>
246 <compilerArgument>-Xlint:all</compilerArgument>
247 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000248 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700249 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800250 <artifactId>maven-resources-plugin</artifactId>
251 <version>2.7</version>
252 <executions>
253 <execution>
254 <id>copy-resources</id>
255 <phase>validate</phase>
256 <goals>
257 <goal>copy-resources</goal>
258 </goals>
259 <configuration>
260 <outputDirectory>target</outputDirectory>
261 <resources>
262 <resource>
263 <directory>${root.dir}/src/main/appended-resources</directory>
264 <!-- <filtering>true</filtering> -->
265 </resource>
266 </resources>
267 </configuration>
268 </execution>
269 </executions>
270 </plugin>
271 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700272 <groupId>org.apache.maven.plugins</groupId>
273 <artifactId>maven-remote-resources-plugin</artifactId>
274 <executions>
275 <execution>
276 <goals>
277 <goal>process</goal>
278 </goals>
279 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500280 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700281 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700282 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500283 <properties>
284 <projectName>Apache Hyracks - ${project.name}</projectName>
285 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700286 </configuration>
287 </execution>
288 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800289 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400290 <plugin>
291 <groupId>org.apache.maven.plugins</groupId>
292 <artifactId>maven-checkstyle-plugin</artifactId>
293 <version>2.17</version>
294 <executions>
295 <execution>
296 <id>verify-style</id>
297 <phase>process-classes</phase>
298 <goals>
299 <goal>check</goal>
300 </goals>
301 </execution>
302 </executions>
303 <configuration>
304 <logViolationsToConsole>true</logViolationsToConsole>
305 <checkstyleRules>
306 <module name="Checker">
307 <!-- Checks for whitespace -->
308 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400309 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400310 </module>
311 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400312 <includes>**/*.java,**/*.jj</includes>
313 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400314 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
315 </configuration>
316 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400317 <plugin>
318 <groupId>org.apache.maven.plugins</groupId>
319 <artifactId>maven-enforcer-plugin</artifactId>
320 <version>1.4.1</version>
321 <executions>
322 <execution>
323 <id>enforce-versions</id>
324 <goals>
325 <goal>enforce</goal>
326 </goals>
327 <configuration>
328 <rules>
329 <requireMavenVersion>
330 <version>[3.3.9,)</version>
331 </requireMavenVersion>
332 </rules>
333 </configuration>
334 </execution>
335 </executions>
336 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000337 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700338 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700339 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500340 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800341 <groupId>org.apache.maven.plugins</groupId>
342 <artifactId>maven-compiler-plugin</artifactId>
343 <version>3.6.1</version>
344 </plugin>
345 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500346 <groupId>org.apache.rat</groupId>
347 <artifactId>apache-rat-plugin</artifactId>
348 <version>0.12</version>
349 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700350 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
351 <plugin>
352 <groupId>org.eclipse.m2e</groupId>
353 <artifactId>lifecycle-mapping</artifactId>
354 <version>1.0.0</version>
355 <configuration>
356 <lifecycleMappingMetadata>
357 <pluginExecutions>
358 <pluginExecution>
359 <pluginExecutionFilter>
360 <groupId>org.apache.rat</groupId>
361 <artifactId>apache-rat-plugin</artifactId>
362 <versionRange>[0.11,)</versionRange>
363 <goals>
364 <goal>check</goal>
365 </goals>
366 </pluginExecutionFilter>
367 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400368 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700369 </action>
370 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400371 <pluginExecution>
372 <pluginExecutionFilter>
373 <groupId>org.apache.maven.plugins</groupId>
374 <artifactId>maven-checkstyle-plugin</artifactId>
375 <versionRange>[2.17,)</versionRange>
376 <goals>
377 <goal>check</goal>
378 </goals>
379 </pluginExecutionFilter>
380 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400381 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400382 </action>
383 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700384 <pluginExecution>
385 <pluginExecutionFilter>
386 <groupId>org.apache.maven.plugins</groupId>
387 <artifactId>maven-dependency-plugin</artifactId>
388 <versionRange>[2.10,)</versionRange>
389 <goals>
390 <goal>analyze-only</goal>
391 </goals>
392 </pluginExecutionFilter>
393 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800394 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700395 </action>
396 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700397 </pluginExecutions>
398 </lifecycleMappingMetadata>
399 </configuration>
400 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800401 <plugin>
402 <groupId>org.codehaus.mojo</groupId>
403 <artifactId>versions-maven-plugin</artifactId>
404 <version>2.1</version>
405 </plugin>
406 <plugin>
407 <groupId>org.apache.maven.plugins</groupId>
408 <artifactId>maven-scm-plugin</artifactId>
409 <version>1.9.5</version>
410 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700411 </plugins>
412 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000413 </build>
414
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800415 <profiles>
416 <profile>
417 <id>hanging-pregelix-tests</id>
418 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400419 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800420 </properties>
421 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700422 <profile>
Ian Maxon99fed932017-02-09 19:11:39 -0800423 <id>release</id>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700424 <build>
425 <plugins>
426 <plugin>
427 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800428 <artifactId>maven-gpg-plugin</artifactId>
429 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700430 <executions>
431 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800432 <id>sign-artifacts</id>
433 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700434 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800435 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700436 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700437 </execution>
438 </executions>
439 </plugin>
440 </plugins>
441 </build>
442 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700443 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400444 <id>coverage</id>
445 <activation>
446 <property>
447 <name>coverage</name>
448 </property>
449 </activation>
450 <build>
451 <plugins>
452 <plugin>
453 <groupId>org.jacoco</groupId>
454 <artifactId>jacoco-maven-plugin</artifactId>
455 <version>${jacoco.version}</version>
456 <executions>
457 <execution>
458 <id>default-prepare-agent</id>
459 <goals>
460 <goal>prepare-agent</goal>
461 </goals>
462 <configuration>
463 <propertyName>coverageArgLine</propertyName>
464 </configuration>
465 </execution>
466 <execution>
467 <id>default-prepare-agent-integration</id>
468 <goals>
469 <goal>prepare-agent-integration</goal>
470 </goals>
471 <configuration>
472 <propertyName>coverageArgLine</propertyName>
473 </configuration>
474 </execution>
475 </executions>
476 </plugin>
477 </plugins>
478 </build>
479 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400480 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400481 </properties>
482 </profile>
483 <profile>
484 <id>no-coverage</id>
485 <activation>
486 <property>
487 <name>!coverage</name>
488 </property>
489 </activation>
490 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400491 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400492 </properties>
493 </profile>
494 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700495 <id>java8</id>
496 <activation>
497 <jdk>1.8</jdk>
498 </activation>
499 <properties>
500 <jdk.version>1.8</jdk.version>
501 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700502 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800503 </profiles>
504
vinayakbe5add8a2012-10-06 19:00:14 +0000505 <modules>
506 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000507 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500508 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000509 </modules>
510</project>