blob: aa1f8a2badfeb6f71105a03bbdec4a09efe1c221 [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 Blowc8b90902025-05-16 19:55:57 -040078 <netty.version>4.1.121.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 Blowc8b90902025-05-16 19:55:57 -040092 <artifactId>netty-all</artifactId>
93 <version>${netty.version}</version>
Michael Blow1e12c3c2025-05-19 16:08:20 -040094 <exclusions>
95 <exclusion>
96 <groupId>io.netty</groupId>
97 <artifactId>netty-transport-classes-epoll</artifactId>
98 </exclusion>
99 <exclusion>
100 <groupId>io.netty</groupId>
101 <artifactId>netty-transport-native-epoll</artifactId>
102 </exclusion>
103 <exclusion>
104 <groupId>io.netty</groupId>
105 <artifactId>netty-transport-native-kqueue</artifactId>
106 </exclusion>
107 <exclusion>
108 <groupId>io.netty</groupId>
109 <artifactId>netty-transport-classes-kqueue</artifactId>
110 </exclusion>
111 <exclusion>
112 <groupId>io.netty</groupId>
113 <artifactId>netty-resolver-dns-classes-macos</artifactId>
114 </exclusion>
115 <exclusion>
116 <groupId>io.netty</groupId>
117 <artifactId>netty-resolver-dns-native-macos</artifactId>
118 </exclusion>
119 <exclusion>
120 <groupId>io.netty</groupId>
121 <artifactId>netty-transport-rxtx</artifactId>
122 </exclusion>
123 <exclusion>
124 <groupId>io.netty</groupId>
125 <artifactId>netty-transport-sctp</artifactId>
126 </exclusion>
127 <exclusion>
128 <groupId>io.netty</groupId>
129 <artifactId>netty-transport-udt</artifactId>
130 </exclusion>
131 <exclusion>
132 <groupId>io.netty</groupId>
133 <artifactId>netty-codec-memcache</artifactId>
134 </exclusion>
135 <exclusion>
136 <groupId>io.netty</groupId>
137 <artifactId>netty-codec-mqtt</artifactId>
138 </exclusion>
139 <exclusion>
140 <groupId>io.netty</groupId>
141 <artifactId>netty-codec-redis</artifactId>
142 </exclusion>
143 <exclusion>
144 <groupId>io.netty</groupId>
145 <artifactId>netty-codec-smtp</artifactId>
146 </exclusion>
147 <exclusion>
148 <groupId>io.netty</groupId>
149 <artifactId>netty-codec-socks</artifactId>
150 </exclusion>
151 <exclusion>
152 <groupId>io.netty</groupId>
153 <artifactId>netty-codec-stomp</artifactId>
154 </exclusion>
155 </exclusions>
Michael Blowc8b90902025-05-16 19:55:57 -0400156 </dependency>
157 <dependency>
158 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400159 <artifactId>netty-buffer</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500160 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400161 </dependency>
162 <dependency>
163 <groupId>io.netty</groupId>
164 <artifactId>netty-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500165 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400166 </dependency>
167 <dependency>
168 <groupId>io.netty</groupId>
169 <artifactId>netty-codec-http</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500170 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400171 </dependency>
172 <dependency>
173 <groupId>io.netty</groupId>
174 <artifactId>netty-transport</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500175 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400176 </dependency>
177 <dependency>
178 <groupId>io.netty</groupId>
179 <artifactId>netty-codec</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500180 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400181 </dependency>
182 <dependency>
183 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400184 <artifactId>netty-codec-dns</artifactId>
185 <version>${netty.version}</version>
186 </dependency>
187 <dependency>
188 <groupId>io.netty</groupId>
189 <artifactId>netty-codec-socks</artifactId>
190 <version>${netty.version}</version>
191 </dependency>
192 <dependency>
193 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400194 <artifactId>netty-handler</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500195 <version>${netty.version}</version>
Michael Blow1e12c3c2025-05-19 16:08:20 -0400196 <exclusions>
197 <exclusion>
198 <groupId>io.netty</groupId>
199 <artifactId>netty-transport-native-unix-common</artifactId>
200 </exclusion>
201 </exclusions>
Till Westmannea666c92017-02-22 22:25:15 -0800202 </dependency>
203 <dependency>
Michael Blow178ad762022-06-24 17:38:08 -0400204 <groupId>io.netty</groupId>
Hussain Towaileb35c42ac2023-05-23 10:44:10 +0300205 <artifactId>netty-handler-proxy</artifactId>
206 <version>${netty.version}</version>
207 </dependency>
208 <dependency>
209 <groupId>io.netty</groupId>
Michael Blow178ad762022-06-24 17:38:08 -0400210 <artifactId>netty-transport-classes-epoll</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500211 <version>${netty.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700212 </dependency>
213 <dependency>
Michael Blow7d462c32021-11-05 11:49:19 -0400214 <groupId>io.netty</groupId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500215 <artifactId>netty-transport-native-epoll</artifactId>
216 <version>${netty.version}</version>
217 </dependency>
218 <dependency>
219 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400220 <artifactId>netty-resolver</artifactId>
221 <version>${netty.version}</version>
222 </dependency>
223 <dependency>
224 <groupId>io.netty</groupId>
Michael Blowc8b90902025-05-16 19:55:57 -0400225 <artifactId>netty-transport-native-epoll</artifactId>
226 <classifier>linux-x86_64</classifier>
227 <version>${netty.version}</version>
228 </dependency>
229 <dependency>
230 <groupId>io.netty</groupId>
231 <artifactId>netty-transport-native-kqueue</artifactId>
232 <classifier>osx-x86_64</classifier>
233 <version>${netty.version}</version>
234 </dependency>
235 <dependency>
236 <groupId>io.netty</groupId>
237 <artifactId>netty-transport-native-kqueue</artifactId>
238 <version>${netty.version}</version>
239 </dependency>
240 <dependency>
241 <groupId>io.netty</groupId>
Michael Blow7d462c32021-11-05 11:49:19 -0400242 <artifactId>netty-resolver-dns</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500243 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400244 </dependency>
245 <dependency>
246 <groupId>io.netty</groupId>
247 <artifactId>netty-codec-http2</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500248 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400249 </dependency>
250 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700251 <groupId>junit</groupId>
252 <artifactId>junit</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500253 <version>4.13.2</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700254 </dependency>
255 <dependency>
256 <groupId>org.apache.hadoop</groupId>
257 <artifactId>hadoop-yarn-client</artifactId>
258 <version>${hadoop.version}</version>
259 </dependency>
260 <dependency>
261 <groupId>org.apache.hadoop</groupId>
262 <artifactId>hadoop-client</artifactId>
263 <version>${hadoop.version}</version>
264 </dependency>
265 <dependency>
266 <groupId>org.apache.hadoop</groupId>
267 <artifactId>hadoop-common</artifactId>
268 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400269 <exclusions>
270 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300271 <groupId>net.minidev</groupId>
272 <artifactId>json-smart</artifactId>
273 </exclusion>
274 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300275 <groupId>com.nimbusds</groupId>
276 <artifactId>nimbus-jose-jwt</artifactId>
277 </exclusion>
278 <exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400279 <groupId>javax.servlet.jsp</groupId>
280 <artifactId>jsp-api</artifactId>
281 </exclusion>
282 <exclusion>
283 <groupId>javax.servlet</groupId>
284 <artifactId>servlet-api</artifactId>
285 </exclusion>
286 <exclusion>
287 <groupId>jdk.tools</groupId>
288 <artifactId>jdk.tools</artifactId>
289 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700290 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500291 <groupId>org.slf4j</groupId>
292 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700293 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700294 <exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700295 <groupId>org.slf4j</groupId>
296 <artifactId>slf4j-log4j12</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300297 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400298 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700299 </dependency>
300 <dependency>
301 <groupId>org.apache.hadoop</groupId>
302 <artifactId>hadoop-hdfs</artifactId>
303 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700304 <exclusions>
305 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500306 <groupId>org.slf4j</groupId>
307 <artifactId>slf4j-reload4j</artifactId>
308 </exclusion>
309 <exclusion>
310 <groupId>ch.qos.reload4j</groupId>
311 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700312 </exclusion>
313 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700314 </dependency>
315 <dependency>
316 <groupId>org.apache.hadoop</groupId>
317 <artifactId>hadoop-minicluster</artifactId>
318 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700319 <exclusions>
320 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500321 <groupId>org.slf4j</groupId>
322 <artifactId>slf4j-reload4j</artifactId>
323 </exclusion>
324 <exclusion>
325 <groupId>ch.qos.reload4j</groupId>
326 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700327 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300328 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700329 <groupId>log4j</groupId>
330 <artifactId>log4j</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300331 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700332 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700333 </dependency>
334 <dependency>
335 <groupId>org.apache.hadoop</groupId>
336 <artifactId>hadoop-mapreduce-client-core</artifactId>
337 <version>${hadoop.version}</version>
338 </dependency>
339 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400340 <groupId>org.apache.hadoop</groupId>
341 <artifactId>hadoop-hdfs</artifactId>
342 <version>${hadoop.version}</version>
343 <classifier>tests</classifier>
344 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700345 <exclusions>
346 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500347 <groupId>org.slf4j</groupId>
348 <artifactId>slf4j-reload4j</artifactId>
349 </exclusion>
350 <exclusion>
351 <groupId>ch.qos.reload4j</groupId>
352 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700353 </exclusion>
354 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400355 </dependency>
356 <dependency>
Michael Blow91a7e802023-01-12 18:51:33 -0500357 <groupId>com.e-movimento.tinytools</groupId>
358 <artifactId>privilegedaccessor</artifactId>
359 <version>1.3</version>
360 </dependency>
361 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700362 <groupId>commons-io</groupId>
363 <artifactId>commons-io</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500364 <version>2.18.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500365 </dependency>
366 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400367 <groupId>org.apache.commons</groupId>
368 <artifactId>commons-text</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500369 <version>1.12.0</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400370 </dependency>
371 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800372 <groupId>com.fasterxml.jackson.core</groupId>
373 <artifactId>jackson-databind</artifactId>
Michael Blow91a7e802023-01-12 18:51:33 -0500374 <version>${jackson-databind.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800375 </dependency>
376 <dependency>
377 <groupId>com.fasterxml.jackson.core</groupId>
378 <artifactId>jackson-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400379 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800380 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500381 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500382 <groupId>com.fasterxml.jackson.core</groupId>
383 <artifactId>jackson-annotations</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400384 <version>${jackson.version}</version>
Michael Blow204b2952017-12-07 20:17:47 -0500385 </dependency>
386 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500387 <groupId>com.google.guava</groupId>
388 <artifactId>guava</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500389 <version>33.3.1-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400390 <exclusions>
391 <exclusion>
392 <groupId>com.google.code.findbugs</groupId>
393 <artifactId>jsr305</artifactId>
394 </exclusion>
395 <exclusion>
396 <groupId>com.google.guava</groupId>
397 <artifactId>listenablefuture</artifactId>
398 </exclusion>
399 <exclusion>
400 <groupId>org.checkerframework</groupId>
401 <artifactId>checker-qual</artifactId>
402 </exclusion>
403 <exclusion>
404 <groupId>com.google.j2objc</groupId>
405 <artifactId>j2objc-annotations</artifactId>
406 </exclusion>
407 <exclusion>
408 <groupId>org.codehaus.mojo</groupId>
409 <artifactId>animal-sniffer-annotations</artifactId>
410 </exclusion>
411 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500412 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500413 <dependency>
414 <groupId>org.apache.commons</groupId>
415 <artifactId>commons-lang3</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500416 <version>3.17.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500417 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500418 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500419 <groupId>org.apache.commons</groupId>
420 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500421 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500422 </dependency>
423 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800424 <groupId>org.apache.httpcomponents</groupId>
425 <artifactId>httpcore</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400426 <version>4.4.16</version>
427 </dependency>
428 <dependency>
429 <groupId>org.apache.httpcomponents</groupId>
430 <artifactId>httpcore-nio</artifactId>
431 <version>4.4.16</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800432 </dependency>
433 <dependency>
434 <groupId>org.apache.httpcomponents</groupId>
435 <artifactId>httpclient</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400436 <version>4.5.14</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800437 </dependency>
438 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500439 <groupId>org.apache.rat</groupId>
440 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500441 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500442 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500443 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800444 <groupId>org.ini4j</groupId>
445 <artifactId>ini4j</artifactId>
446 <version>0.5.4</version>
447 </dependency>
448 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500449 <groupId>args4j</groupId>
450 <artifactId>args4j</artifactId>
451 <version>2.33</version>
452 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300453 <dependency>
454 <groupId>org.apache.logging.log4j</groupId>
455 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400456 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300457 </dependency>
458 <dependency>
459 <groupId>org.apache.logging.log4j</groupId>
460 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400461 <version>${log4j.version}</version>
462 </dependency>
463 <dependency>
464 <groupId>org.apache.logging.log4j</groupId>
465 <artifactId>log4j-jul</artifactId>
466 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300467 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800468 <dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400469 <groupId>javax.xml.bind</groupId>
470 <artifactId>jaxb-api</artifactId>
471 <version>2.3.0</version>
472 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500473 <dependency>
474 <groupId>org.apache.maven</groupId>
475 <artifactId>maven-project</artifactId>
476 <version>2.2.1</version>
477 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500478 <dependency>
479 <groupId>org.apache.maven</groupId>
480 <artifactId>maven-model</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500481 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500482 </dependency>
483 <dependency>
484 <groupId>org.apache.maven</groupId>
485 <artifactId>maven-artifact</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500486 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500487 </dependency>
488 <dependency>
489 <groupId>org.apache.maven</groupId>
490 <artifactId>maven-compat</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500491 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500492 </dependency>
493 <dependency>
494 <groupId>org.apache.maven</groupId>
495 <artifactId>maven-core</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500496 <version>3.8.4</version>
Michael Blow8363dcb2021-12-04 06:02:34 -0500497 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500498 <dependency>
499 <groupId>org.apache.maven</groupId>
500 <artifactId>maven-plugin-api</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500501 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400502 </dependency>
503 <dependency>
Michael Blowfa0ddb62022-01-22 08:08:51 -0500504 <groupId>org.apache.maven.plugin-tools</groupId>
505 <artifactId>maven-plugin-annotations</artifactId>
506 <version>3.6.4</version>
507 </dependency>
508 <dependency>
509 <groupId>org.apache.maven.plugins</groupId>
510 <artifactId>maven-remote-resources-plugin</artifactId>
511 <version>1.7.0</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500512 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700513 <dependency>
514 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400515 <artifactId>fastutil-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400516 <version>8.5.6</version>
Rui Guo4ce394b2020-07-23 07:35:59 -0700517 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700518 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700519 <groupId>org.slf4j</groupId>
520 <artifactId>slf4j-simple</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400521 <version>1.7.36</version>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700522 </dependency>
523 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700524 <groupId>org.apache.logging.log4j</groupId>
525 <artifactId>log4j-1.2-api</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400526 <version>${log4j.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700527 </dependency>
Ian Maxon94eb3c22021-06-03 12:31:18 -0700528 <dependency>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700529 <groupId>org.mockito</groupId>
530 <artifactId>mockito-core</artifactId>
531 <version>3.10.0</version>
532 </dependency>
533 <dependency>
534 <groupId>org.powermock</groupId>
535 <artifactId>powermock-api-mockito2</artifactId>
536 <version>2.0.9</version>
537 </dependency>
538 <dependency>
539 <groupId>org.powermock</groupId>
540 <artifactId>powermock-module-junit4</artifactId>
541 <version>2.0.9</version>
542 </dependency>
543 <dependency>
544 <groupId>org.powermock</groupId>
545 <artifactId>powermock-core</artifactId>
546 <version>2.0.9</version>
547 </dependency>
Wail Alkowaileet790ce542021-08-07 16:21:17 -0700548 <dependency>
549 <groupId>org.xerial.snappy</groupId>
550 <artifactId>snappy-java</artifactId>
551 <version>${snappy.version}</version>
552 </dependency>
Hussain Towailebaedda352023-05-22 04:45:42 +0300553 <!-- Manually included to avoid CVE-2023-1370 -->
554 <dependency>
555 <groupId>net.minidev</groupId>
556 <artifactId>json-smart</artifactId>
557 <version>2.4.11</version>
558 </dependency>
Wail Alkowaileet72e69c62024-05-09 10:14:37 -0700559 <dependency>
560 <groupId>org.ow2.asm</groupId>
561 <artifactId>asm</artifactId>
562 <version>${asm.version}</version>
563 </dependency>
564 <dependency>
565 <groupId>org.ow2.asm</groupId>
566 <artifactId>asm-commons</artifactId>
567 <version>${asm.version}</version>
568 </dependency>
569 <dependency>
570 <groupId>org.ow2.asm</groupId>
571 <artifactId>asm-analysis</artifactId>
572 <version>${asm.version}</version>
573 </dependency>
574 <dependency>
575 <groupId>org.ow2.asm</groupId>
576 <artifactId>asm-tree</artifactId>
577 <version>${asm.version}</version>
578 </dependency>
579 <dependency>
580 <groupId>org.ow2.asm</groupId>
581 <artifactId>asm-util</artifactId>
582 <version>${asm.version}</version>
583 </dependency>
Michael Blow36e78172024-11-27 21:01:58 -0500584 <dependency>
585 <groupId>org.apache.hadoop</groupId>
586 <artifactId>hadoop-client-runtime</artifactId>
587 <version>3.4.1</version>
588 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700589 </dependencies>
590 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000591 <build>
592 <plugins>
593 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400594 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500595 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500596 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500597 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500598 <exclude>**/DEPENDENCIES</exclude>
599 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500600 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500601 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500602 <manifest>
603 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
604 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
605 </manifest>
606 <manifestEntries>
607 <Implementation-Title>${implementation.title}</Implementation-Title>
608 <Implementation-URL>${implementation.url}</Implementation-URL>
609 <Implementation-Version>${implementation.version}</Implementation-Version>
610 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
611 </manifestEntries>
612 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500613 </configuration>
614 </plugin>
615 <plugin>
616 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400617 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400618 <configuration>
619 <failOnWarning>true</failOnWarning>
620 <outputXML>true</outputXML>
621 </configuration>
622 <executions>
623 <execution>
624 <phase>process-test-classes</phase>
625 <goals>
626 <goal>analyze-only</goal>
627 </goals>
628 </execution>
629 </executions>
630 </plugin>
631 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700632 <groupId>org.apache.rat</groupId>
633 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700634 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700635 <execution>
636 <phase>validate</phase>
637 <goals>
638 <goal>check</goal>
639 </goals>
640 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700641 </executions>
642 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500643 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
644 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700645 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800646 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700647 </licenses>
648 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800649 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700650 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500651 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400652 <excludes combine.children="append">
653 <exclude>**/*.iml</exclude>
654 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700655 </configuration>
656 </plugin>
657 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700658 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700659 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700660 <configuration>
Michael Blow2b057012017-12-07 22:20:39 -0500661 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700662 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000663 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700664 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700665 <groupId>org.apache.maven.plugins</groupId>
666 <artifactId>maven-remote-resources-plugin</artifactId>
667 <executions>
668 <execution>
669 <goals>
670 <goal>process</goal>
671 </goals>
672 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500673 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700674 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700675 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500676 <properties>
677 <projectName>Apache Hyracks - ${project.name}</projectName>
678 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700679 </configuration>
680 </execution>
681 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800682 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400683 <plugin>
684 <groupId>org.apache.maven.plugins</groupId>
685 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400686 <version>3.3.1</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400687 <executions>
688 <execution>
689 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400690 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400691 <goals>
692 <goal>check</goal>
693 </goals>
694 </execution>
695 </executions>
696 <configuration>
697 <logViolationsToConsole>true</logViolationsToConsole>
698 <checkstyleRules>
699 <module name="Checker">
700 <!-- Checks for whitespace -->
701 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400702 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400703 <module name="TreeWalker">
704 <module name="AvoidStarImport">
705 <property name="allowStaticMemberImports" value="true"/>
706 </module>
707 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400708 </module>
709 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400710 <includes>**/*.java,**/*.jj</includes>
711 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400712 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
713 </configuration>
714 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400715 <plugin>
716 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400717 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400718 <executions>
719 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400720 <id>check-pom-packaging</id>
721 <phase>validate</phase>
722 <goals>
723 <goal>run</goal>
724 </goals>
725 <configuration>
726 <exportAntProperties>true</exportAntProperties>
727 <target xmlns:unless="ant:unless">
728 <condition property="skipPomEnforcement">
729 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
730 </condition>
731 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
732 </target>
733 </configuration>
734 </execution>
735 </executions>
736 </plugin>
737 <plugin>
738 <groupId>org.apache.maven.plugins</groupId>
739 <artifactId>maven-enforcer-plugin</artifactId>
740 <executions>
741 <execution>
742 <id>ensure-no-tests-for-pom-packaging</id>
743 <phase>validate</phase>
744 <goals>
745 <goal>enforce</goal>
746 </goals>
747 <configuration>
748 <rules>
749 <requireFilesDontExist>
750 <files>
751 <file>${project.build.testSourceDirectory}</file>
752 </files>
753 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
754 </requireFilesDontExist>
755 </rules>
756 <skip>${skipPomEnforcement}</skip>
757 </configuration>
758 </execution>
759 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400760 <id>enforce-versions</id>
761 <goals>
762 <goal>enforce</goal>
763 </goals>
764 <configuration>
765 <rules>
766 <requireMavenVersion>
767 <version>[3.3.9,)</version>
768 </requireMavenVersion>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700769 <requireJavaVersion>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400770 <version>[${maven.compiler.release},)</version>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700771 </requireJavaVersion>
772 </rules>
773 </configuration>
774 </execution>
775 <execution>
776 <id>ensure-no-duplicate-deps</id>
777 <goals>
778 <goal>enforce</goal>
779 </goals>
780 <configuration>
781 <rules>
782 <banDuplicatePomDependencyVersions/>
Michael Blowf53c1c62016-06-17 16:51:59 -0400783 </rules>
784 </configuration>
785 </execution>
786 </executions>
787 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500788 <plugin>
789 <groupId>org.apache.maven.plugins</groupId>
790 <artifactId>maven-resources-plugin</artifactId>
791 <executions>
792 <execution>
793 <id>default-testResources</id>
794 <goals>
795 <goal>testResources</goal>
796 </goals>
797 <configuration>
798 <skip>${skip.testResources}</skip>
799 </configuration>
800 </execution>
801 </executions>
802 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500803 <plugin>
804 <groupId>net.revelc.code.formatter</groupId>
805 <artifactId>formatter-maven-plugin</artifactId>
806 <executions>
807 <execution>
808 <goals>
809 <goal>${source-format.goal}</goal>
810 </goals>
811 </execution>
812 </executions>
813 <configuration>
814 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
815 <skipFormatting>${source-format.skip}</skipFormatting>
816 </configuration>
817 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400818 <plugin>
819 <groupId>net.revelc.code</groupId>
820 <artifactId>impsort-maven-plugin</artifactId>
821 <executions>
822 <execution>
823 <goals>
824 <goal>${import-sort.goal}</goal>
825 </goals>
826 </execution>
827 </executions>
828 <configuration>
829 <groups>java,javax,org,com,*</groups>
830 <removeUnused>true</removeUnused>
831 <skip>${import-sort.skip}</skip>
832 </configuration>
833 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000834 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700835 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700836 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500837 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800838 <groupId>org.apache.maven.plugins</groupId>
839 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400840 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800841 </plugin>
842 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500843 <groupId>org.apache.rat</groupId>
844 <artifactId>apache-rat-plugin</artifactId>
845 <version>0.12</version>
846 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700847 <plugin>
848 <groupId>net.revelc.code.formatter</groupId>
849 <artifactId>formatter-maven-plugin</artifactId>
850 <version>2.0.1</version>
851 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400852 <plugin>
853 <groupId>net.revelc.code</groupId>
854 <artifactId>impsort-maven-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400855 <version>1.9.0</version>
856 <dependencies>
857 <dependency>
858 <groupId>com.github.javaparser</groupId>
859 <artifactId>javaparser-core</artifactId>
Michael Blowae1291d2024-12-29 11:06:39 -0500860 <version>3.26.3</version>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400861 </dependency>
862 </dependencies>
Michael Blowef85fb02019-03-22 13:40:35 -0400863 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700864 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
865 <plugin>
866 <groupId>org.eclipse.m2e</groupId>
867 <artifactId>lifecycle-mapping</artifactId>
868 <version>1.0.0</version>
869 <configuration>
870 <lifecycleMappingMetadata>
871 <pluginExecutions>
872 <pluginExecution>
873 <pluginExecutionFilter>
874 <groupId>org.apache.rat</groupId>
875 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400876 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700877 <goals>
878 <goal>check</goal>
879 </goals>
880 </pluginExecutionFilter>
881 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400882 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700883 </action>
884 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400885 <pluginExecution>
886 <pluginExecutionFilter>
887 <groupId>org.apache.maven.plugins</groupId>
888 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400889 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400890 <goals>
891 <goal>check</goal>
892 </goals>
893 </pluginExecutionFilter>
894 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400895 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400896 </action>
897 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700898 <pluginExecution>
899 <pluginExecutionFilter>
900 <groupId>org.apache.maven.plugins</groupId>
901 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400902 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700903 <goals>
904 <goal>analyze-only</goal>
905 </goals>
906 </pluginExecutionFilter>
907 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800908 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700909 </action>
910 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800911 <pluginExecution>
912 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800913 <groupId>net.revelc.code.formatter</groupId>
914 <artifactId>formatter-maven-plugin</artifactId>
915 <versionRange>[2.0.1,)</versionRange>
916 <goals>
917 <goal>format</goal>
918 </goals>
919 </pluginExecutionFilter>
920 <action>
921 <ignore></ignore>
922 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800923 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700924 </pluginExecutions>
925 </lifecycleMappingMetadata>
926 </configuration>
927 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800928 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500929 <groupId>org.codehaus.mojo</groupId>
930 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400931 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800932 </plugin>
933 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500934 <groupId>org.apache.maven.plugins</groupId>
935 <artifactId>maven-scm-plugin</artifactId>
936 <version>1.9.5</version>
937 </plugin>
938 <plugin>
939 <groupId>org.codehaus.mojo</groupId>
940 <artifactId>appassembler-maven-plugin</artifactId>
941 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800942 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400943 <plugin>
944 <groupId>org.apache.maven.plugins</groupId>
945 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400946 <version>2.21.0</version>
Ian Maxon0cde5152025-02-20 14:22:00 -0800947 <configuration>
948 <failIfNoTests>false</failIfNoTests>
949 <forkCount>1</forkCount>
950 <reuseForks>false</reuseForks>
951 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
952 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
953 --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
954 </argLine>
955 <systemPropertyVariables>
956 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
957 </systemPropertyVariables>
958 <includes>
959 <include>${test.includes}</include>
960 </includes>
961 <excludes combine.children="append">
962 <exclude>${test.excludes}</exclude>
963 </excludes>
964 <skipTests>${skip.surefire.tests}</skipTests>
965 </configuration>
Michael Blow10a74862017-05-23 16:55:39 -0400966 </plugin>
967 <plugin>
968 <groupId>org.apache.maven.plugins</groupId>
969 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400970 <version>2.21.0</version>
Ian Maxon0cde5152025-02-20 14:22:00 -0800971 <configuration>
972 <systemPropertyVariables>
973 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
974 </systemPropertyVariables>
975 </configuration>
Michael Blow10a74862017-05-23 16:55:39 -0400976 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400977 <plugin>
978 <groupId>org.apache.hyracks</groupId>
979 <artifactId>license-automation-plugin</artifactId>
980 <version>${project.version}</version>
981 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400982 <plugin>
983 <groupId>org.apache.maven.plugins</groupId>
984 <artifactId>maven-assembly-plugin</artifactId>
985 <version>3.1.0</version>
986 </plugin>
987 <plugin>
988 <groupId>org.apache.maven.plugins</groupId>
989 <artifactId>maven-antrun-plugin</artifactId>
990 <version>1.8</version>
991 </plugin>
992 <plugin>
993 <groupId>org.apache.maven.plugins</groupId>
994 <artifactId>maven-clean-plugin</artifactId>
995 <version>3.0.0</version>
996 </plugin>
997 <plugin>
998 <groupId>org.apache.maven.plugins</groupId>
999 <artifactId>maven-jar-plugin</artifactId>
1000 <version>3.0.2</version>
1001 </plugin>
1002 <plugin>
1003 <groupId>org.codehaus.mojo</groupId>
1004 <artifactId>build-helper-maven-plugin</artifactId>
1005 <version>3.0.0</version>
1006 </plugin>
1007 <plugin>
1008 <groupId>org.apache.maven.plugins</groupId>
1009 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -04001010 <version>3.6.0</version>
Michael Blow0aae1832017-10-29 11:59:47 -04001011 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -04001012 <plugin>
1013 <groupId>org.apache.maven.doxia</groupId>
1014 <artifactId>doxia-maven-plugin</artifactId>
1015 <version>1.1.4</version>
1016 </plugin>
Ian Maxon4889f6b2021-05-05 02:08:27 -07001017 <plugin>
1018 <groupId>org.apache.maven.plugins</groupId>
1019 <artifactId>maven-enforcer-plugin</artifactId>
1020 <version>3.0.0-M3</version>
1021 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -07001022 </plugins>
1023 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +00001024 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001025 <profiles>
1026 <profile>
Michael Blow916dce42017-05-23 13:19:12 -04001027 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001028 <activation>
1029 <file>
Michael Blow916dce42017-05-23 13:19:12 -04001030 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001031 </file>
1032 </activation>
Michael Blow916dce42017-05-23 13:19:12 -04001033 <properties>
1034 <skip.assembly>true</skip.assembly>
1035 </properties>
1036 </profile>
1037 <profile>
1038 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001039 <build>
1040 <plugins>
1041 <plugin>
1042 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -05001043 <artifactId>maven-jar-plugin</artifactId>
1044 <configuration>
1045 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -05001046 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -05001047 <manifest>
1048 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
1049 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
1050 </manifest>
1051 </archive>
1052 </configuration>
1053 </plugin>
1054 <plugin>
1055 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001056 <artifactId>maven-assembly-plugin</artifactId>
1057 <!-- We override the configuration plugin to override the descriptor to use for building
1058 the source release zip. Specifically, we would like to control the inclusions/exclusions.
1059 For example, we exclude the KEYS file from the zip -->
1060 <executions>
1061 <execution>
1062 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
1063 the apache parent POM under the apache-release profile -->
1064 <id>source-release-assembly</id>
1065 <phase>package</phase>
1066 <goals>
1067 <goal>single</goal>
1068 </goals>
1069 <!-- combine.self should be override to replace the configuration in the parent POM -->
1070 <configuration combine.self="override">
1071 <descriptors>
1072 <descriptor>src/main/assembly/source.xml</descriptor>
1073 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -04001074 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001075 </configuration>
1076 </execution>
1077 </executions>
1078 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001079 <plugin>
1080 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -08001081 <artifactId>maven-gpg-plugin</artifactId>
1082 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001083 <executions>
1084 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -08001085 <id>sign-artifacts</id>
1086 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001087 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -08001088 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001089 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001090 </execution>
1091 </executions>
1092 </plugin>
1093 </plugins>
1094 </build>
1095 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -07001096 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -04001097 <id>coverage</id>
1098 <activation>
1099 <property>
1100 <name>coverage</name>
1101 </property>
1102 </activation>
1103 <build>
1104 <plugins>
1105 <plugin>
1106 <groupId>org.jacoco</groupId>
1107 <artifactId>jacoco-maven-plugin</artifactId>
1108 <version>${jacoco.version}</version>
1109 <executions>
1110 <execution>
1111 <id>default-prepare-agent</id>
1112 <goals>
1113 <goal>prepare-agent</goal>
1114 </goals>
1115 <configuration>
1116 <propertyName>coverageArgLine</propertyName>
1117 </configuration>
1118 </execution>
1119 <execution>
1120 <id>default-prepare-agent-integration</id>
1121 <goals>
1122 <goal>prepare-agent-integration</goal>
1123 </goals>
1124 <configuration>
1125 <propertyName>coverageArgLine</propertyName>
1126 </configuration>
1127 </execution>
1128 </executions>
1129 </plugin>
1130 </plugins>
1131 </build>
1132 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001133 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -04001134 </properties>
1135 </profile>
1136 <profile>
1137 <id>no-coverage</id>
1138 <activation>
1139 <property>
1140 <name>!coverage</name>
1141 </property>
1142 </activation>
1143 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001144 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -04001145 </properties>
1146 </profile>
1147 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -05001148 <id>integration-tests-only</id>
1149 <properties>
1150 <test.includes/>
1151 <failIfNoTests>false</failIfNoTests>
1152 </properties>
1153 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001154 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +00001155 <modules>
1156 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +00001157 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -05001158 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +00001159 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -04001160</project>