blob: 219d5bd467b2caa52c8a869d7f9f06702a837219 [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 !-->
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -080019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
vinayakbe5add8a2012-10-06 19:00:14 +000021 <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 Maxonc95de7a2020-08-07 11:58:39 -070024 <version>0.3.6-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 Blow38ca9622018-02-28 11:44:43 -050027 <url>${implementation.url}</url>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <parent>
29 <groupId>org.apache</groupId>
30 <artifactId>apache</artifactId>
Michael Blowb99349d2016-11-08 19:38:02 -050031 <version>18</version>
Michael Blow380b0a22016-08-02 13:05:52 -040032 <relativePath />
Michael Blowb4c1fb02016-05-09 15:41:00 -070033 </parent>
Michael Blowb4c1fb02016-05-09 15:41:00 -070034 <licenses>
35 <license>
36 <name>Apache License, Version 2.0</name>
37 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
38 <distribution>repo</distribution>
39 <comments>A business-friendly OSS license</comments>
40 </license>
41 </licenses>
Ian Maxon4b228432017-01-16 13:35:16 -080042 <scm>
43 <connection>scm:git:https://github.com/apache/asterixdb</connection>
44 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
45 <url>https://github.com/apache/asterixdb</url>
Ian Maxona3435a32017-01-18 18:31:30 -080046 <tag>HEAD</tag>
Ian Maxon4b228432017-01-16 13:35:16 -080047 </scm>
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <properties>
Ian Maxon3bb92132019-02-12 22:20:25 -080049 <root.dir>${basedir}</root.dir>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Michael Blowdd920be2017-06-07 15:04:33 -040051 <file.encoding>UTF-8</file.encoding>
Michael Blowcedd9612018-07-25 13:25:02 -040052 <source.jdk.version>1.8</source.jdk.version>
Michael Blow2b057012017-12-07 22:20:39 -050053 <javac.xlint.value>all</javac.xlint.value>
Michael Blow380b0a22016-08-02 13:05:52 -040054 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070055 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow4cd925c2018-01-20 17:15:38 -050056 <source-format.goal>format</source-format.goal>
Dmitry Lychagin249be532017-05-31 14:57:14 -070057 <source-format.skip>false</source-format.skip>
Michael Blowef85fb02019-03-22 13:40:35 -040058 <import-sort.goal>sort</import-sort.goal>
59 <import-sort.skip>false</import-sort.skip>
Ian Maxon3bb92132019-02-12 22:20:25 -080060 <maven.test.skip>false</maven.test.skip>
Michael Blowe30c9d32018-01-20 09:42:19 -050061 <skipTests>false</skipTests>
Michael Blowdd920be2017-06-07 15:04:33 -040062 <skip.surefire.tests>${skipTests}</skip.surefire.tests>
Michael Blow7626d162017-12-10 14:26:56 -050063 <skip.testResources>${maven.test.skip}</skip.testResources>
Michael Blow2530e392018-02-06 01:19:42 -050064 <testLog4jConfigFile>${root.dir}/src/test/resources/log4j2-hyracks-test.xml</testLog4jConfigFile>
Michael Blowb4c1fb02016-05-09 15:41:00 -070065 <!-- Definition of tests in various categories which may be excluded -->
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
67 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
Michael Blow64d49fb2018-02-11 15:43:47 -050068 <global.test.excludes>**/Abstract*.java,${hivesterix.perf.tests}</global.test.excludes>
Michael Blowe30c9d32018-01-20 09:42:19 -050069 <test.includes>${global.test.includes}</test.includes>
70 <test.excludes>${global.test.excludes}</test.excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -070071 <!-- Versions under dependencymanagement or used in many projects via properties -->
Michael Blow3477a2b2018-10-04 17:17:35 -040072 <hadoop.version>2.8.5</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow2d5bd952020-06-13 12:51:06 -040074 <log4j.version>2.13.3</log4j.version>
Michael Blow38ca9622018-02-28 11:44:43 -050075
Michael Blowcbfe8f92018-02-28 14:02:38 -050076 <implementation.title>Apache Hyracks and Algebricks - ${project.name}</implementation.title>
Michael Blow38ca9622018-02-28 11:44:43 -050077 <implementation.url>https://asterixdb.apache.org/</implementation.url>
78 <implementation.version>${project.version}</implementation.version>
79 <implementation.vendor>${project.organization.name}</implementation.vendor>
Michael Blowb4c1fb02016-05-09 15:41:00 -070080 </properties>
81 <dependencyManagement>
82 <dependencies>
83 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080084 <groupId>io.netty</groupId>
85 <artifactId>netty-all</artifactId>
Michael Blow4bf70482020-04-08 12:58:40 -040086 <version>4.1.48.Final</version>
Till Westmannea666c92017-02-22 22:25:15 -080087 </dependency>
88 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070089 <groupId>junit</groupId>
90 <artifactId>junit</artifactId>
Michael Blowb5727c62020-03-05 21:16:35 -050091 <version>4.13</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070092 </dependency>
93 <dependency>
94 <groupId>org.apache.hadoop</groupId>
95 <artifactId>hadoop-yarn-client</artifactId>
96 <version>${hadoop.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-client</artifactId>
101 <version>${hadoop.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.hadoop</groupId>
105 <artifactId>hadoop-common</artifactId>
106 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400107 <exclusions>
108 <exclusion>
109 <groupId>javax.servlet.jsp</groupId>
110 <artifactId>jsp-api</artifactId>
111 </exclusion>
112 <exclusion>
113 <groupId>javax.servlet</groupId>
114 <artifactId>servlet-api</artifactId>
115 </exclusion>
116 <exclusion>
117 <groupId>jdk.tools</groupId>
118 <artifactId>jdk.tools</artifactId>
119 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700120 <exclusion>
121 <groupId>log4j</groupId>
122 <artifactId>log4j</artifactId>
123 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400124 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700125 </dependency>
126 <dependency>
127 <groupId>org.apache.hadoop</groupId>
128 <artifactId>hadoop-hdfs</artifactId>
129 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700130 <exclusions>
131 <exclusion>
132 <groupId>log4j</groupId>
133 <artifactId>log4j</artifactId>
134 </exclusion>
135 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700136 </dependency>
137 <dependency>
138 <groupId>org.apache.hadoop</groupId>
139 <artifactId>hadoop-minicluster</artifactId>
140 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700141 <exclusions>
142 <exclusion>
143 <groupId>log4j</groupId>
144 <artifactId>log4j</artifactId>
145 </exclusion>
146 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700147 </dependency>
148 <dependency>
149 <groupId>org.apache.hadoop</groupId>
150 <artifactId>hadoop-mapreduce-client-core</artifactId>
151 <version>${hadoop.version}</version>
152 </dependency>
153 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400154 <groupId>org.apache.hadoop</groupId>
155 <artifactId>hadoop-hdfs</artifactId>
156 <version>${hadoop.version}</version>
157 <classifier>tests</classifier>
158 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700159 <exclusions>
160 <exclusion>
161 <groupId>log4j</groupId>
162 <artifactId>log4j</artifactId>
163 </exclusion>
164 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400165 </dependency>
166 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700167 <groupId>commons-io</groupId>
168 <artifactId>commons-io</artifactId>
Michael Blow204b2952017-12-07 20:17:47 -0500169 <version>2.6</version>
170 </dependency>
171 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400172 <groupId>org.apache.commons</groupId>
173 <artifactId>commons-text</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500174 <version>1.8</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400175 </dependency>
176 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800177 <groupId>com.fasterxml.jackson.core</groupId>
178 <artifactId>jackson-databind</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500179 <version>2.12.1</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800180 </dependency>
181 <dependency>
182 <groupId>com.fasterxml.jackson.core</groupId>
183 <artifactId>jackson-core</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500184 <version>2.12.1</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800185 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500186 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500187 <groupId>com.fasterxml.jackson.core</groupId>
188 <artifactId>jackson-annotations</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500189 <version>2.12.1</version>
Michael Blow204b2952017-12-07 20:17:47 -0500190 </dependency>
191 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500192 <groupId>com.google.guava</groupId>
193 <artifactId>guava</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500194 <version>30.1-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400195 <exclusions>
196 <exclusion>
197 <groupId>com.google.code.findbugs</groupId>
198 <artifactId>jsr305</artifactId>
199 </exclusion>
200 <exclusion>
201 <groupId>com.google.guava</groupId>
202 <artifactId>listenablefuture</artifactId>
203 </exclusion>
204 <exclusion>
205 <groupId>org.checkerframework</groupId>
206 <artifactId>checker-qual</artifactId>
207 </exclusion>
208 <exclusion>
209 <groupId>com.google.j2objc</groupId>
210 <artifactId>j2objc-annotations</artifactId>
211 </exclusion>
212 <exclusion>
213 <groupId>org.codehaus.mojo</groupId>
214 <artifactId>animal-sniffer-annotations</artifactId>
215 </exclusion>
216 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500217 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500218 <dependency>
219 <groupId>org.apache.commons</groupId>
220 <artifactId>commons-lang3</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500221 <version>3.9</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500222 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500223 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500224 <groupId>org.apache.commons</groupId>
225 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500226 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500227 </dependency>
228 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800229 <groupId>org.apache.httpcomponents</groupId>
230 <artifactId>httpcore</artifactId>
Michael Blowb5727c62020-03-05 21:16:35 -0500231 <version>4.4.13</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800232 </dependency>
233 <dependency>
234 <groupId>org.apache.httpcomponents</groupId>
235 <artifactId>httpclient</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500236 <version>4.5.13</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800237 </dependency>
238 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500239 <groupId>org.apache.rat</groupId>
240 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500241 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500242 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500243 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800244 <groupId>org.ini4j</groupId>
245 <artifactId>ini4j</artifactId>
246 <version>0.5.4</version>
247 </dependency>
248 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500249 <groupId>args4j</groupId>
250 <artifactId>args4j</artifactId>
251 <version>2.33</version>
252 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300253 <dependency>
254 <groupId>org.apache.logging.log4j</groupId>
255 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400256 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300257 </dependency>
258 <dependency>
259 <groupId>org.apache.logging.log4j</groupId>
260 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400261 <version>${log4j.version}</version>
262 </dependency>
263 <dependency>
264 <groupId>org.apache.logging.log4j</groupId>
265 <artifactId>log4j-jul</artifactId>
266 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300267 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800268 <dependency>
269 <groupId>org.mockito</groupId>
270 <artifactId>mockito-all</artifactId>
271 <version>2.0.2-beta</version>
272 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400273 <dependency>
274 <groupId>javax.xml.bind</groupId>
275 <artifactId>jaxb-api</artifactId>
276 <version>2.3.0</version>
277 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500278 <dependency>
279 <groupId>org.apache.maven</groupId>
280 <artifactId>maven-project</artifactId>
281 <version>2.2.1</version>
282 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500283 <dependency>
284 <groupId>org.apache.maven</groupId>
285 <artifactId>maven-model</artifactId>
286 <version>3.6.3</version>
287 </dependency>
288 <dependency>
289 <groupId>org.apache.maven</groupId>
290 <artifactId>maven-artifact</artifactId>
291 <version>3.6.3</version>
292 </dependency>
293 <dependency>
294 <groupId>org.apache.maven</groupId>
295 <artifactId>maven-compat</artifactId>
296 <version>3.6.3</version>
297 </dependency>
298 <dependency>
299 <groupId>org.apache.maven</groupId>
300 <artifactId>maven-core</artifactId>
301 <version>3.6.3</version>
Michael Blowe2307cf2020-04-24 16:14:03 -0400302 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500303 <dependency>
304 <groupId>org.apache.maven</groupId>
305 <artifactId>maven-plugin-api</artifactId>
306 <version>3.6.3</version>
307 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700308 <dependency>
Michael Blowc100a0f2020-06-16 20:38:16 -0400309 <groupId>org.apache.maven</groupId>
310 <artifactId>maven-model</artifactId>
311 <version>3.6.3</version>
312 </dependency>
313 <dependency>
314 <groupId>org.apache.maven</groupId>
315 <artifactId>maven-artifact</artifactId>
316 <version>3.6.3</version>
317 </dependency>
318 <dependency>
319 <groupId>org.apache.maven</groupId>
320 <artifactId>maven-compat</artifactId>
321 <version>3.6.3</version>
322 </dependency>
323 <dependency>
324 <groupId>org.apache.maven</groupId>
325 <artifactId>maven-core</artifactId>
326 <version>3.6.3</version>
327 </dependency>
328 <dependency>
329 <groupId>org.apache.maven</groupId>
330 <artifactId>maven-plugin-api</artifactId>
331 <version>3.6.3</version>
332 </dependency>
Michael Blow3a860982021-01-27 14:35:41 -0500333 <dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700334 <groupId>it.unimi.dsi</groupId>
335 <artifactId>fastutil</artifactId>
336 <version>8.3.0</version>
337 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700338 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700339 <groupId>org.apache.logging.log4j</groupId>
340 <artifactId>log4j-1.2-api</artifactId>
341 <version>2.13.1</version>
342 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700343 </dependencies>
344 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000345 <build>
346 <plugins>
347 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400348 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500349 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500350 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500351 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500352 <exclude>**/DEPENDENCIES</exclude>
353 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500354 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500355 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500356 <manifest>
357 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
358 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
359 </manifest>
360 <manifestEntries>
361 <Implementation-Title>${implementation.title}</Implementation-Title>
362 <Implementation-URL>${implementation.url}</Implementation-URL>
363 <Implementation-Version>${implementation.version}</Implementation-Version>
364 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
365 </manifestEntries>
366 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500367 </configuration>
368 </plugin>
369 <plugin>
370 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400371 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400372 <configuration>
373 <failOnWarning>true</failOnWarning>
374 <outputXML>true</outputXML>
375 </configuration>
376 <executions>
377 <execution>
378 <phase>process-test-classes</phase>
379 <goals>
380 <goal>analyze-only</goal>
381 </goals>
382 </execution>
383 </executions>
384 </plugin>
385 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700386 <groupId>org.apache.rat</groupId>
387 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700388 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700389 <execution>
390 <phase>validate</phase>
391 <goals>
392 <goal>check</goal>
393 </goals>
394 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700395 </executions>
396 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500397 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
398 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700399 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800400 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700401 </licenses>
402 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800403 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700404 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500405 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400406 <excludes combine.children="append">
407 <exclude>**/*.iml</exclude>
408 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700409 </configuration>
410 </plugin>
411 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700412 <groupId>org.apache.maven.plugins</groupId>
413 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700414 <configuration>
415 <failIfNoTests>false</failIfNoTests>
416 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800417 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800418 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
Murtadha Hubailc7eb0c52018-05-21 18:01:55 +0300419 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Michael Blowb4c1fb02016-05-09 15:41:00 -0700420 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300421 <systemPropertyVariables>
422 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
423 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700424 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500425 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700426 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500427 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500428 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800429 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400430 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700431 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700432 </plugin>
433 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700434 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300435 <artifactId>maven-failsafe-plugin</artifactId>
436 <configuration>
437 <systemPropertyVariables>
438 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
439 </systemPropertyVariables>
440 </configuration>
441 </plugin>
442 <plugin>
443 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700444 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700445 <configuration>
Michael Blowcedd9612018-07-25 13:25:02 -0400446 <source>${source.jdk.version}</source>
447 <target>${target.jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500448 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700449 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000450 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700451 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700452 <groupId>org.apache.maven.plugins</groupId>
453 <artifactId>maven-remote-resources-plugin</artifactId>
454 <executions>
455 <execution>
456 <goals>
457 <goal>process</goal>
458 </goals>
459 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500460 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700461 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700462 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500463 <properties>
464 <projectName>Apache Hyracks - ${project.name}</projectName>
465 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700466 </configuration>
467 </execution>
468 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800469 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400470 <plugin>
471 <groupId>org.apache.maven.plugins</groupId>
472 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow6a2a4362019-03-27 14:31:16 -0400473 <version>3.0.0</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400474 <executions>
475 <execution>
476 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400477 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400478 <goals>
479 <goal>check</goal>
480 </goals>
481 </execution>
482 </executions>
483 <configuration>
484 <logViolationsToConsole>true</logViolationsToConsole>
485 <checkstyleRules>
486 <module name="Checker">
487 <!-- Checks for whitespace -->
488 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400489 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400490 <module name="TreeWalker">
491 <module name="AvoidStarImport">
492 <property name="allowStaticMemberImports" value="true"/>
493 </module>
494 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400495 </module>
496 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400497 <includes>**/*.java,**/*.jj</includes>
498 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400499 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
500 </configuration>
501 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400502 <plugin>
503 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400504 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400505 <executions>
506 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400507 <id>check-pom-packaging</id>
508 <phase>validate</phase>
509 <goals>
510 <goal>run</goal>
511 </goals>
512 <configuration>
513 <exportAntProperties>true</exportAntProperties>
514 <target xmlns:unless="ant:unless">
515 <condition property="skipPomEnforcement">
516 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
517 </condition>
518 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
519 </target>
520 </configuration>
521 </execution>
522 </executions>
523 </plugin>
524 <plugin>
525 <groupId>org.apache.maven.plugins</groupId>
526 <artifactId>maven-enforcer-plugin</artifactId>
527 <executions>
528 <execution>
529 <id>ensure-no-tests-for-pom-packaging</id>
530 <phase>validate</phase>
531 <goals>
532 <goal>enforce</goal>
533 </goals>
534 <configuration>
535 <rules>
536 <requireFilesDontExist>
537 <files>
538 <file>${project.build.testSourceDirectory}</file>
539 </files>
540 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
541 </requireFilesDontExist>
542 </rules>
543 <skip>${skipPomEnforcement}</skip>
544 </configuration>
545 </execution>
546 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400547 <id>enforce-versions</id>
548 <goals>
549 <goal>enforce</goal>
550 </goals>
551 <configuration>
552 <rules>
553 <requireMavenVersion>
554 <version>[3.3.9,)</version>
555 </requireMavenVersion>
556 </rules>
557 </configuration>
558 </execution>
559 </executions>
560 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500561 <plugin>
562 <groupId>org.apache.maven.plugins</groupId>
563 <artifactId>maven-resources-plugin</artifactId>
564 <executions>
565 <execution>
566 <id>default-testResources</id>
567 <goals>
568 <goal>testResources</goal>
569 </goals>
570 <configuration>
571 <skip>${skip.testResources}</skip>
572 </configuration>
573 </execution>
574 </executions>
575 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500576 <plugin>
577 <groupId>net.revelc.code.formatter</groupId>
578 <artifactId>formatter-maven-plugin</artifactId>
579 <executions>
580 <execution>
581 <goals>
582 <goal>${source-format.goal}</goal>
583 </goals>
584 </execution>
585 </executions>
586 <configuration>
587 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
588 <skipFormatting>${source-format.skip}</skipFormatting>
589 </configuration>
590 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400591 <plugin>
592 <groupId>net.revelc.code</groupId>
593 <artifactId>impsort-maven-plugin</artifactId>
594 <executions>
595 <execution>
596 <goals>
597 <goal>${import-sort.goal}</goal>
598 </goals>
599 </execution>
600 </executions>
601 <configuration>
602 <groups>java,javax,org,com,*</groups>
603 <removeUnused>true</removeUnused>
604 <skip>${import-sort.skip}</skip>
605 </configuration>
606 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000607 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700608 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700609 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500610 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800611 <groupId>org.apache.maven.plugins</groupId>
612 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400613 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800614 </plugin>
615 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500616 <groupId>org.apache.rat</groupId>
617 <artifactId>apache-rat-plugin</artifactId>
618 <version>0.12</version>
619 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700620 <plugin>
621 <groupId>net.revelc.code.formatter</groupId>
622 <artifactId>formatter-maven-plugin</artifactId>
623 <version>2.0.1</version>
624 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400625 <plugin>
626 <groupId>net.revelc.code</groupId>
627 <artifactId>impsort-maven-plugin</artifactId>
628 <version>1.2.0</version>
629 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700630 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
631 <plugin>
632 <groupId>org.eclipse.m2e</groupId>
633 <artifactId>lifecycle-mapping</artifactId>
634 <version>1.0.0</version>
635 <configuration>
636 <lifecycleMappingMetadata>
637 <pluginExecutions>
638 <pluginExecution>
639 <pluginExecutionFilter>
640 <groupId>org.apache.rat</groupId>
641 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400642 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700643 <goals>
644 <goal>check</goal>
645 </goals>
646 </pluginExecutionFilter>
647 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400648 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700649 </action>
650 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400651 <pluginExecution>
652 <pluginExecutionFilter>
653 <groupId>org.apache.maven.plugins</groupId>
654 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400655 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400656 <goals>
657 <goal>check</goal>
658 </goals>
659 </pluginExecutionFilter>
660 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400661 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400662 </action>
663 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700664 <pluginExecution>
665 <pluginExecutionFilter>
666 <groupId>org.apache.maven.plugins</groupId>
667 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400668 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700669 <goals>
670 <goal>analyze-only</goal>
671 </goals>
672 </pluginExecutionFilter>
673 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800674 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700675 </action>
676 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800677 <pluginExecution>
678 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800679 <groupId>net.revelc.code.formatter</groupId>
680 <artifactId>formatter-maven-plugin</artifactId>
681 <versionRange>[2.0.1,)</versionRange>
682 <goals>
683 <goal>format</goal>
684 </goals>
685 </pluginExecutionFilter>
686 <action>
687 <ignore></ignore>
688 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800689 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700690 </pluginExecutions>
691 </lifecycleMappingMetadata>
692 </configuration>
693 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800694 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500695 <groupId>org.codehaus.mojo</groupId>
696 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400697 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800698 </plugin>
699 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500700 <groupId>org.apache.maven.plugins</groupId>
701 <artifactId>maven-scm-plugin</artifactId>
702 <version>1.9.5</version>
703 </plugin>
704 <plugin>
705 <groupId>org.codehaus.mojo</groupId>
706 <artifactId>appassembler-maven-plugin</artifactId>
707 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800708 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400709 <plugin>
710 <groupId>org.apache.maven.plugins</groupId>
711 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400712 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400713 </plugin>
714 <plugin>
715 <groupId>org.apache.maven.plugins</groupId>
716 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400717 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400718 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400719 <plugin>
720 <groupId>org.apache.hyracks</groupId>
721 <artifactId>license-automation-plugin</artifactId>
722 <version>${project.version}</version>
723 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400724 <plugin>
725 <groupId>org.apache.maven.plugins</groupId>
726 <artifactId>maven-assembly-plugin</artifactId>
727 <version>3.1.0</version>
728 </plugin>
729 <plugin>
730 <groupId>org.apache.maven.plugins</groupId>
731 <artifactId>maven-antrun-plugin</artifactId>
732 <version>1.8</version>
733 </plugin>
734 <plugin>
735 <groupId>org.apache.maven.plugins</groupId>
736 <artifactId>maven-clean-plugin</artifactId>
737 <version>3.0.0</version>
738 </plugin>
739 <plugin>
740 <groupId>org.apache.maven.plugins</groupId>
741 <artifactId>maven-jar-plugin</artifactId>
742 <version>3.0.2</version>
743 </plugin>
744 <plugin>
745 <groupId>org.codehaus.mojo</groupId>
746 <artifactId>build-helper-maven-plugin</artifactId>
747 <version>3.0.0</version>
748 </plugin>
749 <plugin>
750 <groupId>org.apache.maven.plugins</groupId>
751 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowcedd9612018-07-25 13:25:02 -0400752 <version>3.1.1</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400753 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400754 <plugin>
755 <groupId>org.apache.maven.doxia</groupId>
756 <artifactId>doxia-maven-plugin</artifactId>
757 <version>1.1.4</version>
758 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700759 </plugins>
760 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000761 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800762 <profiles>
763 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400764 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700765 <activation>
766 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400767 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700768 </file>
769 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400770 <properties>
771 <skip.assembly>true</skip.assembly>
772 </properties>
773 </profile>
774 <profile>
775 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700776 <build>
777 <plugins>
778 <plugin>
779 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500780 <artifactId>maven-jar-plugin</artifactId>
781 <configuration>
782 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500783 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500784 <manifest>
785 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
786 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
787 </manifest>
788 </archive>
789 </configuration>
790 </plugin>
791 <plugin>
792 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700793 <artifactId>maven-assembly-plugin</artifactId>
794 <!-- We override the configuration plugin to override the descriptor to use for building
795 the source release zip. Specifically, we would like to control the inclusions/exclusions.
796 For example, we exclude the KEYS file from the zip -->
797 <executions>
798 <execution>
799 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
800 the apache parent POM under the apache-release profile -->
801 <id>source-release-assembly</id>
802 <phase>package</phase>
803 <goals>
804 <goal>single</goal>
805 </goals>
806 <!-- combine.self should be override to replace the configuration in the parent POM -->
807 <configuration combine.self="override">
808 <descriptors>
809 <descriptor>src/main/assembly/source.xml</descriptor>
810 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400811 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700812 </configuration>
813 </execution>
814 </executions>
815 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700816 <plugin>
817 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800818 <artifactId>maven-gpg-plugin</artifactId>
819 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700820 <executions>
821 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800822 <id>sign-artifacts</id>
823 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700824 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800825 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700826 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700827 </execution>
828 </executions>
829 </plugin>
830 </plugins>
831 </build>
832 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700833 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400834 <id>coverage</id>
835 <activation>
836 <property>
837 <name>coverage</name>
838 </property>
839 </activation>
840 <build>
841 <plugins>
842 <plugin>
843 <groupId>org.jacoco</groupId>
844 <artifactId>jacoco-maven-plugin</artifactId>
845 <version>${jacoco.version}</version>
846 <executions>
847 <execution>
848 <id>default-prepare-agent</id>
849 <goals>
850 <goal>prepare-agent</goal>
851 </goals>
852 <configuration>
853 <propertyName>coverageArgLine</propertyName>
854 </configuration>
855 </execution>
856 <execution>
857 <id>default-prepare-agent-integration</id>
858 <goals>
859 <goal>prepare-agent-integration</goal>
860 </goals>
861 <configuration>
862 <propertyName>coverageArgLine</propertyName>
863 </configuration>
864 </execution>
865 </executions>
866 </plugin>
867 </plugins>
868 </build>
869 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400870 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400871 </properties>
872 </profile>
873 <profile>
874 <id>no-coverage</id>
875 <activation>
876 <property>
877 <name>!coverage</name>
878 </property>
879 </activation>
880 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400881 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400882 </properties>
883 </profile>
884 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -0500885 <id>integration-tests-only</id>
886 <properties>
887 <test.includes/>
888 <failIfNoTests>false</failIfNoTests>
889 </properties>
890 </profile>
Michael Blowcedd9612018-07-25 13:25:02 -0400891 <profile>
892 <id>java8</id>
893 <activation>
Michael Blow0de90812019-08-23 16:27:29 -0400894 <jdk>[1.8,)</jdk>
Michael Blowcedd9612018-07-25 13:25:02 -0400895 </activation>
896 <properties>
897 <target.jdk.version>8</target.jdk.version>
898 </properties>
899 </profile>
900 <profile>
Michael Blowcedd9612018-07-25 13:25:02 -0400901 <id>java8-bootclasspath</id>
902 <activation>
903 <property>
904 <name>java8-bootclasspath</name>
905 </property>
906 </activation>
907 <properties>
908 <target.jdk.version>8</target.jdk.version>
909 </properties>
910 <build>
911 <plugins>
912 <plugin>
913 <groupId>org.apache.maven.plugins</groupId>
914 <artifactId>maven-compiler-plugin</artifactId>
915 <configuration>
916 <compilerArgs combine.children="append">
917 <arg>-bootclasspath</arg>
918 <arg>${java8-bootclasspath}</arg>
919 </compilerArgs>
920 </configuration>
921 </plugin>
922 </plugins>
923 </build>
924 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800925 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +0000926 <modules>
927 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000928 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500929 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000930 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -0400931</project>