blob: 6793d246379b727d5f8fccf373a0232d42cb80d6 [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 Maxonf20e64f2024-03-05 00:02:55 -080024 <version>0.3.10-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>
Ian Maxon2c568d02025-01-06 14:19:13 -080052 <maven.compiler.release>21</maven.compiler.release>
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 Blowc831a8b2024-12-02 21:38:38 -050072 <hadoop.version>3.4.1</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow2a7770b2024-01-09 19:21:53 -050074 <log4j.version>2.22.1</log4j.version>
Michael Blow6baf8ff2023-10-04 20:46:43 -040075 <snappy.version>1.1.10.5</snappy.version>
Michael Blow8b67de42023-06-28 11:14:13 -040076 <jackson.version>2.14.3</jackson.version>
Michael Blow91a7e802023-01-12 18:51:33 -050077 <jackson-databind.version>${jackson.version}</jackson-databind.version>
Michael Blowfbd048c2025-02-11 16:50:40 -050078 <netty.version>4.1.118.Final</netty.version>
Wail Alkowaileet72e69c62024-05-09 10:14:37 -070079 <asm.version>9.3</asm.version>
Savyasach Reddy216b3522025-01-30 17:14:52 +053080 <awsjavasdk.version>2.29.27</awsjavasdk.version>
81 <gcsjavasdk.version>2.45.0</gcsjavasdk.version>
Michael Blow38ca9622018-02-28 11:44:43 -050082
Michael Blowcbfe8f92018-02-28 14:02:38 -050083 <implementation.title>Apache Hyracks and Algebricks - ${project.name}</implementation.title>
Michael Blow38ca9622018-02-28 11:44:43 -050084 <implementation.url>https://asterixdb.apache.org/</implementation.url>
85 <implementation.version>${project.version}</implementation.version>
86 <implementation.vendor>${project.organization.name}</implementation.vendor>
Michael Blowb4c1fb02016-05-09 15:41:00 -070087 </properties>
88 <dependencyManagement>
89 <dependencies>
90 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080091 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -040092 <artifactId>netty-buffer</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -050093 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -040094 </dependency>
95 <dependency>
96 <groupId>io.netty</groupId>
97 <artifactId>netty-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -050098 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -040099 </dependency>
100 <dependency>
101 <groupId>io.netty</groupId>
102 <artifactId>netty-codec-http</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500103 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400104 </dependency>
105 <dependency>
106 <groupId>io.netty</groupId>
107 <artifactId>netty-transport</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500108 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400109 </dependency>
110 <dependency>
111 <groupId>io.netty</groupId>
112 <artifactId>netty-codec</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500113 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400114 </dependency>
115 <dependency>
116 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400117 <artifactId>netty-codec-dns</artifactId>
118 <version>${netty.version}</version>
119 </dependency>
120 <dependency>
121 <groupId>io.netty</groupId>
122 <artifactId>netty-codec-socks</artifactId>
123 <version>${netty.version}</version>
124 </dependency>
125 <dependency>
126 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400127 <artifactId>netty-handler</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500128 <version>${netty.version}</version>
Till Westmannea666c92017-02-22 22:25:15 -0800129 </dependency>
130 <dependency>
Michael Blow178ad762022-06-24 17:38:08 -0400131 <groupId>io.netty</groupId>
Hussain Towaileb35c42ac2023-05-23 10:44:10 +0300132 <artifactId>netty-handler-proxy</artifactId>
133 <version>${netty.version}</version>
134 </dependency>
135 <dependency>
136 <groupId>io.netty</groupId>
Michael Blow178ad762022-06-24 17:38:08 -0400137 <artifactId>netty-transport-classes-epoll</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500138 <version>${netty.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700139 </dependency>
140 <dependency>
Michael Blow7d462c32021-11-05 11:49:19 -0400141 <groupId>io.netty</groupId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500142 <artifactId>netty-transport-native-epoll</artifactId>
143 <version>${netty.version}</version>
144 </dependency>
145 <dependency>
146 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400147 <artifactId>netty-resolver</artifactId>
148 <version>${netty.version}</version>
149 </dependency>
150 <dependency>
151 <groupId>io.netty</groupId>
Michael Blow7d462c32021-11-05 11:49:19 -0400152 <artifactId>netty-resolver-dns</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500153 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400154 </dependency>
155 <dependency>
156 <groupId>io.netty</groupId>
157 <artifactId>netty-codec-http2</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500158 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400159 </dependency>
160 <dependency>
161 <groupId>io.netty</groupId>
162 <artifactId>netty-transport-native-unix-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500163 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400164 </dependency>
165 <dependency>
Hussain Towaileb8d1721f2023-06-08 19:34:07 +0300166 <groupId>io.netty</groupId>
167 <artifactId>netty-all</artifactId>
168 <version>${netty.version}</version>
169 <scope>test</scope>
170 </dependency>
171 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700172 <groupId>junit</groupId>
173 <artifactId>junit</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500174 <version>4.13.2</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700175 </dependency>
176 <dependency>
177 <groupId>org.apache.hadoop</groupId>
178 <artifactId>hadoop-yarn-client</artifactId>
179 <version>${hadoop.version}</version>
180 </dependency>
181 <dependency>
182 <groupId>org.apache.hadoop</groupId>
183 <artifactId>hadoop-client</artifactId>
184 <version>${hadoop.version}</version>
185 </dependency>
186 <dependency>
187 <groupId>org.apache.hadoop</groupId>
188 <artifactId>hadoop-common</artifactId>
189 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400190 <exclusions>
191 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300192 <groupId>net.minidev</groupId>
193 <artifactId>json-smart</artifactId>
194 </exclusion>
195 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300196 <groupId>com.nimbusds</groupId>
197 <artifactId>nimbus-jose-jwt</artifactId>
198 </exclusion>
199 <exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400200 <groupId>javax.servlet.jsp</groupId>
201 <artifactId>jsp-api</artifactId>
202 </exclusion>
203 <exclusion>
204 <groupId>javax.servlet</groupId>
205 <artifactId>servlet-api</artifactId>
206 </exclusion>
207 <exclusion>
208 <groupId>jdk.tools</groupId>
209 <artifactId>jdk.tools</artifactId>
210 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700211 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500212 <groupId>org.slf4j</groupId>
213 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700214 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700215 <exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700216 <groupId>org.slf4j</groupId>
217 <artifactId>slf4j-log4j12</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300218 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400219 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700220 </dependency>
221 <dependency>
222 <groupId>org.apache.hadoop</groupId>
223 <artifactId>hadoop-hdfs</artifactId>
224 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700225 <exclusions>
226 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500227 <groupId>io.netty</groupId>
228 <artifactId>netty-all</artifactId>
229 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500230 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500231 <groupId>org.slf4j</groupId>
232 <artifactId>slf4j-reload4j</artifactId>
233 </exclusion>
234 <exclusion>
235 <groupId>ch.qos.reload4j</groupId>
236 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700237 </exclusion>
238 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700239 </dependency>
240 <dependency>
241 <groupId>org.apache.hadoop</groupId>
242 <artifactId>hadoop-minicluster</artifactId>
243 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700244 <exclusions>
245 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500246 <groupId>org.slf4j</groupId>
247 <artifactId>slf4j-reload4j</artifactId>
248 </exclusion>
249 <exclusion>
250 <groupId>ch.qos.reload4j</groupId>
251 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700252 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300253 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700254 <groupId>log4j</groupId>
255 <artifactId>log4j</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300256 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700257 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700258 </dependency>
259 <dependency>
260 <groupId>org.apache.hadoop</groupId>
261 <artifactId>hadoop-mapreduce-client-core</artifactId>
262 <version>${hadoop.version}</version>
263 </dependency>
264 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400265 <groupId>org.apache.hadoop</groupId>
266 <artifactId>hadoop-hdfs</artifactId>
267 <version>${hadoop.version}</version>
268 <classifier>tests</classifier>
269 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700270 <exclusions>
271 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500272 <groupId>org.slf4j</groupId>
273 <artifactId>slf4j-reload4j</artifactId>
274 </exclusion>
275 <exclusion>
276 <groupId>ch.qos.reload4j</groupId>
277 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700278 </exclusion>
279 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400280 </dependency>
281 <dependency>
Michael Blow91a7e802023-01-12 18:51:33 -0500282 <groupId>com.e-movimento.tinytools</groupId>
283 <artifactId>privilegedaccessor</artifactId>
284 <version>1.3</version>
285 </dependency>
286 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700287 <groupId>commons-io</groupId>
288 <artifactId>commons-io</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500289 <version>2.18.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500290 </dependency>
291 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400292 <groupId>org.apache.commons</groupId>
293 <artifactId>commons-text</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500294 <version>1.12.0</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400295 </dependency>
296 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800297 <groupId>com.fasterxml.jackson.core</groupId>
298 <artifactId>jackson-databind</artifactId>
Michael Blow91a7e802023-01-12 18:51:33 -0500299 <version>${jackson-databind.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800300 </dependency>
301 <dependency>
302 <groupId>com.fasterxml.jackson.core</groupId>
303 <artifactId>jackson-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400304 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800305 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500306 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500307 <groupId>com.fasterxml.jackson.core</groupId>
308 <artifactId>jackson-annotations</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400309 <version>${jackson.version}</version>
Michael Blow204b2952017-12-07 20:17:47 -0500310 </dependency>
311 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500312 <groupId>com.google.guava</groupId>
313 <artifactId>guava</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500314 <version>33.3.1-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400315 <exclusions>
316 <exclusion>
317 <groupId>com.google.code.findbugs</groupId>
318 <artifactId>jsr305</artifactId>
319 </exclusion>
320 <exclusion>
321 <groupId>com.google.guava</groupId>
322 <artifactId>listenablefuture</artifactId>
323 </exclusion>
324 <exclusion>
325 <groupId>org.checkerframework</groupId>
326 <artifactId>checker-qual</artifactId>
327 </exclusion>
328 <exclusion>
329 <groupId>com.google.j2objc</groupId>
330 <artifactId>j2objc-annotations</artifactId>
331 </exclusion>
332 <exclusion>
333 <groupId>org.codehaus.mojo</groupId>
334 <artifactId>animal-sniffer-annotations</artifactId>
335 </exclusion>
336 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500337 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500338 <dependency>
339 <groupId>org.apache.commons</groupId>
340 <artifactId>commons-lang3</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500341 <version>3.17.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500342 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500343 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500344 <groupId>org.apache.commons</groupId>
345 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500346 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500347 </dependency>
348 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800349 <groupId>org.apache.httpcomponents</groupId>
350 <artifactId>httpcore</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400351 <version>4.4.16</version>
352 </dependency>
353 <dependency>
354 <groupId>org.apache.httpcomponents</groupId>
355 <artifactId>httpcore-nio</artifactId>
356 <version>4.4.16</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800357 </dependency>
358 <dependency>
359 <groupId>org.apache.httpcomponents</groupId>
360 <artifactId>httpclient</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400361 <version>4.5.14</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800362 </dependency>
363 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500364 <groupId>org.apache.rat</groupId>
365 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500366 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500367 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500368 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800369 <groupId>org.ini4j</groupId>
370 <artifactId>ini4j</artifactId>
371 <version>0.5.4</version>
372 </dependency>
373 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500374 <groupId>args4j</groupId>
375 <artifactId>args4j</artifactId>
376 <version>2.33</version>
377 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300378 <dependency>
379 <groupId>org.apache.logging.log4j</groupId>
380 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400381 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300382 </dependency>
383 <dependency>
384 <groupId>org.apache.logging.log4j</groupId>
385 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400386 <version>${log4j.version}</version>
387 </dependency>
388 <dependency>
389 <groupId>org.apache.logging.log4j</groupId>
390 <artifactId>log4j-jul</artifactId>
391 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300392 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800393 <dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400394 <groupId>javax.xml.bind</groupId>
395 <artifactId>jaxb-api</artifactId>
396 <version>2.3.0</version>
397 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500398 <dependency>
399 <groupId>org.apache.maven</groupId>
400 <artifactId>maven-project</artifactId>
401 <version>2.2.1</version>
402 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500403 <dependency>
404 <groupId>org.apache.maven</groupId>
405 <artifactId>maven-model</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500406 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500407 </dependency>
408 <dependency>
409 <groupId>org.apache.maven</groupId>
410 <artifactId>maven-artifact</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500411 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500412 </dependency>
413 <dependency>
414 <groupId>org.apache.maven</groupId>
415 <artifactId>maven-compat</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500416 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500417 </dependency>
418 <dependency>
419 <groupId>org.apache.maven</groupId>
420 <artifactId>maven-core</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500421 <version>3.8.4</version>
Michael Blow8363dcb2021-12-04 06:02:34 -0500422 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500423 <dependency>
424 <groupId>org.apache.maven</groupId>
425 <artifactId>maven-plugin-api</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500426 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400427 </dependency>
428 <dependency>
Michael Blowfa0ddb62022-01-22 08:08:51 -0500429 <groupId>org.apache.maven.plugin-tools</groupId>
430 <artifactId>maven-plugin-annotations</artifactId>
431 <version>3.6.4</version>
432 </dependency>
433 <dependency>
434 <groupId>org.apache.maven.plugins</groupId>
435 <artifactId>maven-remote-resources-plugin</artifactId>
436 <version>1.7.0</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500437 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700438 <dependency>
439 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400440 <artifactId>fastutil-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400441 <version>8.5.6</version>
Rui Guo4ce394b2020-07-23 07:35:59 -0700442 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700443 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700444 <groupId>org.slf4j</groupId>
445 <artifactId>slf4j-simple</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400446 <version>1.7.36</version>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700447 </dependency>
448 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700449 <groupId>org.apache.logging.log4j</groupId>
450 <artifactId>log4j-1.2-api</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400451 <version>${log4j.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700452 </dependency>
Ian Maxon94eb3c22021-06-03 12:31:18 -0700453 <dependency>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700454 <groupId>org.mockito</groupId>
455 <artifactId>mockito-core</artifactId>
456 <version>3.10.0</version>
457 </dependency>
458 <dependency>
459 <groupId>org.powermock</groupId>
460 <artifactId>powermock-api-mockito2</artifactId>
461 <version>2.0.9</version>
462 </dependency>
463 <dependency>
464 <groupId>org.powermock</groupId>
465 <artifactId>powermock-module-junit4</artifactId>
466 <version>2.0.9</version>
467 </dependency>
468 <dependency>
469 <groupId>org.powermock</groupId>
470 <artifactId>powermock-core</artifactId>
471 <version>2.0.9</version>
472 </dependency>
Wail Alkowaileet790ce542021-08-07 16:21:17 -0700473 <dependency>
474 <groupId>org.xerial.snappy</groupId>
475 <artifactId>snappy-java</artifactId>
476 <version>${snappy.version}</version>
477 </dependency>
Hussain Towailebaedda352023-05-22 04:45:42 +0300478 <!-- Manually included to avoid CVE-2023-1370 -->
479 <dependency>
480 <groupId>net.minidev</groupId>
481 <artifactId>json-smart</artifactId>
482 <version>2.4.11</version>
483 </dependency>
Wail Alkowaileet72e69c62024-05-09 10:14:37 -0700484 <dependency>
485 <groupId>org.ow2.asm</groupId>
486 <artifactId>asm</artifactId>
487 <version>${asm.version}</version>
488 </dependency>
489 <dependency>
490 <groupId>org.ow2.asm</groupId>
491 <artifactId>asm-commons</artifactId>
492 <version>${asm.version}</version>
493 </dependency>
494 <dependency>
495 <groupId>org.ow2.asm</groupId>
496 <artifactId>asm-analysis</artifactId>
497 <version>${asm.version}</version>
498 </dependency>
499 <dependency>
500 <groupId>org.ow2.asm</groupId>
501 <artifactId>asm-tree</artifactId>
502 <version>${asm.version}</version>
503 </dependency>
504 <dependency>
505 <groupId>org.ow2.asm</groupId>
506 <artifactId>asm-util</artifactId>
507 <version>${asm.version}</version>
508 </dependency>
Michael Blow36e78172024-11-27 21:01:58 -0500509 <dependency>
510 <groupId>org.apache.hadoop</groupId>
511 <artifactId>hadoop-client-runtime</artifactId>
512 <version>3.4.1</version>
513 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700514 </dependencies>
515 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000516 <build>
517 <plugins>
518 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400519 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500520 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500521 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500522 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500523 <exclude>**/DEPENDENCIES</exclude>
524 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500525 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500526 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500527 <manifest>
528 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
529 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
530 </manifest>
531 <manifestEntries>
532 <Implementation-Title>${implementation.title}</Implementation-Title>
533 <Implementation-URL>${implementation.url}</Implementation-URL>
534 <Implementation-Version>${implementation.version}</Implementation-Version>
535 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
536 </manifestEntries>
537 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500538 </configuration>
539 </plugin>
540 <plugin>
541 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400542 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400543 <configuration>
544 <failOnWarning>true</failOnWarning>
545 <outputXML>true</outputXML>
546 </configuration>
547 <executions>
548 <execution>
549 <phase>process-test-classes</phase>
550 <goals>
551 <goal>analyze-only</goal>
552 </goals>
553 </execution>
554 </executions>
555 </plugin>
556 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700557 <groupId>org.apache.rat</groupId>
558 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700559 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700560 <execution>
561 <phase>validate</phase>
562 <goals>
563 <goal>check</goal>
564 </goals>
565 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700566 </executions>
567 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500568 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
569 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700570 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800571 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700572 </licenses>
573 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800574 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700575 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500576 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400577 <excludes combine.children="append">
578 <exclude>**/*.iml</exclude>
579 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700580 </configuration>
581 </plugin>
582 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700583 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700584 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700585 <configuration>
Michael Blow2b057012017-12-07 22:20:39 -0500586 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700587 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000588 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700589 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700590 <groupId>org.apache.maven.plugins</groupId>
591 <artifactId>maven-remote-resources-plugin</artifactId>
592 <executions>
593 <execution>
594 <goals>
595 <goal>process</goal>
596 </goals>
597 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500598 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700599 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700600 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500601 <properties>
602 <projectName>Apache Hyracks - ${project.name}</projectName>
603 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700604 </configuration>
605 </execution>
606 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800607 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400608 <plugin>
609 <groupId>org.apache.maven.plugins</groupId>
610 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400611 <version>3.3.1</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400612 <executions>
613 <execution>
614 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400615 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400616 <goals>
617 <goal>check</goal>
618 </goals>
619 </execution>
620 </executions>
621 <configuration>
622 <logViolationsToConsole>true</logViolationsToConsole>
623 <checkstyleRules>
624 <module name="Checker">
625 <!-- Checks for whitespace -->
626 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400627 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400628 <module name="TreeWalker">
629 <module name="AvoidStarImport">
630 <property name="allowStaticMemberImports" value="true"/>
631 </module>
632 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400633 </module>
634 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400635 <includes>**/*.java,**/*.jj</includes>
636 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400637 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
638 </configuration>
639 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400640 <plugin>
641 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400642 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400643 <executions>
644 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400645 <id>check-pom-packaging</id>
646 <phase>validate</phase>
647 <goals>
648 <goal>run</goal>
649 </goals>
650 <configuration>
651 <exportAntProperties>true</exportAntProperties>
652 <target xmlns:unless="ant:unless">
653 <condition property="skipPomEnforcement">
654 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
655 </condition>
656 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
657 </target>
658 </configuration>
659 </execution>
660 </executions>
661 </plugin>
662 <plugin>
663 <groupId>org.apache.maven.plugins</groupId>
664 <artifactId>maven-enforcer-plugin</artifactId>
665 <executions>
666 <execution>
667 <id>ensure-no-tests-for-pom-packaging</id>
668 <phase>validate</phase>
669 <goals>
670 <goal>enforce</goal>
671 </goals>
672 <configuration>
673 <rules>
674 <requireFilesDontExist>
675 <files>
676 <file>${project.build.testSourceDirectory}</file>
677 </files>
678 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
679 </requireFilesDontExist>
680 </rules>
681 <skip>${skipPomEnforcement}</skip>
682 </configuration>
683 </execution>
684 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400685 <id>enforce-versions</id>
686 <goals>
687 <goal>enforce</goal>
688 </goals>
689 <configuration>
690 <rules>
691 <requireMavenVersion>
692 <version>[3.3.9,)</version>
693 </requireMavenVersion>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700694 <requireJavaVersion>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400695 <version>[${maven.compiler.release},)</version>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700696 </requireJavaVersion>
697 </rules>
698 </configuration>
699 </execution>
700 <execution>
701 <id>ensure-no-duplicate-deps</id>
702 <goals>
703 <goal>enforce</goal>
704 </goals>
705 <configuration>
706 <rules>
707 <banDuplicatePomDependencyVersions/>
Michael Blowf53c1c62016-06-17 16:51:59 -0400708 </rules>
709 </configuration>
710 </execution>
711 </executions>
712 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500713 <plugin>
714 <groupId>org.apache.maven.plugins</groupId>
715 <artifactId>maven-resources-plugin</artifactId>
716 <executions>
717 <execution>
718 <id>default-testResources</id>
719 <goals>
720 <goal>testResources</goal>
721 </goals>
722 <configuration>
723 <skip>${skip.testResources}</skip>
724 </configuration>
725 </execution>
726 </executions>
727 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500728 <plugin>
729 <groupId>net.revelc.code.formatter</groupId>
730 <artifactId>formatter-maven-plugin</artifactId>
731 <executions>
732 <execution>
733 <goals>
734 <goal>${source-format.goal}</goal>
735 </goals>
736 </execution>
737 </executions>
738 <configuration>
739 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
740 <skipFormatting>${source-format.skip}</skipFormatting>
741 </configuration>
742 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400743 <plugin>
744 <groupId>net.revelc.code</groupId>
745 <artifactId>impsort-maven-plugin</artifactId>
746 <executions>
747 <execution>
748 <goals>
749 <goal>${import-sort.goal}</goal>
750 </goals>
751 </execution>
752 </executions>
753 <configuration>
754 <groups>java,javax,org,com,*</groups>
755 <removeUnused>true</removeUnused>
756 <skip>${import-sort.skip}</skip>
757 </configuration>
758 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000759 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700760 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700761 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500762 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800763 <groupId>org.apache.maven.plugins</groupId>
764 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400765 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800766 </plugin>
767 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500768 <groupId>org.apache.rat</groupId>
769 <artifactId>apache-rat-plugin</artifactId>
770 <version>0.12</version>
771 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700772 <plugin>
773 <groupId>net.revelc.code.formatter</groupId>
774 <artifactId>formatter-maven-plugin</artifactId>
775 <version>2.0.1</version>
776 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400777 <plugin>
778 <groupId>net.revelc.code</groupId>
779 <artifactId>impsort-maven-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400780 <version>1.9.0</version>
781 <dependencies>
782 <dependency>
783 <groupId>com.github.javaparser</groupId>
784 <artifactId>javaparser-core</artifactId>
Michael Blowae1291d2024-12-29 11:06:39 -0500785 <version>3.26.3</version>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400786 </dependency>
787 </dependencies>
Michael Blowef85fb02019-03-22 13:40:35 -0400788 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700789 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
790 <plugin>
791 <groupId>org.eclipse.m2e</groupId>
792 <artifactId>lifecycle-mapping</artifactId>
793 <version>1.0.0</version>
794 <configuration>
795 <lifecycleMappingMetadata>
796 <pluginExecutions>
797 <pluginExecution>
798 <pluginExecutionFilter>
799 <groupId>org.apache.rat</groupId>
800 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400801 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700802 <goals>
803 <goal>check</goal>
804 </goals>
805 </pluginExecutionFilter>
806 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400807 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700808 </action>
809 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400810 <pluginExecution>
811 <pluginExecutionFilter>
812 <groupId>org.apache.maven.plugins</groupId>
813 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400814 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400815 <goals>
816 <goal>check</goal>
817 </goals>
818 </pluginExecutionFilter>
819 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400820 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400821 </action>
822 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700823 <pluginExecution>
824 <pluginExecutionFilter>
825 <groupId>org.apache.maven.plugins</groupId>
826 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400827 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700828 <goals>
829 <goal>analyze-only</goal>
830 </goals>
831 </pluginExecutionFilter>
832 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800833 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700834 </action>
835 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800836 <pluginExecution>
837 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800838 <groupId>net.revelc.code.formatter</groupId>
839 <artifactId>formatter-maven-plugin</artifactId>
840 <versionRange>[2.0.1,)</versionRange>
841 <goals>
842 <goal>format</goal>
843 </goals>
844 </pluginExecutionFilter>
845 <action>
846 <ignore></ignore>
847 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800848 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700849 </pluginExecutions>
850 </lifecycleMappingMetadata>
851 </configuration>
852 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800853 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500854 <groupId>org.codehaus.mojo</groupId>
855 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400856 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800857 </plugin>
858 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500859 <groupId>org.apache.maven.plugins</groupId>
860 <artifactId>maven-scm-plugin</artifactId>
861 <version>1.9.5</version>
862 </plugin>
863 <plugin>
864 <groupId>org.codehaus.mojo</groupId>
865 <artifactId>appassembler-maven-plugin</artifactId>
866 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800867 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400868 <plugin>
869 <groupId>org.apache.maven.plugins</groupId>
870 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400871 <version>2.21.0</version>
Ian Maxon0cde5152025-02-20 14:22:00 -0800872 <configuration>
873 <failIfNoTests>false</failIfNoTests>
874 <forkCount>1</forkCount>
875 <reuseForks>false</reuseForks>
876 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
877 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
878 --add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED --add-opens=java.management/sun.management=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED
879 </argLine>
880 <systemPropertyVariables>
881 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
882 </systemPropertyVariables>
883 <includes>
884 <include>${test.includes}</include>
885 </includes>
886 <excludes combine.children="append">
887 <exclude>${test.excludes}</exclude>
888 </excludes>
889 <skipTests>${skip.surefire.tests}</skipTests>
890 </configuration>
Michael Blow10a74862017-05-23 16:55:39 -0400891 </plugin>
892 <plugin>
893 <groupId>org.apache.maven.plugins</groupId>
894 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400895 <version>2.21.0</version>
Ian Maxon0cde5152025-02-20 14:22:00 -0800896 <configuration>
897 <systemPropertyVariables>
898 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
899 </systemPropertyVariables>
900 </configuration>
Michael Blow10a74862017-05-23 16:55:39 -0400901 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400902 <plugin>
903 <groupId>org.apache.hyracks</groupId>
904 <artifactId>license-automation-plugin</artifactId>
905 <version>${project.version}</version>
906 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400907 <plugin>
908 <groupId>org.apache.maven.plugins</groupId>
909 <artifactId>maven-assembly-plugin</artifactId>
910 <version>3.1.0</version>
911 </plugin>
912 <plugin>
913 <groupId>org.apache.maven.plugins</groupId>
914 <artifactId>maven-antrun-plugin</artifactId>
915 <version>1.8</version>
916 </plugin>
917 <plugin>
918 <groupId>org.apache.maven.plugins</groupId>
919 <artifactId>maven-clean-plugin</artifactId>
920 <version>3.0.0</version>
921 </plugin>
922 <plugin>
923 <groupId>org.apache.maven.plugins</groupId>
924 <artifactId>maven-jar-plugin</artifactId>
925 <version>3.0.2</version>
926 </plugin>
927 <plugin>
928 <groupId>org.codehaus.mojo</groupId>
929 <artifactId>build-helper-maven-plugin</artifactId>
930 <version>3.0.0</version>
931 </plugin>
932 <plugin>
933 <groupId>org.apache.maven.plugins</groupId>
934 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400935 <version>3.6.0</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400936 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400937 <plugin>
938 <groupId>org.apache.maven.doxia</groupId>
939 <artifactId>doxia-maven-plugin</artifactId>
940 <version>1.1.4</version>
941 </plugin>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700942 <plugin>
943 <groupId>org.apache.maven.plugins</groupId>
944 <artifactId>maven-enforcer-plugin</artifactId>
945 <version>3.0.0-M3</version>
946 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700947 </plugins>
948 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000949 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800950 <profiles>
951 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400952 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700953 <activation>
954 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400955 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700956 </file>
957 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400958 <properties>
959 <skip.assembly>true</skip.assembly>
960 </properties>
961 </profile>
962 <profile>
963 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700964 <build>
965 <plugins>
966 <plugin>
967 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500968 <artifactId>maven-jar-plugin</artifactId>
969 <configuration>
970 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500971 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500972 <manifest>
973 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
974 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
975 </manifest>
976 </archive>
977 </configuration>
978 </plugin>
979 <plugin>
980 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700981 <artifactId>maven-assembly-plugin</artifactId>
982 <!-- We override the configuration plugin to override the descriptor to use for building
983 the source release zip. Specifically, we would like to control the inclusions/exclusions.
984 For example, we exclude the KEYS file from the zip -->
985 <executions>
986 <execution>
987 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
988 the apache parent POM under the apache-release profile -->
989 <id>source-release-assembly</id>
990 <phase>package</phase>
991 <goals>
992 <goal>single</goal>
993 </goals>
994 <!-- combine.self should be override to replace the configuration in the parent POM -->
995 <configuration combine.self="override">
996 <descriptors>
997 <descriptor>src/main/assembly/source.xml</descriptor>
998 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400999 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001000 </configuration>
1001 </execution>
1002 </executions>
1003 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001004 <plugin>
1005 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -08001006 <artifactId>maven-gpg-plugin</artifactId>
1007 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001008 <executions>
1009 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -08001010 <id>sign-artifacts</id>
1011 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001012 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -08001013 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001014 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001015 </execution>
1016 </executions>
1017 </plugin>
1018 </plugins>
1019 </build>
1020 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -07001021 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -04001022 <id>coverage</id>
1023 <activation>
1024 <property>
1025 <name>coverage</name>
1026 </property>
1027 </activation>
1028 <build>
1029 <plugins>
1030 <plugin>
1031 <groupId>org.jacoco</groupId>
1032 <artifactId>jacoco-maven-plugin</artifactId>
1033 <version>${jacoco.version}</version>
1034 <executions>
1035 <execution>
1036 <id>default-prepare-agent</id>
1037 <goals>
1038 <goal>prepare-agent</goal>
1039 </goals>
1040 <configuration>
1041 <propertyName>coverageArgLine</propertyName>
1042 </configuration>
1043 </execution>
1044 <execution>
1045 <id>default-prepare-agent-integration</id>
1046 <goals>
1047 <goal>prepare-agent-integration</goal>
1048 </goals>
1049 <configuration>
1050 <propertyName>coverageArgLine</propertyName>
1051 </configuration>
1052 </execution>
1053 </executions>
1054 </plugin>
1055 </plugins>
1056 </build>
1057 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001058 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -04001059 </properties>
1060 </profile>
1061 <profile>
1062 <id>no-coverage</id>
1063 <activation>
1064 <property>
1065 <name>!coverage</name>
1066 </property>
1067 </activation>
1068 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001069 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -04001070 </properties>
1071 </profile>
1072 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -05001073 <id>integration-tests-only</id>
1074 <properties>
1075 <test.includes/>
1076 <failIfNoTests>false</failIfNoTests>
1077 </properties>
1078 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001079 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +00001080 <modules>
1081 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +00001082 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -05001083 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +00001084 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -04001085</project>