blob: 1a0ed20912a369f0ac4b200c019afaba3b54a8a6 [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>
Ian Maxon2378ed62015-11-24 13:04:19 -080023 <artifactId>apache-asterixdb-hyracks</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080024 <version>0.2.18-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>
Ian Maxonc4821272015-08-21 16:08:01 -070027
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <parent>
29 <groupId>org.apache</groupId>
30 <artifactId>apache</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -040031 <version>16</version>
Michael Blow380b0a22016-08-02 13:05:52 -040032 <relativePath />
Michael Blowb4c1fb02016-05-09 15:41:00 -070033 </parent>
Ian Maxonc4821272015-08-21 16:08:01 -070034
Michael Blowb4c1fb02016-05-09 15:41:00 -070035 <licenses>
36 <license>
37 <name>Apache License, Version 2.0</name>
38 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39 <distribution>repo</distribution>
40 <comments>A business-friendly OSS license</comments>
41 </license>
42 </licenses>
vinayakbe5add8a2012-10-06 19:00:14 +000043
Michael Blowb4c1fb02016-05-09 15:41:00 -070044 <properties>
45 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46 <jdk.version>1.8</jdk.version>
Michael Blow380b0a22016-08-02 13:05:52 -040047 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow7c15c132016-05-04 22:06:34 -040049
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <!-- Definition of tests in various categories which may be excluded -->
51 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
52 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
53 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
54 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
55 </global.test.excludes>
56 <!-- Versions under dependencymanagement or used in many projects via properties -->
57 <hadoop.version>2.2.0</hadoop.version>
58 <junit.version>4.8.1</junit.version>
59 <commons.io.version>2.4</commons.io.version>
60 <jacoco.version>0.7.6.201602180812</jacoco.version>
61 </properties>
62 <dependencyManagement>
63 <dependencies>
64 <dependency>
65 <groupId>junit</groupId>
66 <artifactId>junit</artifactId>
67 <version>${junit.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.hadoop</groupId>
71 <artifactId>hadoop-yarn-client</artifactId>
72 <version>${hadoop.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.hadoop</groupId>
76 <artifactId>hadoop-client</artifactId>
77 <version>${hadoop.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-common</artifactId>
82 <version>${hadoop.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.hadoop</groupId>
86 <artifactId>hadoop-hdfs</artifactId>
87 <version>${hadoop.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.hadoop</groupId>
91 <artifactId>hadoop-minicluster</artifactId>
92 <version>${hadoop.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.hadoop</groupId>
96 <artifactId>hadoop-mapreduce-client-core</artifactId>
97 <version>${hadoop.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>commons-io</groupId>
101 <artifactId>commons-io</artifactId>
102 <version>${commons.io.version}</version>
103 </dependency>
104 </dependencies>
105 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800106
vinayakbe5add8a2012-10-06 19:00:14 +0000107 <build>
108 <plugins>
109 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800110 <groupId>org.codehaus.mojo</groupId>
111 <artifactId>versions-maven-plugin</artifactId>
112 <version>1.2</version>
113 </plugin>
114 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700115 <groupId>org.apache.rat</groupId>
116 <artifactId>apache-rat-plugin</artifactId>
117 <version>0.11</version>
118 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700119 <execution>
120 <phase>validate</phase>
121 <goals>
122 <goal>check</goal>
123 </goals>
124 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700125 </executions>
126 <configuration>
127 <licenses>
128 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
129 <licenseFamilyCategory>MIT</licenseFamilyCategory>
130 <licenseFamilyName>The MIT License</licenseFamilyName>
131 <notes>For JQuery MIT/GPL2 Dual License</notes>
132 <patterns>
133 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
134 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
135 <pattern>http://jquery.org/license</pattern>
136 <pattern>Dual licensed under the MIT</pattern>
137 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
138 </patterns>
139 </license>
140 </licenses>
141 <licenseFamilies>
142 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
143 <familyName>The MIT License</familyName>
144 </licenseFamily>
145 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
146 <familyName>Apache License Version 2.0</familyName>
147 </licenseFamily>
148 </licenseFamilies>
Ian Maxon9e37c962015-11-25 07:38:37 -0800149 <excludeSubProjects>false</excludeSubProjects>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700150 <excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700151 <exclude>**/*.conf</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700152 <exclude>**/*.iml</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700153 <exclude>**/*.job</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700154 <exclude>**/*.prefs</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700155 <exclude>**/.classpath</exclude>
156 <exclude>**/.project</exclude>
157 <exclude>**/.settings/**</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700158 <exclude>**/actual/conf.xml</exclude>
159 <exclude>**/actual/customer_result/part-*</exclude>
160 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
161 <exclude>**/ClusterControllerService/**</exclude>
162 <exclude>**/data/**/*.ddl</exclude>
163 <exclude>**/data/**/*.tbl</exclude>
164 <exclude>**/data/**/*.tsv</exclude>
165 <exclude>**/data/**/*.txt</exclude>
166 <exclude>**/data/*.txt</exclude>
167 <exclude>**/data/dfs/**</exclude>
168 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
169 <exclude>**/invIndex*/**</exclude>
170 <exclude>**/javascript/adminconsole/*.js</exclude>
171 <exclude>**/javascript/flot/*.js</exclude>
172 <exclude>**/javascript/jquery/*.js</exclude>
173 <exclude>**/javascript/jsplumb/*.js</exclude>
174 <exclude>**/output/**</exclude>
175 <exclude>**/src/main/resources/*.cleaned</exclude>
176 <exclude>**/src/main/resources/conf/*</exclude>
177 <exclude>**/src/test/resources/data/**</exclude>
178 <exclude>**/src/test/resources/expected/**</exclude>
179 <exclude>**/src/test/resources/results/**</exclude>
180 <exclude>**/stylesheet/jquery-ui/**</exclude>
181 <exclude>**/target/**</exclude>
182 <exclude>**/testcases/*.piglet</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700183 <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude>
184 <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude>
185 <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude>
186 <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude>
187 <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude>
188 <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude>
189 <exclude>ClusterControllerService/logs/jobs/*.log</exclude>
190 <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude>
191 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude>
192 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jsplumb/jquery.jsPlumb-1.3.5-all-min.js</exclude>
Till Westmann72f81a6f2016-05-17 20:37:00 -0700193 <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/stylesheet/json.human.css</exclude>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700194 <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude>
195 <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude>
196 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude>
197 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude>
198 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude>
199 <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude>
200 <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude>
201 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude>
202 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude>
203 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude>
204 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude>
205 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude>
206 <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude>
207 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude>
208 <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude>
209 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700210 </configuration>
211 </plugin>
212 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-surefire-plugin</artifactId>
215 <version>2.16</version>
216 <configuration>
217 <failIfNoTests>false</failIfNoTests>
218 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800219 <reuseForks>false</reuseForks>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700220 <argLine>-enableassertions -Xmx2048m
221 -Dfile.encoding=UTF-8
222 -Djava.util.logging.config.file=${user.home}/logging.properties
223 -Xdebug
224 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
225 ${coverageArgLine}
226 </argLine>
227 <includes>
228 <include>${global.test.includes},${test.includes}</include>
229 </includes>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800230 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700231 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800232 </excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700233 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700234 </plugin>
235 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700236 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700237 <artifactId>maven-compiler-plugin</artifactId>
238 <version>3.1</version>
239 <configuration>
240 <source>${jdk.version}</source>
241 <target>${jdk.version}</target>
242 <compilerArgument>-Xlint:all</compilerArgument>
243 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000244 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700245 <plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -0800246 <artifactId>maven-resources-plugin</artifactId>
247 <version>2.7</version>
248 <executions>
249 <execution>
250 <id>copy-resources</id>
251 <phase>validate</phase>
252 <goals>
253 <goal>copy-resources</goal>
254 </goals>
255 <configuration>
256 <outputDirectory>target</outputDirectory>
257 <resources>
258 <resource>
259 <directory>${root.dir}/src/main/appended-resources</directory>
260 <!-- <filtering>true</filtering> -->
261 </resource>
262 </resources>
263 </configuration>
264 </execution>
265 </executions>
266 </plugin>
267 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700268 <groupId>org.apache.maven.plugins</groupId>
269 <artifactId>maven-remote-resources-plugin</artifactId>
270 <executions>
271 <execution>
272 <goals>
273 <goal>process</goal>
274 </goals>
275 <configuration>
276 <resourceBundles combine.children="append">
277 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700278 </resourceBundles>
279 </configuration>
280 </execution>
281 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800282 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400283 <plugin>
284 <groupId>org.apache.maven.plugins</groupId>
285 <artifactId>maven-checkstyle-plugin</artifactId>
286 <version>2.17</version>
287 <executions>
288 <execution>
289 <id>verify-style</id>
290 <phase>process-classes</phase>
291 <goals>
292 <goal>check</goal>
293 </goals>
294 </execution>
295 </executions>
296 <configuration>
297 <logViolationsToConsole>true</logViolationsToConsole>
298 <checkstyleRules>
299 <module name="Checker">
300 <!-- Checks for whitespace -->
301 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400302 <module name="FileTabCharacter" />
Michael Blowd1e2a992016-06-14 12:27:46 -0400303 </module>
304 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400305 <includes>**/*.java,**/*.jj</includes>
306 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400307 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
308 </configuration>
309 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400310 <plugin>
311 <groupId>org.apache.maven.plugins</groupId>
312 <artifactId>maven-enforcer-plugin</artifactId>
313 <version>1.4.1</version>
314 <executions>
315 <execution>
316 <id>enforce-versions</id>
317 <goals>
318 <goal>enforce</goal>
319 </goals>
320 <configuration>
321 <rules>
322 <requireMavenVersion>
323 <version>[3.3.9,)</version>
324 </requireMavenVersion>
325 </rules>
326 </configuration>
327 </execution>
328 </executions>
329 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000330 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700331 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700332 <plugins>
333 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
334 <plugin>
335 <groupId>org.eclipse.m2e</groupId>
336 <artifactId>lifecycle-mapping</artifactId>
337 <version>1.0.0</version>
338 <configuration>
339 <lifecycleMappingMetadata>
340 <pluginExecutions>
341 <pluginExecution>
342 <pluginExecutionFilter>
343 <groupId>org.apache.rat</groupId>
344 <artifactId>apache-rat-plugin</artifactId>
345 <versionRange>[0.11,)</versionRange>
346 <goals>
347 <goal>check</goal>
348 </goals>
349 </pluginExecutionFilter>
350 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400351 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700352 </action>
353 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400354 <pluginExecution>
355 <pluginExecutionFilter>
356 <groupId>org.apache.maven.plugins</groupId>
357 <artifactId>maven-checkstyle-plugin</artifactId>
358 <versionRange>[2.17,)</versionRange>
359 <goals>
360 <goal>check</goal>
361 </goals>
362 </pluginExecutionFilter>
363 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400364 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400365 </action>
366 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700367 </pluginExecutions>
368 </lifecycleMappingMetadata>
369 </configuration>
370 </plugin>
371 </plugins>
372 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000373 </build>
374
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800375 <profiles>
376 <profile>
377 <id>hanging-pregelix-tests</id>
378 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400379 <hanging.pregelix.tests />
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800380 </properties>
381 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700382 <profile>
383 <id>asterix-release</id>
Michael Blow1e34ec22016-05-15 19:15:40 -0700384 <activation>
385 <file>
386 <exists>src/main/assembly/source.xml</exists>
387 </file>
388 </activation>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700389 <build>
390 <plugins>
391 <plugin>
392 <groupId>org.apache.maven.plugins</groupId>
393 <artifactId>maven-assembly-plugin</artifactId>
394 <!-- We override the configuration plugin to override the descriptor to use for building
395 the source release zip. Specifically, we would like to control the inclusions/exclusions.
396 For example, we exclude the KEYS file from the zip -->
397 <executions>
398 <execution>
399 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
400 the apache parent POM under the apache-release profile -->
401 <id>source-release-assembly</id>
402 <phase>package</phase>
403 <goals>
404 <goal>single</goal>
405 </goals>
406 <!-- combine.self should be override to replace the configuration in the parent POM -->
407 <configuration combine.self="override">
408 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
409 <descriptors>
410 <descriptor>src/main/assembly/source.xml</descriptor>
411 </descriptors>
412 </configuration>
413 </execution>
414 </executions>
415 </plugin>
416 </plugins>
417 </build>
418 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700419 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400420 <id>coverage</id>
421 <activation>
422 <property>
423 <name>coverage</name>
424 </property>
425 </activation>
426 <build>
427 <plugins>
428 <plugin>
429 <groupId>org.jacoco</groupId>
430 <artifactId>jacoco-maven-plugin</artifactId>
431 <version>${jacoco.version}</version>
432 <executions>
433 <execution>
434 <id>default-prepare-agent</id>
435 <goals>
436 <goal>prepare-agent</goal>
437 </goals>
438 <configuration>
439 <propertyName>coverageArgLine</propertyName>
440 </configuration>
441 </execution>
442 <execution>
443 <id>default-prepare-agent-integration</id>
444 <goals>
445 <goal>prepare-agent-integration</goal>
446 </goals>
447 <configuration>
448 <propertyName>coverageArgLine</propertyName>
449 </configuration>
450 </execution>
451 </executions>
452 </plugin>
453 </plugins>
454 </build>
455 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400456 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400457 </properties>
458 </profile>
459 <profile>
460 <id>no-coverage</id>
461 <activation>
462 <property>
463 <name>!coverage</name>
464 </property>
465 </activation>
466 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400467 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400468 </properties>
469 </profile>
470 <profile>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700471 <id>java8</id>
472 <activation>
473 <jdk>1.8</jdk>
474 </activation>
475 <properties>
476 <jdk.version>1.8</jdk.version>
477 </properties>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700478 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800479 </profiles>
480
vinayakbe5add8a2012-10-06 19:00:14 +0000481 <modules>
482 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000483 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000484 </modules>
485</project>