blob: 7c465a484d796c9b4fd0ae4302fd146872ca4d0f [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 Maxonbf0abd42024-03-05 11:26:12 -080024 <version>0.3.8.3-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>
Wail Alkowaileet61524a62024-05-01 15:09:24 -070052 <maven.compiler.release>17</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 Blow8f8402e2024-01-11 00:09:36 +000076 <jackson.version>2.14.3</jackson.version>
Michael Blow91a7e802023-01-12 18:51:33 -050077 <jackson-databind.version>${jackson.version}</jackson-databind.version>
Michael Blowc8b90902025-05-16 19:55:57 -040078 <netty.version>4.1.121.Final</netty.version>
Michael Blow38ca9622018-02-28 11:44:43 -050079
Michael Blowcbfe8f92018-02-28 14:02:38 -050080 <implementation.title>Apache Hyracks and Algebricks - ${project.name}</implementation.title>
Michael Blow38ca9622018-02-28 11:44:43 -050081 <implementation.url>https://asterixdb.apache.org/</implementation.url>
82 <implementation.version>${project.version}</implementation.version>
83 <implementation.vendor>${project.organization.name}</implementation.vendor>
Michael Blowb4c1fb02016-05-09 15:41:00 -070084 </properties>
85 <dependencyManagement>
86 <dependencies>
87 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080088 <groupId>io.netty</groupId>
Michael Blowc8b90902025-05-16 19:55:57 -040089 <artifactId>netty-all</artifactId>
90 <version>${netty.version}</version>
Michael Blow1e12c3c2025-05-19 16:08:20 -040091 <exclusions>
92 <exclusion>
93 <groupId>io.netty</groupId>
94 <artifactId>netty-transport-classes-epoll</artifactId>
95 </exclusion>
96 <exclusion>
97 <groupId>io.netty</groupId>
98 <artifactId>netty-transport-native-epoll</artifactId>
99 </exclusion>
100 <exclusion>
101 <groupId>io.netty</groupId>
102 <artifactId>netty-transport-native-kqueue</artifactId>
103 </exclusion>
104 <exclusion>
105 <groupId>io.netty</groupId>
106 <artifactId>netty-transport-classes-kqueue</artifactId>
107 </exclusion>
108 <exclusion>
109 <groupId>io.netty</groupId>
110 <artifactId>netty-resolver-dns-classes-macos</artifactId>
111 </exclusion>
112 <exclusion>
113 <groupId>io.netty</groupId>
114 <artifactId>netty-resolver-dns-native-macos</artifactId>
115 </exclusion>
116 <exclusion>
117 <groupId>io.netty</groupId>
118 <artifactId>netty-transport-rxtx</artifactId>
119 </exclusion>
120 <exclusion>
121 <groupId>io.netty</groupId>
122 <artifactId>netty-transport-sctp</artifactId>
123 </exclusion>
124 <exclusion>
125 <groupId>io.netty</groupId>
126 <artifactId>netty-transport-udt</artifactId>
127 </exclusion>
128 <exclusion>
129 <groupId>io.netty</groupId>
130 <artifactId>netty-codec-memcache</artifactId>
131 </exclusion>
132 <exclusion>
133 <groupId>io.netty</groupId>
134 <artifactId>netty-codec-mqtt</artifactId>
135 </exclusion>
136 <exclusion>
137 <groupId>io.netty</groupId>
138 <artifactId>netty-codec-redis</artifactId>
139 </exclusion>
140 <exclusion>
141 <groupId>io.netty</groupId>
142 <artifactId>netty-codec-smtp</artifactId>
143 </exclusion>
144 <exclusion>
145 <groupId>io.netty</groupId>
146 <artifactId>netty-codec-socks</artifactId>
147 </exclusion>
148 <exclusion>
149 <groupId>io.netty</groupId>
150 <artifactId>netty-codec-stomp</artifactId>
151 </exclusion>
152 </exclusions>
Michael Blowc8b90902025-05-16 19:55:57 -0400153 </dependency>
154 <dependency>
155 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400156 <artifactId>netty-buffer</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500157 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400158 </dependency>
159 <dependency>
160 <groupId>io.netty</groupId>
161 <artifactId>netty-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500162 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400163 </dependency>
164 <dependency>
165 <groupId>io.netty</groupId>
166 <artifactId>netty-codec-http</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500167 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400168 </dependency>
169 <dependency>
170 <groupId>io.netty</groupId>
171 <artifactId>netty-transport</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500172 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400173 </dependency>
174 <dependency>
175 <groupId>io.netty</groupId>
176 <artifactId>netty-codec</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500177 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400178 </dependency>
179 <dependency>
180 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400181 <artifactId>netty-codec-dns</artifactId>
182 <version>${netty.version}</version>
183 </dependency>
184 <dependency>
185 <groupId>io.netty</groupId>
186 <artifactId>netty-codec-socks</artifactId>
187 <version>${netty.version}</version>
188 </dependency>
189 <dependency>
190 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400191 <artifactId>netty-handler</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500192 <version>${netty.version}</version>
Michael Blow1e12c3c2025-05-19 16:08:20 -0400193 <exclusions>
194 <exclusion>
195 <groupId>io.netty</groupId>
196 <artifactId>netty-transport-native-unix-common</artifactId>
197 </exclusion>
198 </exclusions>
Till Westmannea666c92017-02-22 22:25:15 -0800199 </dependency>
200 <dependency>
Michael Blow178ad762022-06-24 17:38:08 -0400201 <groupId>io.netty</groupId>
Hussain Towaileb35c42ac2023-05-23 10:44:10 +0300202 <artifactId>netty-handler-proxy</artifactId>
203 <version>${netty.version}</version>
204 </dependency>
205 <dependency>
206 <groupId>io.netty</groupId>
Michael Blow178ad762022-06-24 17:38:08 -0400207 <artifactId>netty-transport-classes-epoll</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500208 <version>${netty.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700209 </dependency>
210 <dependency>
Michael Blow7d462c32021-11-05 11:49:19 -0400211 <groupId>io.netty</groupId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500212 <artifactId>netty-transport-native-epoll</artifactId>
213 <version>${netty.version}</version>
214 </dependency>
215 <dependency>
216 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400217 <artifactId>netty-resolver</artifactId>
218 <version>${netty.version}</version>
219 </dependency>
220 <dependency>
221 <groupId>io.netty</groupId>
Michael Blowc8b90902025-05-16 19:55:57 -0400222 <artifactId>netty-transport-native-epoll</artifactId>
223 <classifier>linux-x86_64</classifier>
224 <version>${netty.version}</version>
225 </dependency>
226 <dependency>
227 <groupId>io.netty</groupId>
228 <artifactId>netty-transport-native-kqueue</artifactId>
229 <classifier>osx-x86_64</classifier>
230 <version>${netty.version}</version>
231 </dependency>
232 <dependency>
233 <groupId>io.netty</groupId>
234 <artifactId>netty-transport-native-kqueue</artifactId>
235 <version>${netty.version}</version>
236 </dependency>
237 <dependency>
238 <groupId>io.netty</groupId>
Michael Blow7d462c32021-11-05 11:49:19 -0400239 <artifactId>netty-resolver-dns</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500240 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400241 </dependency>
242 <dependency>
243 <groupId>io.netty</groupId>
244 <artifactId>netty-codec-http2</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500245 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400246 </dependency>
247 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700248 <groupId>junit</groupId>
249 <artifactId>junit</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500250 <version>4.13.2</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700251 </dependency>
252 <dependency>
253 <groupId>org.apache.hadoop</groupId>
254 <artifactId>hadoop-yarn-client</artifactId>
255 <version>${hadoop.version}</version>
256 </dependency>
257 <dependency>
258 <groupId>org.apache.hadoop</groupId>
259 <artifactId>hadoop-client</artifactId>
260 <version>${hadoop.version}</version>
261 </dependency>
262 <dependency>
263 <groupId>org.apache.hadoop</groupId>
264 <artifactId>hadoop-common</artifactId>
265 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400266 <exclusions>
267 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300268 <groupId>net.minidev</groupId>
269 <artifactId>json-smart</artifactId>
270 </exclusion>
271 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300272 <groupId>com.nimbusds</groupId>
273 <artifactId>nimbus-jose-jwt</artifactId>
274 </exclusion>
275 <exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400276 <groupId>javax.servlet.jsp</groupId>
277 <artifactId>jsp-api</artifactId>
278 </exclusion>
279 <exclusion>
280 <groupId>javax.servlet</groupId>
281 <artifactId>servlet-api</artifactId>
282 </exclusion>
283 <exclusion>
284 <groupId>jdk.tools</groupId>
285 <artifactId>jdk.tools</artifactId>
286 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700287 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500288 <groupId>org.slf4j</groupId>
289 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700290 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700291 <exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700292 <groupId>org.slf4j</groupId>
293 <artifactId>slf4j-log4j12</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300294 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400295 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700296 </dependency>
297 <dependency>
298 <groupId>org.apache.hadoop</groupId>
299 <artifactId>hadoop-hdfs</artifactId>
300 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700301 <exclusions>
302 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500303 <groupId>org.slf4j</groupId>
304 <artifactId>slf4j-reload4j</artifactId>
305 </exclusion>
306 <exclusion>
307 <groupId>ch.qos.reload4j</groupId>
308 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700309 </exclusion>
310 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700311 </dependency>
312 <dependency>
313 <groupId>org.apache.hadoop</groupId>
314 <artifactId>hadoop-minicluster</artifactId>
315 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700316 <exclusions>
317 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500318 <groupId>org.slf4j</groupId>
319 <artifactId>slf4j-reload4j</artifactId>
320 </exclusion>
321 <exclusion>
322 <groupId>ch.qos.reload4j</groupId>
323 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700324 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300325 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700326 <groupId>log4j</groupId>
327 <artifactId>log4j</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300328 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700329 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700330 </dependency>
331 <dependency>
332 <groupId>org.apache.hadoop</groupId>
333 <artifactId>hadoop-mapreduce-client-core</artifactId>
334 <version>${hadoop.version}</version>
335 </dependency>
336 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400337 <groupId>org.apache.hadoop</groupId>
338 <artifactId>hadoop-hdfs</artifactId>
339 <version>${hadoop.version}</version>
340 <classifier>tests</classifier>
341 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700342 <exclusions>
343 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500344 <groupId>org.slf4j</groupId>
345 <artifactId>slf4j-reload4j</artifactId>
346 </exclusion>
347 <exclusion>
348 <groupId>ch.qos.reload4j</groupId>
349 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700350 </exclusion>
351 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400352 </dependency>
353 <dependency>
Michael Blow91a7e802023-01-12 18:51:33 -0500354 <groupId>com.e-movimento.tinytools</groupId>
355 <artifactId>privilegedaccessor</artifactId>
356 <version>1.3</version>
357 </dependency>
358 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700359 <groupId>commons-io</groupId>
360 <artifactId>commons-io</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500361 <version>2.18.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500362 </dependency>
363 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400364 <groupId>org.apache.commons</groupId>
365 <artifactId>commons-text</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500366 <version>1.12.0</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400367 </dependency>
368 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800369 <groupId>com.fasterxml.jackson.core</groupId>
370 <artifactId>jackson-databind</artifactId>
Michael Blow91a7e802023-01-12 18:51:33 -0500371 <version>${jackson-databind.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800372 </dependency>
373 <dependency>
374 <groupId>com.fasterxml.jackson.core</groupId>
375 <artifactId>jackson-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400376 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800377 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500378 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500379 <groupId>com.fasterxml.jackson.core</groupId>
380 <artifactId>jackson-annotations</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400381 <version>${jackson.version}</version>
Michael Blow204b2952017-12-07 20:17:47 -0500382 </dependency>
383 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500384 <groupId>com.google.guava</groupId>
385 <artifactId>guava</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500386 <version>33.3.1-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400387 <exclusions>
388 <exclusion>
389 <groupId>com.google.code.findbugs</groupId>
390 <artifactId>jsr305</artifactId>
391 </exclusion>
392 <exclusion>
393 <groupId>com.google.guava</groupId>
394 <artifactId>listenablefuture</artifactId>
395 </exclusion>
396 <exclusion>
397 <groupId>org.checkerframework</groupId>
398 <artifactId>checker-qual</artifactId>
399 </exclusion>
400 <exclusion>
401 <groupId>com.google.j2objc</groupId>
402 <artifactId>j2objc-annotations</artifactId>
403 </exclusion>
404 <exclusion>
405 <groupId>org.codehaus.mojo</groupId>
406 <artifactId>animal-sniffer-annotations</artifactId>
407 </exclusion>
408 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500409 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500410 <dependency>
411 <groupId>org.apache.commons</groupId>
412 <artifactId>commons-lang3</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500413 <version>3.17.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500414 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500415 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500416 <groupId>org.apache.commons</groupId>
417 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500418 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500419 </dependency>
420 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800421 <groupId>org.apache.httpcomponents</groupId>
422 <artifactId>httpcore</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400423 <version>4.4.16</version>
424 </dependency>
425 <dependency>
426 <groupId>org.apache.httpcomponents</groupId>
427 <artifactId>httpcore-nio</artifactId>
428 <version>4.4.16</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800429 </dependency>
430 <dependency>
431 <groupId>org.apache.httpcomponents</groupId>
432 <artifactId>httpclient</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400433 <version>4.5.14</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800434 </dependency>
435 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500436 <groupId>org.apache.rat</groupId>
437 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500438 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500439 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500440 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800441 <groupId>org.ini4j</groupId>
442 <artifactId>ini4j</artifactId>
443 <version>0.5.4</version>
444 </dependency>
445 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500446 <groupId>args4j</groupId>
447 <artifactId>args4j</artifactId>
448 <version>2.33</version>
449 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300450 <dependency>
451 <groupId>org.apache.logging.log4j</groupId>
452 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400453 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300454 </dependency>
455 <dependency>
456 <groupId>org.apache.logging.log4j</groupId>
457 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400458 <version>${log4j.version}</version>
459 </dependency>
460 <dependency>
461 <groupId>org.apache.logging.log4j</groupId>
462 <artifactId>log4j-jul</artifactId>
463 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300464 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800465 <dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400466 <groupId>javax.xml.bind</groupId>
467 <artifactId>jaxb-api</artifactId>
468 <version>2.3.0</version>
469 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500470 <dependency>
471 <groupId>org.apache.maven</groupId>
472 <artifactId>maven-project</artifactId>
473 <version>2.2.1</version>
474 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500475 <dependency>
476 <groupId>org.apache.maven</groupId>
477 <artifactId>maven-model</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500478 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500479 </dependency>
480 <dependency>
481 <groupId>org.apache.maven</groupId>
482 <artifactId>maven-artifact</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500483 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500484 </dependency>
485 <dependency>
486 <groupId>org.apache.maven</groupId>
487 <artifactId>maven-compat</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500488 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500489 </dependency>
490 <dependency>
491 <groupId>org.apache.maven</groupId>
492 <artifactId>maven-core</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500493 <version>3.8.4</version>
Michael Blow8363dcb2021-12-04 06:02:34 -0500494 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500495 <dependency>
496 <groupId>org.apache.maven</groupId>
497 <artifactId>maven-plugin-api</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500498 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400499 </dependency>
500 <dependency>
Michael Blowfa0ddb62022-01-22 08:08:51 -0500501 <groupId>org.apache.maven.plugin-tools</groupId>
502 <artifactId>maven-plugin-annotations</artifactId>
503 <version>3.6.4</version>
504 </dependency>
505 <dependency>
506 <groupId>org.apache.maven.plugins</groupId>
507 <artifactId>maven-remote-resources-plugin</artifactId>
508 <version>1.7.0</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500509 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700510 <dependency>
511 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400512 <artifactId>fastutil-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400513 <version>8.5.6</version>
Rui Guo4ce394b2020-07-23 07:35:59 -0700514 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700515 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700516 <groupId>org.slf4j</groupId>
517 <artifactId>slf4j-simple</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400518 <version>1.7.36</version>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700519 </dependency>
520 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700521 <groupId>org.apache.logging.log4j</groupId>
522 <artifactId>log4j-1.2-api</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400523 <version>${log4j.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700524 </dependency>
Ian Maxon94eb3c22021-06-03 12:31:18 -0700525 <dependency>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700526 <groupId>org.mockito</groupId>
527 <artifactId>mockito-core</artifactId>
528 <version>3.10.0</version>
529 </dependency>
530 <dependency>
531 <groupId>org.powermock</groupId>
532 <artifactId>powermock-api-mockito2</artifactId>
533 <version>2.0.9</version>
534 </dependency>
535 <dependency>
536 <groupId>org.powermock</groupId>
537 <artifactId>powermock-module-junit4</artifactId>
538 <version>2.0.9</version>
539 </dependency>
540 <dependency>
541 <groupId>org.powermock</groupId>
542 <artifactId>powermock-core</artifactId>
543 <version>2.0.9</version>
544 </dependency>
Wail Alkowaileet790ce542021-08-07 16:21:17 -0700545 <dependency>
546 <groupId>org.xerial.snappy</groupId>
547 <artifactId>snappy-java</artifactId>
548 <version>${snappy.version}</version>
549 </dependency>
Hussain Towailebaedda352023-05-22 04:45:42 +0300550 <!-- Manually included to avoid CVE-2023-1370 -->
551 <dependency>
552 <groupId>net.minidev</groupId>
553 <artifactId>json-smart</artifactId>
554 <version>2.4.11</version>
555 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700556 </dependencies>
557 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000558 <build>
559 <plugins>
560 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400561 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500562 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500563 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500564 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500565 <exclude>**/DEPENDENCIES</exclude>
566 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500567 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500568 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500569 <manifest>
570 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
571 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
572 </manifest>
573 <manifestEntries>
574 <Implementation-Title>${implementation.title}</Implementation-Title>
575 <Implementation-URL>${implementation.url}</Implementation-URL>
576 <Implementation-Version>${implementation.version}</Implementation-Version>
577 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
578 </manifestEntries>
579 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500580 </configuration>
581 </plugin>
582 <plugin>
583 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400584 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400585 <configuration>
586 <failOnWarning>true</failOnWarning>
587 <outputXML>true</outputXML>
588 </configuration>
589 <executions>
590 <execution>
591 <phase>process-test-classes</phase>
592 <goals>
593 <goal>analyze-only</goal>
594 </goals>
595 </execution>
596 </executions>
597 </plugin>
598 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700599 <groupId>org.apache.rat</groupId>
600 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700601 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700602 <execution>
603 <phase>validate</phase>
604 <goals>
605 <goal>check</goal>
606 </goals>
607 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700608 </executions>
609 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500610 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
611 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700612 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800613 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700614 </licenses>
615 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800616 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700617 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500618 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400619 <excludes combine.children="append">
620 <exclude>**/*.iml</exclude>
621 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700622 </configuration>
623 </plugin>
624 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700625 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700626 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700627 <configuration>
Michael Blow2b057012017-12-07 22:20:39 -0500628 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700629 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000630 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700631 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700632 <groupId>org.apache.maven.plugins</groupId>
633 <artifactId>maven-remote-resources-plugin</artifactId>
634 <executions>
635 <execution>
636 <goals>
637 <goal>process</goal>
638 </goals>
639 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500640 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700641 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700642 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500643 <properties>
644 <projectName>Apache Hyracks - ${project.name}</projectName>
645 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700646 </configuration>
647 </execution>
648 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800649 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400650 <plugin>
651 <groupId>org.apache.maven.plugins</groupId>
652 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400653 <version>3.3.1</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400654 <executions>
655 <execution>
656 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400657 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400658 <goals>
659 <goal>check</goal>
660 </goals>
661 </execution>
662 </executions>
663 <configuration>
664 <logViolationsToConsole>true</logViolationsToConsole>
665 <checkstyleRules>
666 <module name="Checker">
667 <!-- Checks for whitespace -->
668 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400669 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400670 <module name="TreeWalker">
671 <module name="AvoidStarImport">
672 <property name="allowStaticMemberImports" value="true"/>
673 </module>
674 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400675 </module>
676 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400677 <includes>**/*.java,**/*.jj</includes>
678 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400679 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
680 </configuration>
681 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400682 <plugin>
683 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400684 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400685 <executions>
686 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400687 <id>check-pom-packaging</id>
688 <phase>validate</phase>
689 <goals>
690 <goal>run</goal>
691 </goals>
692 <configuration>
693 <exportAntProperties>true</exportAntProperties>
694 <target xmlns:unless="ant:unless">
695 <condition property="skipPomEnforcement">
696 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
697 </condition>
698 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
699 </target>
700 </configuration>
701 </execution>
702 </executions>
703 </plugin>
704 <plugin>
705 <groupId>org.apache.maven.plugins</groupId>
706 <artifactId>maven-enforcer-plugin</artifactId>
707 <executions>
708 <execution>
709 <id>ensure-no-tests-for-pom-packaging</id>
710 <phase>validate</phase>
711 <goals>
712 <goal>enforce</goal>
713 </goals>
714 <configuration>
715 <rules>
716 <requireFilesDontExist>
717 <files>
718 <file>${project.build.testSourceDirectory}</file>
719 </files>
720 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
721 </requireFilesDontExist>
722 </rules>
723 <skip>${skipPomEnforcement}</skip>
724 </configuration>
725 </execution>
726 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400727 <id>enforce-versions</id>
728 <goals>
729 <goal>enforce</goal>
730 </goals>
731 <configuration>
732 <rules>
733 <requireMavenVersion>
734 <version>[3.3.9,)</version>
735 </requireMavenVersion>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700736 <requireJavaVersion>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400737 <version>[${maven.compiler.release},)</version>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700738 </requireJavaVersion>
739 </rules>
740 </configuration>
741 </execution>
742 <execution>
743 <id>ensure-no-duplicate-deps</id>
744 <goals>
745 <goal>enforce</goal>
746 </goals>
747 <configuration>
748 <rules>
749 <banDuplicatePomDependencyVersions/>
Michael Blowf53c1c62016-06-17 16:51:59 -0400750 </rules>
751 </configuration>
752 </execution>
753 </executions>
754 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500755 <plugin>
756 <groupId>org.apache.maven.plugins</groupId>
757 <artifactId>maven-resources-plugin</artifactId>
758 <executions>
759 <execution>
760 <id>default-testResources</id>
761 <goals>
762 <goal>testResources</goal>
763 </goals>
764 <configuration>
765 <skip>${skip.testResources}</skip>
766 </configuration>
767 </execution>
768 </executions>
769 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500770 <plugin>
771 <groupId>net.revelc.code.formatter</groupId>
772 <artifactId>formatter-maven-plugin</artifactId>
773 <executions>
774 <execution>
775 <goals>
776 <goal>${source-format.goal}</goal>
777 </goals>
778 </execution>
779 </executions>
780 <configuration>
781 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
782 <skipFormatting>${source-format.skip}</skipFormatting>
783 </configuration>
784 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400785 <plugin>
786 <groupId>net.revelc.code</groupId>
787 <artifactId>impsort-maven-plugin</artifactId>
788 <executions>
789 <execution>
790 <goals>
791 <goal>${import-sort.goal}</goal>
792 </goals>
793 </execution>
794 </executions>
795 <configuration>
796 <groups>java,javax,org,com,*</groups>
797 <removeUnused>true</removeUnused>
798 <skip>${import-sort.skip}</skip>
799 </configuration>
800 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000801 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700802 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700803 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500804 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800805 <groupId>org.apache.maven.plugins</groupId>
806 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400807 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800808 </plugin>
809 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500810 <groupId>org.apache.rat</groupId>
811 <artifactId>apache-rat-plugin</artifactId>
812 <version>0.12</version>
813 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700814 <plugin>
815 <groupId>net.revelc.code.formatter</groupId>
816 <artifactId>formatter-maven-plugin</artifactId>
817 <version>2.0.1</version>
818 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400819 <plugin>
820 <groupId>net.revelc.code</groupId>
821 <artifactId>impsort-maven-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400822 <version>1.9.0</version>
823 <dependencies>
824 <dependency>
825 <groupId>com.github.javaparser</groupId>
826 <artifactId>javaparser-core</artifactId>
Michael Blow7b8a94c2024-12-21 11:16:52 -0500827 <version>3.26.3</version>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400828 </dependency>
829 </dependencies>
Michael Blowef85fb02019-03-22 13:40:35 -0400830 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700831 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
832 <plugin>
833 <groupId>org.eclipse.m2e</groupId>
834 <artifactId>lifecycle-mapping</artifactId>
835 <version>1.0.0</version>
836 <configuration>
837 <lifecycleMappingMetadata>
838 <pluginExecutions>
839 <pluginExecution>
840 <pluginExecutionFilter>
841 <groupId>org.apache.rat</groupId>
842 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400843 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700844 <goals>
845 <goal>check</goal>
846 </goals>
847 </pluginExecutionFilter>
848 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400849 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700850 </action>
851 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400852 <pluginExecution>
853 <pluginExecutionFilter>
854 <groupId>org.apache.maven.plugins</groupId>
855 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400856 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400857 <goals>
858 <goal>check</goal>
859 </goals>
860 </pluginExecutionFilter>
861 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400862 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400863 </action>
864 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700865 <pluginExecution>
866 <pluginExecutionFilter>
867 <groupId>org.apache.maven.plugins</groupId>
868 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400869 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700870 <goals>
871 <goal>analyze-only</goal>
872 </goals>
873 </pluginExecutionFilter>
874 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800875 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700876 </action>
877 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800878 <pluginExecution>
879 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800880 <groupId>net.revelc.code.formatter</groupId>
881 <artifactId>formatter-maven-plugin</artifactId>
882 <versionRange>[2.0.1,)</versionRange>
883 <goals>
884 <goal>format</goal>
885 </goals>
886 </pluginExecutionFilter>
887 <action>
888 <ignore></ignore>
889 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800890 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700891 </pluginExecutions>
892 </lifecycleMappingMetadata>
893 </configuration>
894 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800895 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500896 <groupId>org.codehaus.mojo</groupId>
897 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400898 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800899 </plugin>
900 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500901 <groupId>org.apache.maven.plugins</groupId>
902 <artifactId>maven-scm-plugin</artifactId>
903 <version>1.9.5</version>
904 </plugin>
905 <plugin>
906 <groupId>org.codehaus.mojo</groupId>
907 <artifactId>appassembler-maven-plugin</artifactId>
908 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800909 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400910 <plugin>
911 <groupId>org.apache.maven.plugins</groupId>
912 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400913 <version>2.21.0</version>
Ian Maxon0cde5152025-02-20 14:22:00 -0800914 <configuration>
915 <failIfNoTests>false</failIfNoTests>
916 <forkCount>1</forkCount>
917 <reuseForks>false</reuseForks>
918 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
919 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
920 --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
921 </argLine>
922 <systemPropertyVariables>
923 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
924 </systemPropertyVariables>
925 <includes>
926 <include>${test.includes}</include>
927 </includes>
928 <excludes combine.children="append">
929 <exclude>${test.excludes}</exclude>
930 </excludes>
931 <skipTests>${skip.surefire.tests}</skipTests>
932 </configuration>
Michael Blow10a74862017-05-23 16:55:39 -0400933 </plugin>
934 <plugin>
935 <groupId>org.apache.maven.plugins</groupId>
936 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400937 <version>2.21.0</version>
Ian Maxon0cde5152025-02-20 14:22:00 -0800938 <configuration>
939 <systemPropertyVariables>
940 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
941 </systemPropertyVariables>
942 </configuration>
Michael Blow10a74862017-05-23 16:55:39 -0400943 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400944 <plugin>
945 <groupId>org.apache.hyracks</groupId>
946 <artifactId>license-automation-plugin</artifactId>
947 <version>${project.version}</version>
948 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400949 <plugin>
950 <groupId>org.apache.maven.plugins</groupId>
951 <artifactId>maven-assembly-plugin</artifactId>
952 <version>3.1.0</version>
953 </plugin>
954 <plugin>
955 <groupId>org.apache.maven.plugins</groupId>
956 <artifactId>maven-antrun-plugin</artifactId>
957 <version>1.8</version>
958 </plugin>
959 <plugin>
960 <groupId>org.apache.maven.plugins</groupId>
961 <artifactId>maven-clean-plugin</artifactId>
962 <version>3.0.0</version>
963 </plugin>
964 <plugin>
965 <groupId>org.apache.maven.plugins</groupId>
966 <artifactId>maven-jar-plugin</artifactId>
967 <version>3.0.2</version>
968 </plugin>
969 <plugin>
970 <groupId>org.codehaus.mojo</groupId>
971 <artifactId>build-helper-maven-plugin</artifactId>
972 <version>3.0.0</version>
973 </plugin>
974 <plugin>
975 <groupId>org.apache.maven.plugins</groupId>
976 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400977 <version>3.6.0</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400978 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400979 <plugin>
980 <groupId>org.apache.maven.doxia</groupId>
981 <artifactId>doxia-maven-plugin</artifactId>
982 <version>1.1.4</version>
983 </plugin>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700984 <plugin>
985 <groupId>org.apache.maven.plugins</groupId>
986 <artifactId>maven-enforcer-plugin</artifactId>
987 <version>3.0.0-M3</version>
988 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700989 </plugins>
990 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000991 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800992 <profiles>
993 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400994 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700995 <activation>
996 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400997 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700998 </file>
999 </activation>
Michael Blow916dce42017-05-23 13:19:12 -04001000 <properties>
1001 <skip.assembly>true</skip.assembly>
1002 </properties>
1003 </profile>
1004 <profile>
1005 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001006 <build>
1007 <plugins>
1008 <plugin>
1009 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -05001010 <artifactId>maven-jar-plugin</artifactId>
1011 <configuration>
1012 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -05001013 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -05001014 <manifest>
1015 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
1016 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
1017 </manifest>
1018 </archive>
1019 </configuration>
1020 </plugin>
1021 <plugin>
1022 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001023 <artifactId>maven-assembly-plugin</artifactId>
1024 <!-- We override the configuration plugin to override the descriptor to use for building
1025 the source release zip. Specifically, we would like to control the inclusions/exclusions.
1026 For example, we exclude the KEYS file from the zip -->
1027 <executions>
1028 <execution>
1029 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
1030 the apache parent POM under the apache-release profile -->
1031 <id>source-release-assembly</id>
1032 <phase>package</phase>
1033 <goals>
1034 <goal>single</goal>
1035 </goals>
1036 <!-- combine.self should be override to replace the configuration in the parent POM -->
1037 <configuration combine.self="override">
1038 <descriptors>
1039 <descriptor>src/main/assembly/source.xml</descriptor>
1040 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -04001041 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001042 </configuration>
1043 </execution>
1044 </executions>
1045 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001046 <plugin>
1047 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -08001048 <artifactId>maven-gpg-plugin</artifactId>
1049 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001050 <executions>
1051 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -08001052 <id>sign-artifacts</id>
1053 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001054 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -08001055 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001056 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001057 </execution>
1058 </executions>
1059 </plugin>
1060 </plugins>
1061 </build>
1062 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -07001063 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -04001064 <id>coverage</id>
1065 <activation>
1066 <property>
1067 <name>coverage</name>
1068 </property>
1069 </activation>
1070 <build>
1071 <plugins>
1072 <plugin>
1073 <groupId>org.jacoco</groupId>
1074 <artifactId>jacoco-maven-plugin</artifactId>
1075 <version>${jacoco.version}</version>
1076 <executions>
1077 <execution>
1078 <id>default-prepare-agent</id>
1079 <goals>
1080 <goal>prepare-agent</goal>
1081 </goals>
1082 <configuration>
1083 <propertyName>coverageArgLine</propertyName>
1084 </configuration>
1085 </execution>
1086 <execution>
1087 <id>default-prepare-agent-integration</id>
1088 <goals>
1089 <goal>prepare-agent-integration</goal>
1090 </goals>
1091 <configuration>
1092 <propertyName>coverageArgLine</propertyName>
1093 </configuration>
1094 </execution>
1095 </executions>
1096 </plugin>
1097 </plugins>
1098 </build>
1099 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001100 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -04001101 </properties>
1102 </profile>
1103 <profile>
1104 <id>no-coverage</id>
1105 <activation>
1106 <property>
1107 <name>!coverage</name>
1108 </property>
1109 </activation>
1110 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001111 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -04001112 </properties>
1113 </profile>
1114 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -05001115 <id>integration-tests-only</id>
1116 <properties>
1117 <test.includes/>
1118 <failIfNoTests>false</failIfNoTests>
1119 </properties>
1120 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001121 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +00001122 <modules>
1123 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +00001124 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -05001125 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +00001126 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -04001127</project>