blob: 1dece4779ddc5de6b1f914047fdb9dc70b5e896b [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 Blowc831a8b2024-12-02 21:38:38 -050078 <netty.version>4.1.115.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>
584 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700585 <configuration>
586 <failIfNoTests>false</failIfNoTests>
587 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800588 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800589 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
Murtadha Hubailc7eb0c52018-05-21 18:01:55 +0300590 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Wail Alkowaileet61524a62024-05-01 15:09:24 -0700591 --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
Michael Blowb4c1fb02016-05-09 15:41:00 -0700592 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300593 <systemPropertyVariables>
594 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
595 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700596 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500597 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700598 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500599 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500600 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800601 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400602 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700603 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700604 </plugin>
605 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700606 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300607 <artifactId>maven-failsafe-plugin</artifactId>
608 <configuration>
609 <systemPropertyVariables>
610 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
611 </systemPropertyVariables>
612 </configuration>
613 </plugin>
614 <plugin>
615 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700616 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700617 <configuration>
Michael Blow2b057012017-12-07 22:20:39 -0500618 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700619 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000620 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700621 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700622 <groupId>org.apache.maven.plugins</groupId>
623 <artifactId>maven-remote-resources-plugin</artifactId>
624 <executions>
625 <execution>
626 <goals>
627 <goal>process</goal>
628 </goals>
629 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500630 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700631 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700632 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500633 <properties>
634 <projectName>Apache Hyracks - ${project.name}</projectName>
635 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700636 </configuration>
637 </execution>
638 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800639 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400640 <plugin>
641 <groupId>org.apache.maven.plugins</groupId>
642 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400643 <version>3.3.1</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400644 <executions>
645 <execution>
646 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400647 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400648 <goals>
649 <goal>check</goal>
650 </goals>
651 </execution>
652 </executions>
653 <configuration>
654 <logViolationsToConsole>true</logViolationsToConsole>
655 <checkstyleRules>
656 <module name="Checker">
657 <!-- Checks for whitespace -->
658 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400659 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400660 <module name="TreeWalker">
661 <module name="AvoidStarImport">
662 <property name="allowStaticMemberImports" value="true"/>
663 </module>
664 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400665 </module>
666 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400667 <includes>**/*.java,**/*.jj</includes>
668 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400669 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
670 </configuration>
671 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400672 <plugin>
673 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400674 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400675 <executions>
676 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400677 <id>check-pom-packaging</id>
678 <phase>validate</phase>
679 <goals>
680 <goal>run</goal>
681 </goals>
682 <configuration>
683 <exportAntProperties>true</exportAntProperties>
684 <target xmlns:unless="ant:unless">
685 <condition property="skipPomEnforcement">
686 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
687 </condition>
688 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
689 </target>
690 </configuration>
691 </execution>
692 </executions>
693 </plugin>
694 <plugin>
695 <groupId>org.apache.maven.plugins</groupId>
696 <artifactId>maven-enforcer-plugin</artifactId>
697 <executions>
698 <execution>
699 <id>ensure-no-tests-for-pom-packaging</id>
700 <phase>validate</phase>
701 <goals>
702 <goal>enforce</goal>
703 </goals>
704 <configuration>
705 <rules>
706 <requireFilesDontExist>
707 <files>
708 <file>${project.build.testSourceDirectory}</file>
709 </files>
710 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
711 </requireFilesDontExist>
712 </rules>
713 <skip>${skipPomEnforcement}</skip>
714 </configuration>
715 </execution>
716 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400717 <id>enforce-versions</id>
718 <goals>
719 <goal>enforce</goal>
720 </goals>
721 <configuration>
722 <rules>
723 <requireMavenVersion>
724 <version>[3.3.9,)</version>
725 </requireMavenVersion>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700726 <requireJavaVersion>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400727 <version>[${maven.compiler.release},)</version>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700728 </requireJavaVersion>
729 </rules>
730 </configuration>
731 </execution>
732 <execution>
733 <id>ensure-no-duplicate-deps</id>
734 <goals>
735 <goal>enforce</goal>
736 </goals>
737 <configuration>
738 <rules>
739 <banDuplicatePomDependencyVersions/>
Michael Blowf53c1c62016-06-17 16:51:59 -0400740 </rules>
741 </configuration>
742 </execution>
743 </executions>
744 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500745 <plugin>
746 <groupId>org.apache.maven.plugins</groupId>
747 <artifactId>maven-resources-plugin</artifactId>
748 <executions>
749 <execution>
750 <id>default-testResources</id>
751 <goals>
752 <goal>testResources</goal>
753 </goals>
754 <configuration>
755 <skip>${skip.testResources}</skip>
756 </configuration>
757 </execution>
758 </executions>
759 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500760 <plugin>
761 <groupId>net.revelc.code.formatter</groupId>
762 <artifactId>formatter-maven-plugin</artifactId>
763 <executions>
764 <execution>
765 <goals>
766 <goal>${source-format.goal}</goal>
767 </goals>
768 </execution>
769 </executions>
770 <configuration>
771 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
772 <skipFormatting>${source-format.skip}</skipFormatting>
773 </configuration>
774 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400775 <plugin>
776 <groupId>net.revelc.code</groupId>
777 <artifactId>impsort-maven-plugin</artifactId>
778 <executions>
779 <execution>
780 <goals>
781 <goal>${import-sort.goal}</goal>
782 </goals>
783 </execution>
784 </executions>
785 <configuration>
786 <groups>java,javax,org,com,*</groups>
787 <removeUnused>true</removeUnused>
788 <skip>${import-sort.skip}</skip>
789 </configuration>
790 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000791 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700792 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700793 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500794 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800795 <groupId>org.apache.maven.plugins</groupId>
796 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400797 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800798 </plugin>
799 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500800 <groupId>org.apache.rat</groupId>
801 <artifactId>apache-rat-plugin</artifactId>
802 <version>0.12</version>
803 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700804 <plugin>
805 <groupId>net.revelc.code.formatter</groupId>
806 <artifactId>formatter-maven-plugin</artifactId>
807 <version>2.0.1</version>
808 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400809 <plugin>
810 <groupId>net.revelc.code</groupId>
811 <artifactId>impsort-maven-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400812 <version>1.9.0</version>
813 <dependencies>
814 <dependency>
815 <groupId>com.github.javaparser</groupId>
816 <artifactId>javaparser-core</artifactId>
Michael Blowae1291d2024-12-29 11:06:39 -0500817 <version>3.26.3</version>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400818 </dependency>
819 </dependencies>
Michael Blowef85fb02019-03-22 13:40:35 -0400820 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700821 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
822 <plugin>
823 <groupId>org.eclipse.m2e</groupId>
824 <artifactId>lifecycle-mapping</artifactId>
825 <version>1.0.0</version>
826 <configuration>
827 <lifecycleMappingMetadata>
828 <pluginExecutions>
829 <pluginExecution>
830 <pluginExecutionFilter>
831 <groupId>org.apache.rat</groupId>
832 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400833 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700834 <goals>
835 <goal>check</goal>
836 </goals>
837 </pluginExecutionFilter>
838 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400839 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700840 </action>
841 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400842 <pluginExecution>
843 <pluginExecutionFilter>
844 <groupId>org.apache.maven.plugins</groupId>
845 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400846 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400847 <goals>
848 <goal>check</goal>
849 </goals>
850 </pluginExecutionFilter>
851 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400852 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400853 </action>
854 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700855 <pluginExecution>
856 <pluginExecutionFilter>
857 <groupId>org.apache.maven.plugins</groupId>
858 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400859 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700860 <goals>
861 <goal>analyze-only</goal>
862 </goals>
863 </pluginExecutionFilter>
864 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800865 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700866 </action>
867 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800868 <pluginExecution>
869 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800870 <groupId>net.revelc.code.formatter</groupId>
871 <artifactId>formatter-maven-plugin</artifactId>
872 <versionRange>[2.0.1,)</versionRange>
873 <goals>
874 <goal>format</goal>
875 </goals>
876 </pluginExecutionFilter>
877 <action>
878 <ignore></ignore>
879 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800880 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700881 </pluginExecutions>
882 </lifecycleMappingMetadata>
883 </configuration>
884 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800885 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500886 <groupId>org.codehaus.mojo</groupId>
887 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400888 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800889 </plugin>
890 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500891 <groupId>org.apache.maven.plugins</groupId>
892 <artifactId>maven-scm-plugin</artifactId>
893 <version>1.9.5</version>
894 </plugin>
895 <plugin>
896 <groupId>org.codehaus.mojo</groupId>
897 <artifactId>appassembler-maven-plugin</artifactId>
898 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800899 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400900 <plugin>
901 <groupId>org.apache.maven.plugins</groupId>
902 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400903 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400904 </plugin>
905 <plugin>
906 <groupId>org.apache.maven.plugins</groupId>
907 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400908 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400909 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400910 <plugin>
911 <groupId>org.apache.hyracks</groupId>
912 <artifactId>license-automation-plugin</artifactId>
913 <version>${project.version}</version>
914 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400915 <plugin>
916 <groupId>org.apache.maven.plugins</groupId>
917 <artifactId>maven-assembly-plugin</artifactId>
918 <version>3.1.0</version>
919 </plugin>
920 <plugin>
921 <groupId>org.apache.maven.plugins</groupId>
922 <artifactId>maven-antrun-plugin</artifactId>
923 <version>1.8</version>
924 </plugin>
925 <plugin>
926 <groupId>org.apache.maven.plugins</groupId>
927 <artifactId>maven-clean-plugin</artifactId>
928 <version>3.0.0</version>
929 </plugin>
930 <plugin>
931 <groupId>org.apache.maven.plugins</groupId>
932 <artifactId>maven-jar-plugin</artifactId>
933 <version>3.0.2</version>
934 </plugin>
935 <plugin>
936 <groupId>org.codehaus.mojo</groupId>
937 <artifactId>build-helper-maven-plugin</artifactId>
938 <version>3.0.0</version>
939 </plugin>
940 <plugin>
941 <groupId>org.apache.maven.plugins</groupId>
942 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400943 <version>3.6.0</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400944 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400945 <plugin>
946 <groupId>org.apache.maven.doxia</groupId>
947 <artifactId>doxia-maven-plugin</artifactId>
948 <version>1.1.4</version>
949 </plugin>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700950 <plugin>
951 <groupId>org.apache.maven.plugins</groupId>
952 <artifactId>maven-enforcer-plugin</artifactId>
953 <version>3.0.0-M3</version>
954 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700955 </plugins>
956 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000957 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800958 <profiles>
959 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400960 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700961 <activation>
962 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400963 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700964 </file>
965 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400966 <properties>
967 <skip.assembly>true</skip.assembly>
968 </properties>
969 </profile>
970 <profile>
971 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700972 <build>
973 <plugins>
974 <plugin>
975 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500976 <artifactId>maven-jar-plugin</artifactId>
977 <configuration>
978 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500979 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500980 <manifest>
981 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
982 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
983 </manifest>
984 </archive>
985 </configuration>
986 </plugin>
987 <plugin>
988 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700989 <artifactId>maven-assembly-plugin</artifactId>
990 <!-- We override the configuration plugin to override the descriptor to use for building
991 the source release zip. Specifically, we would like to control the inclusions/exclusions.
992 For example, we exclude the KEYS file from the zip -->
993 <executions>
994 <execution>
995 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
996 the apache parent POM under the apache-release profile -->
997 <id>source-release-assembly</id>
998 <phase>package</phase>
999 <goals>
1000 <goal>single</goal>
1001 </goals>
1002 <!-- combine.self should be override to replace the configuration in the parent POM -->
1003 <configuration combine.self="override">
1004 <descriptors>
1005 <descriptor>src/main/assembly/source.xml</descriptor>
1006 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -04001007 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001008 </configuration>
1009 </execution>
1010 </executions>
1011 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001012 <plugin>
1013 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -08001014 <artifactId>maven-gpg-plugin</artifactId>
1015 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001016 <executions>
1017 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -08001018 <id>sign-artifacts</id>
1019 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001020 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -08001021 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001022 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001023 </execution>
1024 </executions>
1025 </plugin>
1026 </plugins>
1027 </build>
1028 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -07001029 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -04001030 <id>coverage</id>
1031 <activation>
1032 <property>
1033 <name>coverage</name>
1034 </property>
1035 </activation>
1036 <build>
1037 <plugins>
1038 <plugin>
1039 <groupId>org.jacoco</groupId>
1040 <artifactId>jacoco-maven-plugin</artifactId>
1041 <version>${jacoco.version}</version>
1042 <executions>
1043 <execution>
1044 <id>default-prepare-agent</id>
1045 <goals>
1046 <goal>prepare-agent</goal>
1047 </goals>
1048 <configuration>
1049 <propertyName>coverageArgLine</propertyName>
1050 </configuration>
1051 </execution>
1052 <execution>
1053 <id>default-prepare-agent-integration</id>
1054 <goals>
1055 <goal>prepare-agent-integration</goal>
1056 </goals>
1057 <configuration>
1058 <propertyName>coverageArgLine</propertyName>
1059 </configuration>
1060 </execution>
1061 </executions>
1062 </plugin>
1063 </plugins>
1064 </build>
1065 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001066 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -04001067 </properties>
1068 </profile>
1069 <profile>
1070 <id>no-coverage</id>
1071 <activation>
1072 <property>
1073 <name>!coverage</name>
1074 </property>
1075 </activation>
1076 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001077 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -04001078 </properties>
1079 </profile>
1080 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -05001081 <id>integration-tests-only</id>
1082 <properties>
1083 <test.includes/>
1084 <failIfNoTests>false</failIfNoTests>
1085 </properties>
1086 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001087 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +00001088 <modules>
1089 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +00001090 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -05001091 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +00001092 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -04001093</project>