blob: 0a9ff13dbdeb11dddd1a583cbaebfe882b116a0e [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>
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 Blow8b67de42023-06-28 11:14:13 -040076 <jackson.version>2.14.3</jackson.version>
Michael Blow91a7e802023-01-12 18:51:33 -050077 <jackson-databind.version>${jackson.version}</jackson-databind.version>
Michael Blowc831a8b2024-12-02 21:38:38 -050078 <netty.version>4.1.115.Final</netty.version>
Wail Alkowaileet72e69c62024-05-09 10:14:37 -070079 <asm.version>9.3</asm.version>
Michael Blow38ca9622018-02-28 11:44:43 -050080
Michael Blowcbfe8f92018-02-28 14:02:38 -050081 <implementation.title>Apache Hyracks and Algebricks - ${project.name}</implementation.title>
Michael Blow38ca9622018-02-28 11:44:43 -050082 <implementation.url>https://asterixdb.apache.org/</implementation.url>
83 <implementation.version>${project.version}</implementation.version>
84 <implementation.vendor>${project.organization.name}</implementation.vendor>
Michael Blowb4c1fb02016-05-09 15:41:00 -070085 </properties>
86 <dependencyManagement>
87 <dependencies>
88 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080089 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -040090 <artifactId>netty-buffer</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -050091 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -040092 </dependency>
93 <dependency>
94 <groupId>io.netty</groupId>
95 <artifactId>netty-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -050096 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -040097 </dependency>
98 <dependency>
99 <groupId>io.netty</groupId>
100 <artifactId>netty-codec-http</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500101 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400102 </dependency>
103 <dependency>
104 <groupId>io.netty</groupId>
105 <artifactId>netty-transport</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500106 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400107 </dependency>
108 <dependency>
109 <groupId>io.netty</groupId>
110 <artifactId>netty-codec</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500111 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400112 </dependency>
113 <dependency>
114 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400115 <artifactId>netty-codec-dns</artifactId>
116 <version>${netty.version}</version>
117 </dependency>
118 <dependency>
119 <groupId>io.netty</groupId>
120 <artifactId>netty-codec-socks</artifactId>
121 <version>${netty.version}</version>
122 </dependency>
123 <dependency>
124 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400125 <artifactId>netty-handler</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500126 <version>${netty.version}</version>
Till Westmannea666c92017-02-22 22:25:15 -0800127 </dependency>
128 <dependency>
Michael Blow178ad762022-06-24 17:38:08 -0400129 <groupId>io.netty</groupId>
Hussain Towaileb35c42ac2023-05-23 10:44:10 +0300130 <artifactId>netty-handler-proxy</artifactId>
131 <version>${netty.version}</version>
132 </dependency>
133 <dependency>
134 <groupId>io.netty</groupId>
Michael Blow178ad762022-06-24 17:38:08 -0400135 <artifactId>netty-transport-classes-epoll</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500136 <version>${netty.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700137 </dependency>
138 <dependency>
Michael Blow7d462c32021-11-05 11:49:19 -0400139 <groupId>io.netty</groupId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500140 <artifactId>netty-transport-native-epoll</artifactId>
141 <version>${netty.version}</version>
142 </dependency>
143 <dependency>
144 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400145 <artifactId>netty-resolver</artifactId>
146 <version>${netty.version}</version>
147 </dependency>
148 <dependency>
149 <groupId>io.netty</groupId>
Michael Blow7d462c32021-11-05 11:49:19 -0400150 <artifactId>netty-resolver-dns</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500151 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400152 </dependency>
153 <dependency>
154 <groupId>io.netty</groupId>
155 <artifactId>netty-codec-http2</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500156 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400157 </dependency>
158 <dependency>
159 <groupId>io.netty</groupId>
160 <artifactId>netty-transport-native-unix-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500161 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400162 </dependency>
163 <dependency>
Hussain Towaileb8d1721f2023-06-08 19:34:07 +0300164 <groupId>io.netty</groupId>
165 <artifactId>netty-all</artifactId>
166 <version>${netty.version}</version>
167 <scope>test</scope>
168 </dependency>
169 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700170 <groupId>junit</groupId>
171 <artifactId>junit</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500172 <version>4.13.2</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700173 </dependency>
174 <dependency>
175 <groupId>org.apache.hadoop</groupId>
176 <artifactId>hadoop-yarn-client</artifactId>
177 <version>${hadoop.version}</version>
178 </dependency>
179 <dependency>
180 <groupId>org.apache.hadoop</groupId>
181 <artifactId>hadoop-client</artifactId>
182 <version>${hadoop.version}</version>
183 </dependency>
184 <dependency>
185 <groupId>org.apache.hadoop</groupId>
186 <artifactId>hadoop-common</artifactId>
187 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400188 <exclusions>
189 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300190 <groupId>net.minidev</groupId>
191 <artifactId>json-smart</artifactId>
192 </exclusion>
193 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300194 <groupId>com.nimbusds</groupId>
195 <artifactId>nimbus-jose-jwt</artifactId>
196 </exclusion>
197 <exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400198 <groupId>javax.servlet.jsp</groupId>
199 <artifactId>jsp-api</artifactId>
200 </exclusion>
201 <exclusion>
202 <groupId>javax.servlet</groupId>
203 <artifactId>servlet-api</artifactId>
204 </exclusion>
205 <exclusion>
206 <groupId>jdk.tools</groupId>
207 <artifactId>jdk.tools</artifactId>
208 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700209 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500210 <groupId>org.slf4j</groupId>
211 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700212 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700213 <exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700214 <groupId>org.slf4j</groupId>
215 <artifactId>slf4j-log4j12</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300216 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400217 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700218 </dependency>
219 <dependency>
220 <groupId>org.apache.hadoop</groupId>
221 <artifactId>hadoop-hdfs</artifactId>
222 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700223 <exclusions>
224 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500225 <groupId>io.netty</groupId>
226 <artifactId>netty-all</artifactId>
227 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500228 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500229 <groupId>org.slf4j</groupId>
230 <artifactId>slf4j-reload4j</artifactId>
231 </exclusion>
232 <exclusion>
233 <groupId>ch.qos.reload4j</groupId>
234 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700235 </exclusion>
236 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700237 </dependency>
238 <dependency>
239 <groupId>org.apache.hadoop</groupId>
240 <artifactId>hadoop-minicluster</artifactId>
241 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700242 <exclusions>
243 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500244 <groupId>org.slf4j</groupId>
245 <artifactId>slf4j-reload4j</artifactId>
246 </exclusion>
247 <exclusion>
248 <groupId>ch.qos.reload4j</groupId>
249 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700250 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300251 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700252 <groupId>log4j</groupId>
253 <artifactId>log4j</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300254 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700255 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700256 </dependency>
257 <dependency>
258 <groupId>org.apache.hadoop</groupId>
259 <artifactId>hadoop-mapreduce-client-core</artifactId>
260 <version>${hadoop.version}</version>
261 </dependency>
262 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400263 <groupId>org.apache.hadoop</groupId>
264 <artifactId>hadoop-hdfs</artifactId>
265 <version>${hadoop.version}</version>
266 <classifier>tests</classifier>
267 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700268 <exclusions>
269 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500270 <groupId>org.slf4j</groupId>
271 <artifactId>slf4j-reload4j</artifactId>
272 </exclusion>
273 <exclusion>
274 <groupId>ch.qos.reload4j</groupId>
275 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700276 </exclusion>
277 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400278 </dependency>
279 <dependency>
Michael Blow91a7e802023-01-12 18:51:33 -0500280 <groupId>com.e-movimento.tinytools</groupId>
281 <artifactId>privilegedaccessor</artifactId>
282 <version>1.3</version>
283 </dependency>
284 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700285 <groupId>commons-io</groupId>
286 <artifactId>commons-io</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500287 <version>2.18.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500288 </dependency>
289 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400290 <groupId>org.apache.commons</groupId>
291 <artifactId>commons-text</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500292 <version>1.12.0</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400293 </dependency>
294 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800295 <groupId>com.fasterxml.jackson.core</groupId>
296 <artifactId>jackson-databind</artifactId>
Michael Blow91a7e802023-01-12 18:51:33 -0500297 <version>${jackson-databind.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800298 </dependency>
299 <dependency>
300 <groupId>com.fasterxml.jackson.core</groupId>
301 <artifactId>jackson-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400302 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800303 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500304 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500305 <groupId>com.fasterxml.jackson.core</groupId>
306 <artifactId>jackson-annotations</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400307 <version>${jackson.version}</version>
Michael Blow204b2952017-12-07 20:17:47 -0500308 </dependency>
309 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500310 <groupId>com.google.guava</groupId>
311 <artifactId>guava</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500312 <version>33.3.1-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400313 <exclusions>
314 <exclusion>
315 <groupId>com.google.code.findbugs</groupId>
316 <artifactId>jsr305</artifactId>
317 </exclusion>
318 <exclusion>
319 <groupId>com.google.guava</groupId>
320 <artifactId>listenablefuture</artifactId>
321 </exclusion>
322 <exclusion>
323 <groupId>org.checkerframework</groupId>
324 <artifactId>checker-qual</artifactId>
325 </exclusion>
326 <exclusion>
327 <groupId>com.google.j2objc</groupId>
328 <artifactId>j2objc-annotations</artifactId>
329 </exclusion>
330 <exclusion>
331 <groupId>org.codehaus.mojo</groupId>
332 <artifactId>animal-sniffer-annotations</artifactId>
333 </exclusion>
334 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500335 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500336 <dependency>
337 <groupId>org.apache.commons</groupId>
338 <artifactId>commons-lang3</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500339 <version>3.17.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500340 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500341 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500342 <groupId>org.apache.commons</groupId>
343 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500344 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500345 </dependency>
346 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800347 <groupId>org.apache.httpcomponents</groupId>
348 <artifactId>httpcore</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400349 <version>4.4.16</version>
350 </dependency>
351 <dependency>
352 <groupId>org.apache.httpcomponents</groupId>
353 <artifactId>httpcore-nio</artifactId>
354 <version>4.4.16</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800355 </dependency>
356 <dependency>
357 <groupId>org.apache.httpcomponents</groupId>
358 <artifactId>httpclient</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400359 <version>4.5.14</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800360 </dependency>
361 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500362 <groupId>org.apache.rat</groupId>
363 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500364 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500365 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500366 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800367 <groupId>org.ini4j</groupId>
368 <artifactId>ini4j</artifactId>
369 <version>0.5.4</version>
370 </dependency>
371 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500372 <groupId>args4j</groupId>
373 <artifactId>args4j</artifactId>
374 <version>2.33</version>
375 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300376 <dependency>
377 <groupId>org.apache.logging.log4j</groupId>
378 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400379 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300380 </dependency>
381 <dependency>
382 <groupId>org.apache.logging.log4j</groupId>
383 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400384 <version>${log4j.version}</version>
385 </dependency>
386 <dependency>
387 <groupId>org.apache.logging.log4j</groupId>
388 <artifactId>log4j-jul</artifactId>
389 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300390 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800391 <dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400392 <groupId>javax.xml.bind</groupId>
393 <artifactId>jaxb-api</artifactId>
394 <version>2.3.0</version>
395 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500396 <dependency>
397 <groupId>org.apache.maven</groupId>
398 <artifactId>maven-project</artifactId>
399 <version>2.2.1</version>
400 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500401 <dependency>
402 <groupId>org.apache.maven</groupId>
403 <artifactId>maven-model</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500404 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500405 </dependency>
406 <dependency>
407 <groupId>org.apache.maven</groupId>
408 <artifactId>maven-artifact</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500409 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500410 </dependency>
411 <dependency>
412 <groupId>org.apache.maven</groupId>
413 <artifactId>maven-compat</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500414 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500415 </dependency>
416 <dependency>
417 <groupId>org.apache.maven</groupId>
418 <artifactId>maven-core</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500419 <version>3.8.4</version>
Michael Blow8363dcb2021-12-04 06:02:34 -0500420 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500421 <dependency>
422 <groupId>org.apache.maven</groupId>
423 <artifactId>maven-plugin-api</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500424 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400425 </dependency>
426 <dependency>
Michael Blowfa0ddb62022-01-22 08:08:51 -0500427 <groupId>org.apache.maven.plugin-tools</groupId>
428 <artifactId>maven-plugin-annotations</artifactId>
429 <version>3.6.4</version>
430 </dependency>
431 <dependency>
432 <groupId>org.apache.maven.plugins</groupId>
433 <artifactId>maven-remote-resources-plugin</artifactId>
434 <version>1.7.0</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500435 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700436 <dependency>
437 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400438 <artifactId>fastutil-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400439 <version>8.5.6</version>
Rui Guo4ce394b2020-07-23 07:35:59 -0700440 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700441 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700442 <groupId>org.slf4j</groupId>
443 <artifactId>slf4j-simple</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400444 <version>1.7.36</version>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700445 </dependency>
446 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700447 <groupId>org.apache.logging.log4j</groupId>
448 <artifactId>log4j-1.2-api</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400449 <version>${log4j.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700450 </dependency>
Ian Maxon94eb3c22021-06-03 12:31:18 -0700451 <dependency>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700452 <groupId>org.mockito</groupId>
453 <artifactId>mockito-core</artifactId>
454 <version>3.10.0</version>
455 </dependency>
456 <dependency>
457 <groupId>org.powermock</groupId>
458 <artifactId>powermock-api-mockito2</artifactId>
459 <version>2.0.9</version>
460 </dependency>
461 <dependency>
462 <groupId>org.powermock</groupId>
463 <artifactId>powermock-module-junit4</artifactId>
464 <version>2.0.9</version>
465 </dependency>
466 <dependency>
467 <groupId>org.powermock</groupId>
468 <artifactId>powermock-core</artifactId>
469 <version>2.0.9</version>
470 </dependency>
Wail Alkowaileet790ce542021-08-07 16:21:17 -0700471 <dependency>
472 <groupId>org.xerial.snappy</groupId>
473 <artifactId>snappy-java</artifactId>
474 <version>${snappy.version}</version>
475 </dependency>
Hussain Towailebaedda352023-05-22 04:45:42 +0300476 <!-- Manually included to avoid CVE-2023-1370 -->
477 <dependency>
478 <groupId>net.minidev</groupId>
479 <artifactId>json-smart</artifactId>
480 <version>2.4.11</version>
481 </dependency>
Wail Alkowaileet72e69c62024-05-09 10:14:37 -0700482 <dependency>
483 <groupId>org.ow2.asm</groupId>
484 <artifactId>asm</artifactId>
485 <version>${asm.version}</version>
486 </dependency>
487 <dependency>
488 <groupId>org.ow2.asm</groupId>
489 <artifactId>asm-commons</artifactId>
490 <version>${asm.version}</version>
491 </dependency>
492 <dependency>
493 <groupId>org.ow2.asm</groupId>
494 <artifactId>asm-analysis</artifactId>
495 <version>${asm.version}</version>
496 </dependency>
497 <dependency>
498 <groupId>org.ow2.asm</groupId>
499 <artifactId>asm-tree</artifactId>
500 <version>${asm.version}</version>
501 </dependency>
502 <dependency>
503 <groupId>org.ow2.asm</groupId>
504 <artifactId>asm-util</artifactId>
505 <version>${asm.version}</version>
506 </dependency>
Michael Blow36e78172024-11-27 21:01:58 -0500507 <dependency>
508 <groupId>org.apache.hadoop</groupId>
509 <artifactId>hadoop-client-runtime</artifactId>
510 <version>3.4.1</version>
511 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700512 </dependencies>
513 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000514 <build>
515 <plugins>
516 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400517 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500518 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500519 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500520 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500521 <exclude>**/DEPENDENCIES</exclude>
522 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500523 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500524 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500525 <manifest>
526 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
527 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
528 </manifest>
529 <manifestEntries>
530 <Implementation-Title>${implementation.title}</Implementation-Title>
531 <Implementation-URL>${implementation.url}</Implementation-URL>
532 <Implementation-Version>${implementation.version}</Implementation-Version>
533 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
534 </manifestEntries>
535 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500536 </configuration>
537 </plugin>
538 <plugin>
539 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400540 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400541 <configuration>
542 <failOnWarning>true</failOnWarning>
543 <outputXML>true</outputXML>
544 </configuration>
545 <executions>
546 <execution>
547 <phase>process-test-classes</phase>
548 <goals>
549 <goal>analyze-only</goal>
550 </goals>
551 </execution>
552 </executions>
553 </plugin>
554 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700555 <groupId>org.apache.rat</groupId>
556 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700557 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700558 <execution>
559 <phase>validate</phase>
560 <goals>
561 <goal>check</goal>
562 </goals>
563 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700564 </executions>
565 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500566 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
567 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700568 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800569 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700570 </licenses>
571 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800572 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700573 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500574 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400575 <excludes combine.children="append">
576 <exclude>**/*.iml</exclude>
577 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700578 </configuration>
579 </plugin>
580 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700581 <groupId>org.apache.maven.plugins</groupId>
582 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700583 <configuration>
584 <failIfNoTests>false</failIfNoTests>
585 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800586 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800587 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
Murtadha Hubailc7eb0c52018-05-21 18:01:55 +0300588 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Wail Alkowaileet61524a62024-05-01 15:09:24 -0700589 --add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED --add-opens=java.management/sun.management=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED
Michael Blowb4c1fb02016-05-09 15:41:00 -0700590 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300591 <systemPropertyVariables>
592 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
593 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700594 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500595 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700596 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500597 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500598 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800599 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400600 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700601 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700602 </plugin>
603 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700604 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300605 <artifactId>maven-failsafe-plugin</artifactId>
606 <configuration>
607 <systemPropertyVariables>
608 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
609 </systemPropertyVariables>
610 </configuration>
611 </plugin>
612 <plugin>
613 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700614 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700615 <configuration>
Michael Blow2b057012017-12-07 22:20:39 -0500616 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700617 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000618 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700619 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700620 <groupId>org.apache.maven.plugins</groupId>
621 <artifactId>maven-remote-resources-plugin</artifactId>
622 <executions>
623 <execution>
624 <goals>
625 <goal>process</goal>
626 </goals>
627 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500628 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700629 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700630 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500631 <properties>
632 <projectName>Apache Hyracks - ${project.name}</projectName>
633 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700634 </configuration>
635 </execution>
636 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800637 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400638 <plugin>
639 <groupId>org.apache.maven.plugins</groupId>
640 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400641 <version>3.3.1</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400642 <executions>
643 <execution>
644 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400645 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400646 <goals>
647 <goal>check</goal>
648 </goals>
649 </execution>
650 </executions>
651 <configuration>
652 <logViolationsToConsole>true</logViolationsToConsole>
653 <checkstyleRules>
654 <module name="Checker">
655 <!-- Checks for whitespace -->
656 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400657 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400658 <module name="TreeWalker">
659 <module name="AvoidStarImport">
660 <property name="allowStaticMemberImports" value="true"/>
661 </module>
662 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400663 </module>
664 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400665 <includes>**/*.java,**/*.jj</includes>
666 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400667 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
668 </configuration>
669 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400670 <plugin>
671 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400672 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400673 <executions>
674 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400675 <id>check-pom-packaging</id>
676 <phase>validate</phase>
677 <goals>
678 <goal>run</goal>
679 </goals>
680 <configuration>
681 <exportAntProperties>true</exportAntProperties>
682 <target xmlns:unless="ant:unless">
683 <condition property="skipPomEnforcement">
684 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
685 </condition>
686 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
687 </target>
688 </configuration>
689 </execution>
690 </executions>
691 </plugin>
692 <plugin>
693 <groupId>org.apache.maven.plugins</groupId>
694 <artifactId>maven-enforcer-plugin</artifactId>
695 <executions>
696 <execution>
697 <id>ensure-no-tests-for-pom-packaging</id>
698 <phase>validate</phase>
699 <goals>
700 <goal>enforce</goal>
701 </goals>
702 <configuration>
703 <rules>
704 <requireFilesDontExist>
705 <files>
706 <file>${project.build.testSourceDirectory}</file>
707 </files>
708 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
709 </requireFilesDontExist>
710 </rules>
711 <skip>${skipPomEnforcement}</skip>
712 </configuration>
713 </execution>
714 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400715 <id>enforce-versions</id>
716 <goals>
717 <goal>enforce</goal>
718 </goals>
719 <configuration>
720 <rules>
721 <requireMavenVersion>
722 <version>[3.3.9,)</version>
723 </requireMavenVersion>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700724 <requireJavaVersion>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400725 <version>[${maven.compiler.release},)</version>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700726 </requireJavaVersion>
727 </rules>
728 </configuration>
729 </execution>
730 <execution>
731 <id>ensure-no-duplicate-deps</id>
732 <goals>
733 <goal>enforce</goal>
734 </goals>
735 <configuration>
736 <rules>
737 <banDuplicatePomDependencyVersions/>
Michael Blowf53c1c62016-06-17 16:51:59 -0400738 </rules>
739 </configuration>
740 </execution>
741 </executions>
742 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500743 <plugin>
744 <groupId>org.apache.maven.plugins</groupId>
745 <artifactId>maven-resources-plugin</artifactId>
746 <executions>
747 <execution>
748 <id>default-testResources</id>
749 <goals>
750 <goal>testResources</goal>
751 </goals>
752 <configuration>
753 <skip>${skip.testResources}</skip>
754 </configuration>
755 </execution>
756 </executions>
757 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500758 <plugin>
759 <groupId>net.revelc.code.formatter</groupId>
760 <artifactId>formatter-maven-plugin</artifactId>
761 <executions>
762 <execution>
763 <goals>
764 <goal>${source-format.goal}</goal>
765 </goals>
766 </execution>
767 </executions>
768 <configuration>
769 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
770 <skipFormatting>${source-format.skip}</skipFormatting>
771 </configuration>
772 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400773 <plugin>
774 <groupId>net.revelc.code</groupId>
775 <artifactId>impsort-maven-plugin</artifactId>
776 <executions>
777 <execution>
778 <goals>
779 <goal>${import-sort.goal}</goal>
780 </goals>
781 </execution>
782 </executions>
783 <configuration>
784 <groups>java,javax,org,com,*</groups>
785 <removeUnused>true</removeUnused>
786 <skip>${import-sort.skip}</skip>
787 </configuration>
788 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000789 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700790 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700791 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500792 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800793 <groupId>org.apache.maven.plugins</groupId>
794 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400795 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800796 </plugin>
797 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500798 <groupId>org.apache.rat</groupId>
799 <artifactId>apache-rat-plugin</artifactId>
800 <version>0.12</version>
801 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700802 <plugin>
803 <groupId>net.revelc.code.formatter</groupId>
804 <artifactId>formatter-maven-plugin</artifactId>
805 <version>2.0.1</version>
806 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400807 <plugin>
808 <groupId>net.revelc.code</groupId>
809 <artifactId>impsort-maven-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400810 <version>1.9.0</version>
811 <dependencies>
812 <dependency>
813 <groupId>com.github.javaparser</groupId>
814 <artifactId>javaparser-core</artifactId>
Michael Blowae1291d2024-12-29 11:06:39 -0500815 <version>3.26.3</version>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400816 </dependency>
817 </dependencies>
Michael Blowef85fb02019-03-22 13:40:35 -0400818 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700819 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
820 <plugin>
821 <groupId>org.eclipse.m2e</groupId>
822 <artifactId>lifecycle-mapping</artifactId>
823 <version>1.0.0</version>
824 <configuration>
825 <lifecycleMappingMetadata>
826 <pluginExecutions>
827 <pluginExecution>
828 <pluginExecutionFilter>
829 <groupId>org.apache.rat</groupId>
830 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400831 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700832 <goals>
833 <goal>check</goal>
834 </goals>
835 </pluginExecutionFilter>
836 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400837 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700838 </action>
839 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400840 <pluginExecution>
841 <pluginExecutionFilter>
842 <groupId>org.apache.maven.plugins</groupId>
843 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400844 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400845 <goals>
846 <goal>check</goal>
847 </goals>
848 </pluginExecutionFilter>
849 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400850 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400851 </action>
852 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700853 <pluginExecution>
854 <pluginExecutionFilter>
855 <groupId>org.apache.maven.plugins</groupId>
856 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400857 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700858 <goals>
859 <goal>analyze-only</goal>
860 </goals>
861 </pluginExecutionFilter>
862 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800863 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700864 </action>
865 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800866 <pluginExecution>
867 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800868 <groupId>net.revelc.code.formatter</groupId>
869 <artifactId>formatter-maven-plugin</artifactId>
870 <versionRange>[2.0.1,)</versionRange>
871 <goals>
872 <goal>format</goal>
873 </goals>
874 </pluginExecutionFilter>
875 <action>
876 <ignore></ignore>
877 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800878 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700879 </pluginExecutions>
880 </lifecycleMappingMetadata>
881 </configuration>
882 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800883 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500884 <groupId>org.codehaus.mojo</groupId>
885 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400886 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800887 </plugin>
888 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500889 <groupId>org.apache.maven.plugins</groupId>
890 <artifactId>maven-scm-plugin</artifactId>
891 <version>1.9.5</version>
892 </plugin>
893 <plugin>
894 <groupId>org.codehaus.mojo</groupId>
895 <artifactId>appassembler-maven-plugin</artifactId>
896 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800897 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400898 <plugin>
899 <groupId>org.apache.maven.plugins</groupId>
900 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400901 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400902 </plugin>
903 <plugin>
904 <groupId>org.apache.maven.plugins</groupId>
905 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400906 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400907 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400908 <plugin>
909 <groupId>org.apache.hyracks</groupId>
910 <artifactId>license-automation-plugin</artifactId>
911 <version>${project.version}</version>
912 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400913 <plugin>
914 <groupId>org.apache.maven.plugins</groupId>
915 <artifactId>maven-assembly-plugin</artifactId>
916 <version>3.1.0</version>
917 </plugin>
918 <plugin>
919 <groupId>org.apache.maven.plugins</groupId>
920 <artifactId>maven-antrun-plugin</artifactId>
921 <version>1.8</version>
922 </plugin>
923 <plugin>
924 <groupId>org.apache.maven.plugins</groupId>
925 <artifactId>maven-clean-plugin</artifactId>
926 <version>3.0.0</version>
927 </plugin>
928 <plugin>
929 <groupId>org.apache.maven.plugins</groupId>
930 <artifactId>maven-jar-plugin</artifactId>
931 <version>3.0.2</version>
932 </plugin>
933 <plugin>
934 <groupId>org.codehaus.mojo</groupId>
935 <artifactId>build-helper-maven-plugin</artifactId>
936 <version>3.0.0</version>
937 </plugin>
938 <plugin>
939 <groupId>org.apache.maven.plugins</groupId>
940 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400941 <version>3.6.0</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400942 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400943 <plugin>
944 <groupId>org.apache.maven.doxia</groupId>
945 <artifactId>doxia-maven-plugin</artifactId>
946 <version>1.1.4</version>
947 </plugin>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700948 <plugin>
949 <groupId>org.apache.maven.plugins</groupId>
950 <artifactId>maven-enforcer-plugin</artifactId>
951 <version>3.0.0-M3</version>
952 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700953 </plugins>
954 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000955 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800956 <profiles>
957 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400958 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700959 <activation>
960 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400961 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700962 </file>
963 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400964 <properties>
965 <skip.assembly>true</skip.assembly>
966 </properties>
967 </profile>
968 <profile>
969 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700970 <build>
971 <plugins>
972 <plugin>
973 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500974 <artifactId>maven-jar-plugin</artifactId>
975 <configuration>
976 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500977 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500978 <manifest>
979 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
980 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
981 </manifest>
982 </archive>
983 </configuration>
984 </plugin>
985 <plugin>
986 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700987 <artifactId>maven-assembly-plugin</artifactId>
988 <!-- We override the configuration plugin to override the descriptor to use for building
989 the source release zip. Specifically, we would like to control the inclusions/exclusions.
990 For example, we exclude the KEYS file from the zip -->
991 <executions>
992 <execution>
993 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
994 the apache parent POM under the apache-release profile -->
995 <id>source-release-assembly</id>
996 <phase>package</phase>
997 <goals>
998 <goal>single</goal>
999 </goals>
1000 <!-- combine.self should be override to replace the configuration in the parent POM -->
1001 <configuration combine.self="override">
1002 <descriptors>
1003 <descriptor>src/main/assembly/source.xml</descriptor>
1004 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -04001005 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -07001006 </configuration>
1007 </execution>
1008 </executions>
1009 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001010 <plugin>
1011 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -08001012 <artifactId>maven-gpg-plugin</artifactId>
1013 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001014 <executions>
1015 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -08001016 <id>sign-artifacts</id>
1017 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001018 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -08001019 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001020 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -07001021 </execution>
1022 </executions>
1023 </plugin>
1024 </plugins>
1025 </build>
1026 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -07001027 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -04001028 <id>coverage</id>
1029 <activation>
1030 <property>
1031 <name>coverage</name>
1032 </property>
1033 </activation>
1034 <build>
1035 <plugins>
1036 <plugin>
1037 <groupId>org.jacoco</groupId>
1038 <artifactId>jacoco-maven-plugin</artifactId>
1039 <version>${jacoco.version}</version>
1040 <executions>
1041 <execution>
1042 <id>default-prepare-agent</id>
1043 <goals>
1044 <goal>prepare-agent</goal>
1045 </goals>
1046 <configuration>
1047 <propertyName>coverageArgLine</propertyName>
1048 </configuration>
1049 </execution>
1050 <execution>
1051 <id>default-prepare-agent-integration</id>
1052 <goals>
1053 <goal>prepare-agent-integration</goal>
1054 </goals>
1055 <configuration>
1056 <propertyName>coverageArgLine</propertyName>
1057 </configuration>
1058 </execution>
1059 </executions>
1060 </plugin>
1061 </plugins>
1062 </build>
1063 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001064 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -04001065 </properties>
1066 </profile>
1067 <profile>
1068 <id>no-coverage</id>
1069 <activation>
1070 <property>
1071 <name>!coverage</name>
1072 </property>
1073 </activation>
1074 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001075 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -04001076 </properties>
1077 </profile>
1078 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -05001079 <id>integration-tests-only</id>
1080 <properties>
1081 <test.includes/>
1082 <failIfNoTests>false</failIfNoTests>
1083 </properties>
1084 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001085 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +00001086 <modules>
1087 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +00001088 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -05001089 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +00001090 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -04001091</project>