blob: f243f0c3028a5613cbcfb2d4ca8221f7e83f9d30 [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>
Michael Blow599ef8f2017-01-12 11:02:53 -050067 <jetty.version>9.3.11.v20160721</jetty.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070068 </properties>
69 <dependencyManagement>
70 <dependencies>
71 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050072 <groupId>org.eclipse.jetty</groupId>
73 <artifactId>jetty-server</artifactId>
74 <version>${jetty.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.eclipse.jetty</groupId>
78 <artifactId>jetty-servlet</artifactId>
79 <version>${jetty.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.eclipse.jetty</groupId>
83 <artifactId>jetty-http</artifactId>
84 <version>${jetty.version}</version>
85 </dependency>
86 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070087 <groupId>junit</groupId>
88 <artifactId>junit</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050089 <version>4.12</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070090 </dependency>
91 <dependency>
92 <groupId>org.apache.hadoop</groupId>
93 <artifactId>hadoop-yarn-client</artifactId>
94 <version>${hadoop.version}</version>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.hadoop</groupId>
98 <artifactId>hadoop-client</artifactId>
99 <version>${hadoop.version}</version>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.hadoop</groupId>
103 <artifactId>hadoop-common</artifactId>
104 <version>${hadoop.version}</version>
105 </dependency>
106 <dependency>
107 <groupId>org.apache.hadoop</groupId>
108 <artifactId>hadoop-hdfs</artifactId>
109 <version>${hadoop.version}</version>
110 </dependency>
111 <dependency>
112 <groupId>org.apache.hadoop</groupId>
113 <artifactId>hadoop-minicluster</artifactId>
114 <version>${hadoop.version}</version>
115 </dependency>
116 <dependency>
117 <groupId>org.apache.hadoop</groupId>
118 <artifactId>hadoop-mapreduce-client-core</artifactId>
119 <version>${hadoop.version}</version>
120 </dependency>
121 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400122 <groupId>org.apache.hadoop</groupId>
123 <artifactId>hadoop-hdfs</artifactId>
124 <version>${hadoop.version}</version>
125 <classifier>tests</classifier>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700129 <groupId>commons-io</groupId>
130 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500131 <version>2.5</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700132 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800133 <dependency>
134 <groupId>com.fasterxml.jackson.core</groupId>
135 <artifactId>jackson-databind</artifactId>
136 <version>2.8.4</version>
137 </dependency>
138 <dependency>
139 <groupId>com.fasterxml.jackson.core</groupId>
140 <artifactId>jackson-core</artifactId>
141 <version>2.8.4</version>
142 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500143 <dependency>
144 <groupId>com.google.guava</groupId>
145 <artifactId>guava</artifactId>
146 <version>18.0</version>
147 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500148 <dependency>
149 <groupId>org.apache.commons</groupId>
150 <artifactId>commons-lang3</artifactId>
151 <version>3.5</version>
152 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500153 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800154 <groupId>org.apache.httpcomponents</groupId>
155 <artifactId>httpcore</artifactId>
156 <version>4.4.5</version>
157 </dependency>
158 <dependency>
159 <groupId>org.apache.httpcomponents</groupId>
160 <artifactId>httpclient</artifactId>
161 <version>4.5.2</version>
162 </dependency>
163 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500164 <groupId>org.apache.rat</groupId>
165 <artifactId>apache-rat-plugin</artifactId>
166 <version>0.12</version>
167 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700168 </dependencies>
169 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800170
vinayakbe5add8a2012-10-06 19:00:14 +0000171 <build>
172 <plugins>
173 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400174 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500175 <artifactId>maven-jar-plugin</artifactId>
176 <version>3.0.0</version>
177 <configuration>
178 <excludes>
179 <exclude>**/DEPENDENCIES</exclude>
180 </excludes>
181 </configuration>
182 </plugin>
183 <plugin>
184 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400185 <artifactId>maven-dependency-plugin</artifactId>
186 <version>2.10</version>
187 <configuration>
188 <failOnWarning>true</failOnWarning>
189 <outputXML>true</outputXML>
190 </configuration>
191 <executions>
192 <execution>
193 <phase>process-test-classes</phase>
194 <goals>
195 <goal>analyze-only</goal>
196 </goals>
197 </execution>
198 </executions>
199 </plugin>
200 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800201 <groupId>org.codehaus.mojo</groupId>
202 <artifactId>versions-maven-plugin</artifactId>
203 <version>1.2</version>
204 </plugin>
205 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700206 <groupId>org.apache.rat</groupId>
207 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700208 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700209 <execution>
210 <phase>validate</phase>
211 <goals>
212 <goal>check</goal>
213 </goals>
214 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700215 </executions>
216 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500217 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
218 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700219 <licenses>
Michael Blow5e17af22017-02-02 10:00:44 -0500220 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700221 </licenses>
222 <licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500223 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700224 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500225 <excludeSubProjects>true</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700226 </configuration>
227 </plugin>
228 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700229 <groupId>org.apache.maven.plugins</groupId>
230 <artifactId>maven-surefire-plugin</artifactId>
231 <version>2.16</version>
232 <configuration>
233 <failIfNoTests>false</failIfNoTests>
234 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800235 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700236 <argLine>-enableassertions -Xmx2048m
237 -Dfile.encoding=UTF-8
238 -Djava.util.logging.config.file=${user.home}/logging.properties
239 -Xdebug
240 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
241 ${coverageArgLine}
242 </argLine>
243 <includes>
244 <include>${global.test.includes},${test.includes}</include>
245 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800246 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700247 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800248 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700249 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700250 </plugin>
251 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700252 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700253 <artifactId>maven-compiler-plugin</artifactId>
254 <version>3.1</version>
255 <configuration>
256 <source>${jdk.version}</source>
257 <target>${jdk.version}</target>
258 <compilerArgument>-Xlint:all</compilerArgument>
259 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000260 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700261 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800262 <artifactId>maven-resources-plugin</artifactId>
263 <version>2.7</version>
264 <executions>
265 <execution>
266 <id>copy-resources</id>
267 <phase>validate</phase>
268 <goals>
269 <goal>copy-resources</goal>
270 </goals>
271 <configuration>
272 <outputDirectory>target</outputDirectory>
273 <resources>
274 <resource>
275 <directory>${root.dir}/src/main/appended-resources</directory>
276 <!-- <filtering>true</filtering> -->
277 </resource>
278 </resources>
279 </configuration>
280 </execution>
281 </executions>
282 </plugin>
283 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700284 <groupId>org.apache.maven.plugins</groupId>
285 <artifactId>maven-remote-resources-plugin</artifactId>
286 <executions>
287 <execution>
288 <goals>
289 <goal>process</goal>
290 </goals>
291 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500292 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700293 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700294 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500295 <properties>
296 <projectName>Apache Hyracks - ${project.name}</projectName>
297 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700298 </configuration>
299 </execution>
300 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800301 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400302 <plugin>
303 <groupId>org.apache.maven.plugins</groupId>
304 <artifactId>maven-checkstyle-plugin</artifactId>
305 <version>2.17</version>
306 <executions>
307 <execution>
308 <id>verify-style</id>
309 <phase>process-classes</phase>
310 <goals>
311 <goal>check</goal>
312 </goals>
313 </execution>
314 </executions>
315 <configuration>
316 <logViolationsToConsole>true</logViolationsToConsole>
317 <checkstyleRules>
318 <module name="Checker">
319 <!-- Checks for whitespace -->
320 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400321 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400322 </module>
323 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400324 <includes>**/*.java,**/*.jj</includes>
325 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400326 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
327 </configuration>
328 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400329 <plugin>
330 <groupId>org.apache.maven.plugins</groupId>
331 <artifactId>maven-enforcer-plugin</artifactId>
332 <version>1.4.1</version>
333 <executions>
334 <execution>
335 <id>enforce-versions</id>
336 <goals>
337 <goal>enforce</goal>
338 </goals>
339 <configuration>
340 <rules>
341 <requireMavenVersion>
342 <version>[3.3.9,)</version>
343 </requireMavenVersion>
344 </rules>
345 </configuration>
346 </execution>
347 </executions>
348 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000349 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700350 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700351 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500352 <plugin>
353 <groupId>org.apache.rat</groupId>
354 <artifactId>apache-rat-plugin</artifactId>
355 <version>0.12</version>
356 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700357 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
358 <plugin>
359 <groupId>org.eclipse.m2e</groupId>
360 <artifactId>lifecycle-mapping</artifactId>
361 <version>1.0.0</version>
362 <configuration>
363 <lifecycleMappingMetadata>
364 <pluginExecutions>
365 <pluginExecution>
366 <pluginExecutionFilter>
367 <groupId>org.apache.rat</groupId>
368 <artifactId>apache-rat-plugin</artifactId>
369 <versionRange>[0.11,)</versionRange>
370 <goals>
371 <goal>check</goal>
372 </goals>
373 </pluginExecutionFilter>
374 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400375 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700376 </action>
377 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400378 <pluginExecution>
379 <pluginExecutionFilter>
380 <groupId>org.apache.maven.plugins</groupId>
381 <artifactId>maven-checkstyle-plugin</artifactId>
382 <versionRange>[2.17,)</versionRange>
383 <goals>
384 <goal>check</goal>
385 </goals>
386 </pluginExecutionFilter>
387 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400388 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400389 </action>
390 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700391 <pluginExecution>
392 <pluginExecutionFilter>
393 <groupId>org.apache.maven.plugins</groupId>
394 <artifactId>maven-dependency-plugin</artifactId>
395 <versionRange>[2.10,)</versionRange>
396 <goals>
397 <goal>analyze-only</goal>
398 </goals>
399 </pluginExecutionFilter>
400 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800401 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700402 </action>
403 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700404 </pluginExecutions>
405 </lifecycleMappingMetadata>
406 </configuration>
407 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800408 <plugin>
409 <groupId>org.codehaus.mojo</groupId>
410 <artifactId>versions-maven-plugin</artifactId>
411 <version>2.1</version>
412 </plugin>
413 <plugin>
414 <groupId>org.apache.maven.plugins</groupId>
415 <artifactId>maven-scm-plugin</artifactId>
416 <version>1.9.5</version>
417 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700418 </plugins>
419 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000420 </build>
421
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800422 <profiles>
423 <profile>
424 <id>hanging-pregelix-tests</id>
425 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400426 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800427 </properties>
428 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700429 <profile>
Ian Maxon99fed932017-02-09 19:11:39 -0800430 <id>release</id>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700431 <build>
432 <plugins>
433 <plugin>
434 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800435 <artifactId>maven-gpg-plugin</artifactId>
436 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700437 <executions>
438 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800439 <id>sign-artifacts</id>
440 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700441 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800442 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700443 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700444 </execution>
445 </executions>
446 </plugin>
447 </plugins>
448 </build>
449 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700450 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400451 <id>coverage</id>
452 <activation>
453 <property>
454 <name>coverage</name>
455 </property>
456 </activation>
457 <build>
458 <plugins>
459 <plugin>
460 <groupId>org.jacoco</groupId>
461 <artifactId>jacoco-maven-plugin</artifactId>
462 <version>${jacoco.version}</version>
463 <executions>
464 <execution>
465 <id>default-prepare-agent</id>
466 <goals>
467 <goal>prepare-agent</goal>
468 </goals>
469 <configuration>
470 <propertyName>coverageArgLine</propertyName>
471 </configuration>
472 </execution>
473 <execution>
474 <id>default-prepare-agent-integration</id>
475 <goals>
476 <goal>prepare-agent-integration</goal>
477 </goals>
478 <configuration>
479 <propertyName>coverageArgLine</propertyName>
480 </configuration>
481 </execution>
482 </executions>
483 </plugin>
484 </plugins>
485 </build>
486 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400487 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400488 </properties>
489 </profile>
490 <profile>
491 <id>no-coverage</id>
492 <activation>
493 <property>
494 <name>!coverage</name>
495 </property>
496 </activation>
497 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400498 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400499 </properties>
500 </profile>
501 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700502 <id>java8</id>
503 <activation>
504 <jdk>1.8</jdk>
505 </activation>
506 <properties>
507 <jdk.version>1.8</jdk.version>
508 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700509 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800510 </profiles>
511
vinayakbe5add8a2012-10-06 19:00:14 +0000512 <modules>
513 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000514 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500515 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000516 </modules>
517</project>