blob: 2560856c50a1aeffbeb064fbf7459b7d7a2b7bfd [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>
AsterixDB Jenkins478eccb2018-08-31 14:57:31 -070024 <version>0.3.5-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 Blow63104692022-01-04 12:07:17 -050074 <log4j.version>2.17.1</log4j.version>
Michael Blowe8637d02021-10-28 20:11:23 -040075 <snappy.version>1.1.8.4</snappy.version>
Michael Blow55e19802022-01-18 21:11:26 -050076 <jackson.version>2.13.1</jackson.version>
Michael Blow38ca9622018-02-28 11:44:43 -050077
Michael Blowcbfe8f92018-02-28 14:02:38 -050078 <implementation.title>Apache Hyracks and Algebricks - ${project.name}</implementation.title>
Michael Blow38ca9622018-02-28 11:44:43 -050079 <implementation.url>https://asterixdb.apache.org/</implementation.url>
80 <implementation.version>${project.version}</implementation.version>
81 <implementation.vendor>${project.organization.name}</implementation.vendor>
Michael Blowb4c1fb02016-05-09 15:41:00 -070082 </properties>
83 <dependencyManagement>
84 <dependencies>
85 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080086 <groupId>io.netty</groupId>
Michael Blowe8637d02021-10-28 20:11:23 -040087 <artifactId>netty-buffer</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -050088 <version>4.1.73.Final</version>
Michael Blowe8637d02021-10-28 20:11:23 -040089 </dependency>
90 <dependency>
91 <groupId>io.netty</groupId>
92 <artifactId>netty-common</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -050093 <version>4.1.73.Final</version>
Michael Blowe8637d02021-10-28 20:11:23 -040094 </dependency>
95 <dependency>
96 <groupId>io.netty</groupId>
97 <artifactId>netty-codec-http</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -050098 <version>4.1.73.Final</version>
Michael Blowe8637d02021-10-28 20:11:23 -040099 </dependency>
100 <dependency>
101 <groupId>io.netty</groupId>
102 <artifactId>netty-transport</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500103 <version>4.1.73.Final</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400104 </dependency>
105 <dependency>
106 <groupId>io.netty</groupId>
107 <artifactId>netty-codec</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500108 <version>4.1.73.Final</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400109 </dependency>
110 <dependency>
111 <groupId>io.netty</groupId>
112 <artifactId>netty-handler</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500113 <version>4.1.73.Final</version>
Till Westmannea666c92017-02-22 22:25:15 -0800114 </dependency>
115 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700116 <groupId>junit</groupId>
117 <artifactId>junit</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500118 <version>4.13.2</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700119 </dependency>
120 <dependency>
121 <groupId>org.apache.hadoop</groupId>
122 <artifactId>hadoop-yarn-client</artifactId>
123 <version>${hadoop.version}</version>
124 </dependency>
125 <dependency>
126 <groupId>org.apache.hadoop</groupId>
127 <artifactId>hadoop-client</artifactId>
128 <version>${hadoop.version}</version>
129 </dependency>
130 <dependency>
131 <groupId>org.apache.hadoop</groupId>
132 <artifactId>hadoop-common</artifactId>
133 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400134 <exclusions>
135 <exclusion>
136 <groupId>javax.servlet.jsp</groupId>
137 <artifactId>jsp-api</artifactId>
138 </exclusion>
139 <exclusion>
140 <groupId>javax.servlet</groupId>
141 <artifactId>servlet-api</artifactId>
142 </exclusion>
143 <exclusion>
144 <groupId>jdk.tools</groupId>
145 <artifactId>jdk.tools</artifactId>
146 </exclusion>
147 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700148 </dependency>
149 <dependency>
150 <groupId>org.apache.hadoop</groupId>
151 <artifactId>hadoop-hdfs</artifactId>
152 <version>${hadoop.version}</version>
153 </dependency>
154 <dependency>
155 <groupId>org.apache.hadoop</groupId>
156 <artifactId>hadoop-minicluster</artifactId>
157 <version>${hadoop.version}</version>
158 </dependency>
159 <dependency>
160 <groupId>org.apache.hadoop</groupId>
161 <artifactId>hadoop-mapreduce-client-core</artifactId>
162 <version>${hadoop.version}</version>
163 </dependency>
164 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400165 <groupId>org.apache.hadoop</groupId>
166 <artifactId>hadoop-hdfs</artifactId>
167 <version>${hadoop.version}</version>
168 <classifier>tests</classifier>
169 <scope>test</scope>
170 </dependency>
171 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700172 <groupId>commons-io</groupId>
173 <artifactId>commons-io</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500174 <version>2.11.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500175 </dependency>
176 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400177 <groupId>org.apache.commons</groupId>
178 <artifactId>commons-text</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400179 <version>1.9</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400180 </dependency>
181 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800182 <groupId>com.fasterxml.jackson.core</groupId>
183 <artifactId>jackson-databind</artifactId>
Michael Blowe8637d02021-10-28 20:11:23 -0400184 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800185 </dependency>
186 <dependency>
187 <groupId>com.fasterxml.jackson.core</groupId>
188 <artifactId>jackson-core</artifactId>
Michael Blowe8637d02021-10-28 20:11:23 -0400189 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800190 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500191 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500192 <groupId>com.fasterxml.jackson.core</groupId>
193 <artifactId>jackson-annotations</artifactId>
Michael Blowe8637d02021-10-28 20:11:23 -0400194 <version>${jackson.version}</version>
Michael Blow204b2952017-12-07 20:17:47 -0500195 </dependency>
196 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500197 <groupId>com.google.guava</groupId>
198 <artifactId>guava</artifactId>
Michael Blowe8637d02021-10-28 20:11:23 -0400199 <version>31.0.1-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400200 <exclusions>
201 <exclusion>
202 <groupId>com.google.code.findbugs</groupId>
203 <artifactId>jsr305</artifactId>
204 </exclusion>
205 <exclusion>
206 <groupId>com.google.guava</groupId>
207 <artifactId>listenablefuture</artifactId>
208 </exclusion>
209 <exclusion>
210 <groupId>org.checkerframework</groupId>
211 <artifactId>checker-qual</artifactId>
212 </exclusion>
213 <exclusion>
214 <groupId>com.google.j2objc</groupId>
215 <artifactId>j2objc-annotations</artifactId>
216 </exclusion>
217 <exclusion>
218 <groupId>org.codehaus.mojo</groupId>
219 <artifactId>animal-sniffer-annotations</artifactId>
220 </exclusion>
221 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500222 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500223 <dependency>
224 <groupId>org.apache.commons</groupId>
225 <artifactId>commons-lang3</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400226 <version>3.12.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500227 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500228 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500229 <groupId>org.apache.commons</groupId>
230 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500231 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500232 </dependency>
233 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800234 <groupId>org.apache.httpcomponents</groupId>
235 <artifactId>httpcore</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500236 <version>4.4.15</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800237 </dependency>
238 <dependency>
239 <groupId>org.apache.httpcomponents</groupId>
240 <artifactId>httpclient</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500241 <version>4.5.13</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800242 </dependency>
243 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500244 <groupId>org.apache.rat</groupId>
245 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500246 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500247 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500248 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800249 <groupId>org.ini4j</groupId>
250 <artifactId>ini4j</artifactId>
251 <version>0.5.4</version>
252 </dependency>
253 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500254 <groupId>args4j</groupId>
255 <artifactId>args4j</artifactId>
256 <version>2.33</version>
257 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300258 <dependency>
259 <groupId>org.apache.logging.log4j</groupId>
260 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400261 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300262 </dependency>
263 <dependency>
264 <groupId>org.apache.logging.log4j</groupId>
265 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400266 <version>${log4j.version}</version>
267 </dependency>
268 <dependency>
269 <groupId>org.apache.logging.log4j</groupId>
270 <artifactId>log4j-jul</artifactId>
271 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300272 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800273 <dependency>
274 <groupId>org.mockito</groupId>
275 <artifactId>mockito-all</artifactId>
276 <version>2.0.2-beta</version>
277 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400278 <dependency>
279 <groupId>javax.xml.bind</groupId>
280 <artifactId>jaxb-api</artifactId>
281 <version>2.3.0</version>
282 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500283 <dependency>
284 <groupId>org.apache.maven</groupId>
285 <artifactId>maven-project</artifactId>
286 <version>2.2.1</version>
287 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500288 <dependency>
289 <groupId>org.apache.maven</groupId>
290 <artifactId>maven-model</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500291 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500292 </dependency>
293 <dependency>
294 <groupId>org.apache.maven</groupId>
295 <artifactId>maven-artifact</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500296 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500297 </dependency>
298 <dependency>
299 <groupId>org.apache.maven</groupId>
300 <artifactId>maven-compat</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500301 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500302 </dependency>
303 <dependency>
304 <groupId>org.apache.maven</groupId>
305 <artifactId>maven-core</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500306 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400307 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500308 <dependency>
309 <groupId>org.apache.maven</groupId>
310 <artifactId>maven-plugin-api</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500311 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400312 </dependency>
313 <dependency>
314 <groupId>it.unimi.dsi</groupId>
315 <artifactId>fastutil-core</artifactId>
316 <version>8.5.6</version>
317 </dependency>
318 <dependency>
319 <groupId>org.slf4j</groupId>
320 <artifactId>slf4j-simple</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500321 <version>1.7.33</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400322 </dependency>
323 <dependency>
324 <groupId>org.apache.logging.log4j</groupId>
325 <artifactId>log4j-1.2-api</artifactId>
326 <version>${log4j.version}</version>
327 </dependency>
328 <dependency>
329 <groupId>org.mockito</groupId>
330 <artifactId>mockito-core</artifactId>
331 <version>3.10.0</version>
332 </dependency>
333 <dependency>
334 <groupId>org.powermock</groupId>
335 <artifactId>powermock-api-mockito2</artifactId>
336 <version>2.0.9</version>
337 </dependency>
338 <dependency>
339 <groupId>org.powermock</groupId>
340 <artifactId>powermock-module-junit4</artifactId>
341 <version>2.0.9</version>
342 </dependency>
343 <dependency>
344 <groupId>org.powermock</groupId>
345 <artifactId>powermock-core</artifactId>
346 <version>2.0.9</version>
347 </dependency>
348 <dependency>
349 <groupId>org.xerial.snappy</groupId>
350 <artifactId>snappy-java</artifactId>
351 <version>${snappy.version}</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500352 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700353 </dependencies>
354 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000355 <build>
356 <plugins>
357 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400358 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500359 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500360 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500361 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500362 <exclude>**/DEPENDENCIES</exclude>
363 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500364 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500365 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500366 <manifest>
367 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
368 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
369 </manifest>
370 <manifestEntries>
371 <Implementation-Title>${implementation.title}</Implementation-Title>
372 <Implementation-URL>${implementation.url}</Implementation-URL>
373 <Implementation-Version>${implementation.version}</Implementation-Version>
374 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
375 </manifestEntries>
376 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500377 </configuration>
378 </plugin>
379 <plugin>
380 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400381 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400382 <configuration>
383 <failOnWarning>true</failOnWarning>
384 <outputXML>true</outputXML>
385 </configuration>
386 <executions>
387 <execution>
388 <phase>process-test-classes</phase>
389 <goals>
390 <goal>analyze-only</goal>
391 </goals>
392 </execution>
393 </executions>
394 </plugin>
395 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700396 <groupId>org.apache.rat</groupId>
397 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700398 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700399 <execution>
400 <phase>validate</phase>
401 <goals>
402 <goal>check</goal>
403 </goals>
404 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700405 </executions>
406 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500407 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
408 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700409 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800410 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700411 </licenses>
412 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800413 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700414 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500415 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400416 <excludes combine.children="append">
417 <exclude>**/*.iml</exclude>
418 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700419 </configuration>
420 </plugin>
421 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700422 <groupId>org.apache.maven.plugins</groupId>
423 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700424 <configuration>
425 <failIfNoTests>false</failIfNoTests>
426 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800427 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800428 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
Murtadha Hubailc7eb0c52018-05-21 18:01:55 +0300429 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Michael Blowb4c1fb02016-05-09 15:41:00 -0700430 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300431 <systemPropertyVariables>
432 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
433 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700434 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500435 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700436 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500437 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500438 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800439 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400440 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700441 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700442 </plugin>
443 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700444 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300445 <artifactId>maven-failsafe-plugin</artifactId>
446 <configuration>
447 <systemPropertyVariables>
448 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
449 </systemPropertyVariables>
450 </configuration>
451 </plugin>
452 <plugin>
453 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700454 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700455 <configuration>
Michael Blowcedd9612018-07-25 13:25:02 -0400456 <source>${source.jdk.version}</source>
457 <target>${target.jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500458 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700459 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000460 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700461 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700462 <groupId>org.apache.maven.plugins</groupId>
463 <artifactId>maven-remote-resources-plugin</artifactId>
464 <executions>
465 <execution>
466 <goals>
467 <goal>process</goal>
468 </goals>
469 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500470 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700471 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700472 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500473 <properties>
474 <projectName>Apache Hyracks - ${project.name}</projectName>
475 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700476 </configuration>
477 </execution>
478 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800479 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400480 <plugin>
481 <groupId>org.apache.maven.plugins</groupId>
482 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow6a2a4362019-03-27 14:31:16 -0400483 <version>3.0.0</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400484 <executions>
485 <execution>
486 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400487 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400488 <goals>
489 <goal>check</goal>
490 </goals>
491 </execution>
492 </executions>
493 <configuration>
494 <logViolationsToConsole>true</logViolationsToConsole>
495 <checkstyleRules>
496 <module name="Checker">
497 <!-- Checks for whitespace -->
498 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400499 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400500 <module name="TreeWalker">
501 <module name="AvoidStarImport">
502 <property name="allowStaticMemberImports" value="true"/>
503 </module>
504 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400505 </module>
506 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400507 <includes>**/*.java,**/*.jj</includes>
508 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400509 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
510 </configuration>
511 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400512 <plugin>
513 <groupId>org.apache.maven.plugins</groupId>
514 <artifactId>maven-enforcer-plugin</artifactId>
Michael Blow918c5b12017-10-30 14:51:13 -0400515 <version>3.0.0-M1</version>
Michael Blowf53c1c62016-06-17 16:51:59 -0400516 <executions>
517 <execution>
518 <id>enforce-versions</id>
519 <goals>
520 <goal>enforce</goal>
521 </goals>
522 <configuration>
523 <rules>
524 <requireMavenVersion>
525 <version>[3.3.9,)</version>
526 </requireMavenVersion>
527 </rules>
528 </configuration>
529 </execution>
530 </executions>
531 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500532 <plugin>
533 <groupId>org.apache.maven.plugins</groupId>
534 <artifactId>maven-resources-plugin</artifactId>
535 <executions>
536 <execution>
537 <id>default-testResources</id>
538 <goals>
539 <goal>testResources</goal>
540 </goals>
541 <configuration>
542 <skip>${skip.testResources}</skip>
543 </configuration>
544 </execution>
545 </executions>
546 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500547 <plugin>
548 <groupId>net.revelc.code.formatter</groupId>
549 <artifactId>formatter-maven-plugin</artifactId>
550 <executions>
551 <execution>
552 <goals>
553 <goal>${source-format.goal}</goal>
554 </goals>
555 </execution>
556 </executions>
557 <configuration>
558 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
559 <skipFormatting>${source-format.skip}</skipFormatting>
560 </configuration>
561 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400562 <plugin>
563 <groupId>net.revelc.code</groupId>
564 <artifactId>impsort-maven-plugin</artifactId>
565 <executions>
566 <execution>
567 <goals>
568 <goal>${import-sort.goal}</goal>
569 </goals>
570 </execution>
571 </executions>
572 <configuration>
573 <groups>java,javax,org,com,*</groups>
574 <removeUnused>true</removeUnused>
575 <skip>${import-sort.skip}</skip>
576 </configuration>
577 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000578 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700579 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700580 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500581 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800582 <groupId>org.apache.maven.plugins</groupId>
583 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400584 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800585 </plugin>
586 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500587 <groupId>org.apache.rat</groupId>
588 <artifactId>apache-rat-plugin</artifactId>
589 <version>0.12</version>
590 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700591 <plugin>
592 <groupId>net.revelc.code.formatter</groupId>
593 <artifactId>formatter-maven-plugin</artifactId>
594 <version>2.0.1</version>
595 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400596 <plugin>
597 <groupId>net.revelc.code</groupId>
598 <artifactId>impsort-maven-plugin</artifactId>
599 <version>1.2.0</version>
600 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700601 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
602 <plugin>
603 <groupId>org.eclipse.m2e</groupId>
604 <artifactId>lifecycle-mapping</artifactId>
605 <version>1.0.0</version>
606 <configuration>
607 <lifecycleMappingMetadata>
608 <pluginExecutions>
609 <pluginExecution>
610 <pluginExecutionFilter>
611 <groupId>org.apache.rat</groupId>
612 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400613 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700614 <goals>
615 <goal>check</goal>
616 </goals>
617 </pluginExecutionFilter>
618 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400619 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700620 </action>
621 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400622 <pluginExecution>
623 <pluginExecutionFilter>
624 <groupId>org.apache.maven.plugins</groupId>
625 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400626 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400627 <goals>
628 <goal>check</goal>
629 </goals>
630 </pluginExecutionFilter>
631 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400632 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400633 </action>
634 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700635 <pluginExecution>
636 <pluginExecutionFilter>
637 <groupId>org.apache.maven.plugins</groupId>
638 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400639 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700640 <goals>
641 <goal>analyze-only</goal>
642 </goals>
643 </pluginExecutionFilter>
644 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800645 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700646 </action>
647 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800648 <pluginExecution>
649 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800650 <groupId>net.revelc.code.formatter</groupId>
651 <artifactId>formatter-maven-plugin</artifactId>
652 <versionRange>[2.0.1,)</versionRange>
653 <goals>
654 <goal>format</goal>
655 </goals>
656 </pluginExecutionFilter>
657 <action>
658 <ignore></ignore>
659 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800660 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700661 </pluginExecutions>
662 </lifecycleMappingMetadata>
663 </configuration>
664 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800665 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500666 <groupId>org.codehaus.mojo</groupId>
667 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400668 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800669 </plugin>
670 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500671 <groupId>org.apache.maven.plugins</groupId>
672 <artifactId>maven-scm-plugin</artifactId>
673 <version>1.9.5</version>
674 </plugin>
675 <plugin>
676 <groupId>org.codehaus.mojo</groupId>
677 <artifactId>appassembler-maven-plugin</artifactId>
678 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800679 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400680 <plugin>
681 <groupId>org.apache.maven.plugins</groupId>
682 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400683 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400684 </plugin>
685 <plugin>
686 <groupId>org.apache.maven.plugins</groupId>
687 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400688 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400689 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400690 <plugin>
691 <groupId>org.apache.hyracks</groupId>
692 <artifactId>license-automation-plugin</artifactId>
693 <version>${project.version}</version>
694 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400695 <plugin>
696 <groupId>org.apache.maven.plugins</groupId>
697 <artifactId>maven-assembly-plugin</artifactId>
698 <version>3.1.0</version>
699 </plugin>
700 <plugin>
701 <groupId>org.apache.maven.plugins</groupId>
702 <artifactId>maven-antrun-plugin</artifactId>
703 <version>1.8</version>
704 </plugin>
705 <plugin>
706 <groupId>org.apache.maven.plugins</groupId>
707 <artifactId>maven-clean-plugin</artifactId>
708 <version>3.0.0</version>
709 </plugin>
710 <plugin>
711 <groupId>org.apache.maven.plugins</groupId>
712 <artifactId>maven-jar-plugin</artifactId>
713 <version>3.0.2</version>
714 </plugin>
715 <plugin>
716 <groupId>org.codehaus.mojo</groupId>
717 <artifactId>build-helper-maven-plugin</artifactId>
718 <version>3.0.0</version>
719 </plugin>
720 <plugin>
721 <groupId>org.apache.maven.plugins</groupId>
722 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowcedd9612018-07-25 13:25:02 -0400723 <version>3.1.1</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400724 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400725 <plugin>
726 <groupId>org.apache.maven.doxia</groupId>
727 <artifactId>doxia-maven-plugin</artifactId>
728 <version>1.1.4</version>
729 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700730 </plugins>
731 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000732 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800733 <profiles>
734 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400735 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700736 <activation>
737 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400738 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700739 </file>
740 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400741 <properties>
742 <skip.assembly>true</skip.assembly>
743 </properties>
744 </profile>
745 <profile>
746 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700747 <build>
748 <plugins>
749 <plugin>
750 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500751 <artifactId>maven-jar-plugin</artifactId>
752 <configuration>
753 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500754 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500755 <manifest>
756 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
757 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
758 </manifest>
759 </archive>
760 </configuration>
761 </plugin>
762 <plugin>
763 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700764 <artifactId>maven-assembly-plugin</artifactId>
765 <!-- We override the configuration plugin to override the descriptor to use for building
766 the source release zip. Specifically, we would like to control the inclusions/exclusions.
767 For example, we exclude the KEYS file from the zip -->
768 <executions>
769 <execution>
770 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
771 the apache parent POM under the apache-release profile -->
772 <id>source-release-assembly</id>
773 <phase>package</phase>
774 <goals>
775 <goal>single</goal>
776 </goals>
777 <!-- combine.self should be override to replace the configuration in the parent POM -->
778 <configuration combine.self="override">
779 <descriptors>
780 <descriptor>src/main/assembly/source.xml</descriptor>
781 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400782 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700783 </configuration>
784 </execution>
785 </executions>
786 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700787 <plugin>
788 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800789 <artifactId>maven-gpg-plugin</artifactId>
790 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700791 <executions>
792 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800793 <id>sign-artifacts</id>
794 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700795 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800796 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700797 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700798 </execution>
799 </executions>
800 </plugin>
801 </plugins>
802 </build>
803 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700804 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400805 <id>coverage</id>
806 <activation>
807 <property>
808 <name>coverage</name>
809 </property>
810 </activation>
811 <build>
812 <plugins>
813 <plugin>
814 <groupId>org.jacoco</groupId>
815 <artifactId>jacoco-maven-plugin</artifactId>
816 <version>${jacoco.version}</version>
817 <executions>
818 <execution>
819 <id>default-prepare-agent</id>
820 <goals>
821 <goal>prepare-agent</goal>
822 </goals>
823 <configuration>
824 <propertyName>coverageArgLine</propertyName>
825 </configuration>
826 </execution>
827 <execution>
828 <id>default-prepare-agent-integration</id>
829 <goals>
830 <goal>prepare-agent-integration</goal>
831 </goals>
832 <configuration>
833 <propertyName>coverageArgLine</propertyName>
834 </configuration>
835 </execution>
836 </executions>
837 </plugin>
838 </plugins>
839 </build>
840 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400841 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400842 </properties>
843 </profile>
844 <profile>
845 <id>no-coverage</id>
846 <activation>
847 <property>
848 <name>!coverage</name>
849 </property>
850 </activation>
851 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400852 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400853 </properties>
854 </profile>
855 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -0500856 <id>integration-tests-only</id>
857 <properties>
858 <test.includes/>
859 <failIfNoTests>false</failIfNoTests>
860 </properties>
861 </profile>
Michael Blowcedd9612018-07-25 13:25:02 -0400862 <profile>
863 <id>java8</id>
864 <activation>
Michael Blow0de90812019-08-23 16:27:29 -0400865 <jdk>[1.8,)</jdk>
Michael Blowcedd9612018-07-25 13:25:02 -0400866 </activation>
867 <properties>
868 <target.jdk.version>8</target.jdk.version>
869 </properties>
870 </profile>
871 <profile>
Michael Blowcedd9612018-07-25 13:25:02 -0400872 <id>java8-bootclasspath</id>
873 <activation>
874 <property>
875 <name>java8-bootclasspath</name>
876 </property>
877 </activation>
878 <properties>
879 <target.jdk.version>8</target.jdk.version>
880 </properties>
881 <build>
882 <plugins>
883 <plugin>
884 <groupId>org.apache.maven.plugins</groupId>
885 <artifactId>maven-compiler-plugin</artifactId>
886 <configuration>
887 <compilerArgs combine.children="append">
888 <arg>-bootclasspath</arg>
889 <arg>${java8-bootclasspath}</arg>
890 </compilerArgs>
891 </configuration>
892 </plugin>
893 </plugins>
894 </build>
895 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800896 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +0000897 <modules>
898 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000899 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500900 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000901 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -0400902</project>