blob: 66b4ebb94753667cd408816343a2d4823bcc301a [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -080019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
vinayakbe5add8a2012-10-06 19:00:14 +000021 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks</groupId>
Michael Blowc3dfd4b2017-01-17 17:19:49 -050023 <artifactId>apache-hyracks</artifactId>
Ian Maxonbf0abd42024-03-05 11:26:12 -080024 <version>0.3.8.3-SNAPSHOT</version>
vinayakbe5add8a2012-10-06 19:00:14 +000025 <packaging>pom</packaging>
buyingyi7f356c12012-10-07 00:23:17 +000026 <name>hyracks-ecosystem-full-stack</name>
Michael Blow38ca9622018-02-28 11:44:43 -050027 <url>${implementation.url}</url>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <parent>
29 <groupId>org.apache</groupId>
30 <artifactId>apache</artifactId>
Michael Blowb99349d2016-11-08 19:38:02 -050031 <version>18</version>
Michael Blow380b0a22016-08-02 13:05:52 -040032 <relativePath />
Michael Blowb4c1fb02016-05-09 15:41:00 -070033 </parent>
Michael Blowb4c1fb02016-05-09 15:41:00 -070034 <licenses>
35 <license>
36 <name>Apache License, Version 2.0</name>
37 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
38 <distribution>repo</distribution>
39 <comments>A business-friendly OSS license</comments>
40 </license>
41 </licenses>
Ian Maxon4b228432017-01-16 13:35:16 -080042 <scm>
43 <connection>scm:git:https://github.com/apache/asterixdb</connection>
44 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
45 <url>https://github.com/apache/asterixdb</url>
Ian Maxona3435a32017-01-18 18:31:30 -080046 <tag>HEAD</tag>
Ian Maxon4b228432017-01-16 13:35:16 -080047 </scm>
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <properties>
Ian Maxon3bb92132019-02-12 22:20:25 -080049 <root.dir>${basedir}</root.dir>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Michael Blowdd920be2017-06-07 15:04:33 -040051 <file.encoding>UTF-8</file.encoding>
Wail Alkowaileet61524a62024-05-01 15:09:24 -070052 <maven.compiler.release>17</maven.compiler.release>
Michael Blow2b057012017-12-07 22:20:39 -050053 <javac.xlint.value>all</javac.xlint.value>
Michael Blow380b0a22016-08-02 13:05:52 -040054 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070055 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow4cd925c2018-01-20 17:15:38 -050056 <source-format.goal>format</source-format.goal>
Dmitry Lychagin249be532017-05-31 14:57:14 -070057 <source-format.skip>false</source-format.skip>
Michael Blowef85fb02019-03-22 13:40:35 -040058 <import-sort.goal>sort</import-sort.goal>
59 <import-sort.skip>false</import-sort.skip>
Ian Maxon3bb92132019-02-12 22:20:25 -080060 <maven.test.skip>false</maven.test.skip>
Michael Blowe30c9d32018-01-20 09:42:19 -050061 <skipTests>false</skipTests>
Michael Blowdd920be2017-06-07 15:04:33 -040062 <skip.surefire.tests>${skipTests}</skip.surefire.tests>
Michael Blow7626d162017-12-10 14:26:56 -050063 <skip.testResources>${maven.test.skip}</skip.testResources>
Michael Blow2530e392018-02-06 01:19:42 -050064 <testLog4jConfigFile>${root.dir}/src/test/resources/log4j2-hyracks-test.xml</testLog4jConfigFile>
Michael Blowb4c1fb02016-05-09 15:41:00 -070065 <!-- Definition of tests in various categories which may be excluded -->
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
67 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
Michael Blow64d49fb2018-02-11 15:43:47 -050068 <global.test.excludes>**/Abstract*.java,${hivesterix.perf.tests}</global.test.excludes>
Michael Blowe30c9d32018-01-20 09:42:19 -050069 <test.includes>${global.test.includes}</test.includes>
70 <test.excludes>${global.test.excludes}</test.excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -070071 <!-- Versions under dependencymanagement or used in many projects via properties -->
Michael Blowc831a8b2024-12-02 21:38:38 -050072 <hadoop.version>3.4.1</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow2a7770b2024-01-09 19:21:53 -050074 <log4j.version>2.22.1</log4j.version>
Michael Blow6baf8ff2023-10-04 20:46:43 -040075 <snappy.version>1.1.10.5</snappy.version>
Michael Blow8f8402e2024-01-11 00:09:36 +000076 <jackson.version>2.14.3</jackson.version>
Michael Blow91a7e802023-01-12 18:51:33 -050077 <jackson-databind.version>${jackson.version}</jackson-databind.version>
Michael Blowc831a8b2024-12-02 21:38:38 -050078 <netty.version>4.1.115.Final</netty.version>
Michael Blow38ca9622018-02-28 11:44:43 -050079
Michael Blowcbfe8f92018-02-28 14:02:38 -050080 <implementation.title>Apache Hyracks and Algebricks - ${project.name}</implementation.title>
Michael Blow38ca9622018-02-28 11:44:43 -050081 <implementation.url>https://asterixdb.apache.org/</implementation.url>
82 <implementation.version>${project.version}</implementation.version>
83 <implementation.vendor>${project.organization.name}</implementation.vendor>
Michael Blowb4c1fb02016-05-09 15:41:00 -070084 </properties>
85 <dependencyManagement>
86 <dependencies>
87 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080088 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -040089 <artifactId>netty-buffer</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -050090 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -040091 </dependency>
92 <dependency>
93 <groupId>io.netty</groupId>
94 <artifactId>netty-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -050095 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -040096 </dependency>
97 <dependency>
98 <groupId>io.netty</groupId>
99 <artifactId>netty-codec-http</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500100 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400101 </dependency>
102 <dependency>
103 <groupId>io.netty</groupId>
104 <artifactId>netty-transport</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500105 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400106 </dependency>
107 <dependency>
108 <groupId>io.netty</groupId>
109 <artifactId>netty-codec</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500110 <version>${netty.version}</version>
Michael Blow951b9cc2021-10-28 20:11:23 -0400111 </dependency>
112 <dependency>
113 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400114 <artifactId>netty-codec-dns</artifactId>
115 <version>${netty.version}</version>
116 </dependency>
117 <dependency>
118 <groupId>io.netty</groupId>
119 <artifactId>netty-codec-socks</artifactId>
120 <version>${netty.version}</version>
121 </dependency>
122 <dependency>
123 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400124 <artifactId>netty-handler</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500125 <version>${netty.version}</version>
Till Westmannea666c92017-02-22 22:25:15 -0800126 </dependency>
127 <dependency>
Michael Blow178ad762022-06-24 17:38:08 -0400128 <groupId>io.netty</groupId>
Hussain Towaileb35c42ac2023-05-23 10:44:10 +0300129 <artifactId>netty-handler-proxy</artifactId>
130 <version>${netty.version}</version>
131 </dependency>
132 <dependency>
133 <groupId>io.netty</groupId>
Michael Blow178ad762022-06-24 17:38:08 -0400134 <artifactId>netty-transport-classes-epoll</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500135 <version>${netty.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700136 </dependency>
137 <dependency>
Michael Blow7d462c32021-11-05 11:49:19 -0400138 <groupId>io.netty</groupId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500139 <artifactId>netty-transport-native-epoll</artifactId>
140 <version>${netty.version}</version>
141 </dependency>
142 <dependency>
143 <groupId>io.netty</groupId>
Michael Blowc1a17422023-07-25 11:03:07 -0400144 <artifactId>netty-resolver</artifactId>
145 <version>${netty.version}</version>
146 </dependency>
147 <dependency>
148 <groupId>io.netty</groupId>
Michael Blow7d462c32021-11-05 11:49:19 -0400149 <artifactId>netty-resolver-dns</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500150 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400151 </dependency>
152 <dependency>
153 <groupId>io.netty</groupId>
154 <artifactId>netty-codec-http2</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500155 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400156 </dependency>
157 <dependency>
158 <groupId>io.netty</groupId>
159 <artifactId>netty-transport-native-unix-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500160 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400161 </dependency>
162 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700163 <groupId>junit</groupId>
164 <artifactId>junit</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500165 <version>4.13.2</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700166 </dependency>
167 <dependency>
168 <groupId>org.apache.hadoop</groupId>
169 <artifactId>hadoop-yarn-client</artifactId>
170 <version>${hadoop.version}</version>
171 </dependency>
172 <dependency>
173 <groupId>org.apache.hadoop</groupId>
174 <artifactId>hadoop-client</artifactId>
175 <version>${hadoop.version}</version>
176 </dependency>
177 <dependency>
178 <groupId>org.apache.hadoop</groupId>
179 <artifactId>hadoop-common</artifactId>
180 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400181 <exclusions>
182 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300183 <groupId>net.minidev</groupId>
184 <artifactId>json-smart</artifactId>
185 </exclusion>
186 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300187 <groupId>com.nimbusds</groupId>
188 <artifactId>nimbus-jose-jwt</artifactId>
189 </exclusion>
190 <exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400191 <groupId>javax.servlet.jsp</groupId>
192 <artifactId>jsp-api</artifactId>
193 </exclusion>
194 <exclusion>
195 <groupId>javax.servlet</groupId>
196 <artifactId>servlet-api</artifactId>
197 </exclusion>
198 <exclusion>
199 <groupId>jdk.tools</groupId>
200 <artifactId>jdk.tools</artifactId>
201 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700202 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500203 <groupId>org.slf4j</groupId>
204 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700205 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700206 <exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700207 <groupId>org.slf4j</groupId>
208 <artifactId>slf4j-log4j12</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300209 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400210 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700211 </dependency>
212 <dependency>
213 <groupId>org.apache.hadoop</groupId>
214 <artifactId>hadoop-hdfs</artifactId>
215 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700216 <exclusions>
217 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500218 <groupId>io.netty</groupId>
219 <artifactId>netty-all</artifactId>
220 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500221 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500222 <groupId>org.slf4j</groupId>
223 <artifactId>slf4j-reload4j</artifactId>
224 </exclusion>
225 <exclusion>
226 <groupId>ch.qos.reload4j</groupId>
227 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700228 </exclusion>
229 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700230 </dependency>
231 <dependency>
232 <groupId>org.apache.hadoop</groupId>
233 <artifactId>hadoop-minicluster</artifactId>
234 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700235 <exclusions>
236 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500237 <groupId>org.slf4j</groupId>
238 <artifactId>slf4j-reload4j</artifactId>
239 </exclusion>
240 <exclusion>
241 <groupId>ch.qos.reload4j</groupId>
242 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700243 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300244 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700245 <groupId>log4j</groupId>
246 <artifactId>log4j</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300247 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700248 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700249 </dependency>
250 <dependency>
251 <groupId>org.apache.hadoop</groupId>
252 <artifactId>hadoop-mapreduce-client-core</artifactId>
253 <version>${hadoop.version}</version>
254 </dependency>
255 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400256 <groupId>org.apache.hadoop</groupId>
257 <artifactId>hadoop-hdfs</artifactId>
258 <version>${hadoop.version}</version>
259 <classifier>tests</classifier>
260 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700261 <exclusions>
262 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500263 <groupId>org.slf4j</groupId>
264 <artifactId>slf4j-reload4j</artifactId>
265 </exclusion>
266 <exclusion>
267 <groupId>ch.qos.reload4j</groupId>
268 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700269 </exclusion>
270 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400271 </dependency>
272 <dependency>
Michael Blow91a7e802023-01-12 18:51:33 -0500273 <groupId>com.e-movimento.tinytools</groupId>
274 <artifactId>privilegedaccessor</artifactId>
275 <version>1.3</version>
276 </dependency>
277 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700278 <groupId>commons-io</groupId>
279 <artifactId>commons-io</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500280 <version>2.18.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500281 </dependency>
282 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400283 <groupId>org.apache.commons</groupId>
284 <artifactId>commons-text</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500285 <version>1.12.0</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400286 </dependency>
287 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800288 <groupId>com.fasterxml.jackson.core</groupId>
289 <artifactId>jackson-databind</artifactId>
Michael Blow91a7e802023-01-12 18:51:33 -0500290 <version>${jackson-databind.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800291 </dependency>
292 <dependency>
293 <groupId>com.fasterxml.jackson.core</groupId>
294 <artifactId>jackson-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400295 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800296 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500297 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500298 <groupId>com.fasterxml.jackson.core</groupId>
299 <artifactId>jackson-annotations</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400300 <version>${jackson.version}</version>
Michael Blow204b2952017-12-07 20:17:47 -0500301 </dependency>
302 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500303 <groupId>com.google.guava</groupId>
304 <artifactId>guava</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500305 <version>33.3.1-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400306 <exclusions>
307 <exclusion>
308 <groupId>com.google.code.findbugs</groupId>
309 <artifactId>jsr305</artifactId>
310 </exclusion>
311 <exclusion>
312 <groupId>com.google.guava</groupId>
313 <artifactId>listenablefuture</artifactId>
314 </exclusion>
315 <exclusion>
316 <groupId>org.checkerframework</groupId>
317 <artifactId>checker-qual</artifactId>
318 </exclusion>
319 <exclusion>
320 <groupId>com.google.j2objc</groupId>
321 <artifactId>j2objc-annotations</artifactId>
322 </exclusion>
323 <exclusion>
324 <groupId>org.codehaus.mojo</groupId>
325 <artifactId>animal-sniffer-annotations</artifactId>
326 </exclusion>
327 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500328 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500329 <dependency>
330 <groupId>org.apache.commons</groupId>
331 <artifactId>commons-lang3</artifactId>
Michael Blowc831a8b2024-12-02 21:38:38 -0500332 <version>3.17.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500333 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500334 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500335 <groupId>org.apache.commons</groupId>
336 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500337 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500338 </dependency>
339 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800340 <groupId>org.apache.httpcomponents</groupId>
341 <artifactId>httpcore</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400342 <version>4.4.16</version>
343 </dependency>
344 <dependency>
345 <groupId>org.apache.httpcomponents</groupId>
346 <artifactId>httpcore-nio</artifactId>
347 <version>4.4.16</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800348 </dependency>
349 <dependency>
350 <groupId>org.apache.httpcomponents</groupId>
351 <artifactId>httpclient</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400352 <version>4.5.14</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800353 </dependency>
354 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500355 <groupId>org.apache.rat</groupId>
356 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500357 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500358 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500359 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800360 <groupId>org.ini4j</groupId>
361 <artifactId>ini4j</artifactId>
362 <version>0.5.4</version>
363 </dependency>
364 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500365 <groupId>args4j</groupId>
366 <artifactId>args4j</artifactId>
367 <version>2.33</version>
368 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300369 <dependency>
370 <groupId>org.apache.logging.log4j</groupId>
371 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400372 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300373 </dependency>
374 <dependency>
375 <groupId>org.apache.logging.log4j</groupId>
376 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400377 <version>${log4j.version}</version>
378 </dependency>
379 <dependency>
380 <groupId>org.apache.logging.log4j</groupId>
381 <artifactId>log4j-jul</artifactId>
382 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300383 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800384 <dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400385 <groupId>javax.xml.bind</groupId>
386 <artifactId>jaxb-api</artifactId>
387 <version>2.3.0</version>
388 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500389 <dependency>
390 <groupId>org.apache.maven</groupId>
391 <artifactId>maven-project</artifactId>
392 <version>2.2.1</version>
393 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500394 <dependency>
395 <groupId>org.apache.maven</groupId>
396 <artifactId>maven-model</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500397 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500398 </dependency>
399 <dependency>
400 <groupId>org.apache.maven</groupId>
401 <artifactId>maven-artifact</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500402 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500403 </dependency>
404 <dependency>
405 <groupId>org.apache.maven</groupId>
406 <artifactId>maven-compat</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500407 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500408 </dependency>
409 <dependency>
410 <groupId>org.apache.maven</groupId>
411 <artifactId>maven-core</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500412 <version>3.8.4</version>
Michael Blow8363dcb2021-12-04 06:02:34 -0500413 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500414 <dependency>
415 <groupId>org.apache.maven</groupId>
416 <artifactId>maven-plugin-api</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500417 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400418 </dependency>
419 <dependency>
Michael Blowfa0ddb62022-01-22 08:08:51 -0500420 <groupId>org.apache.maven.plugin-tools</groupId>
421 <artifactId>maven-plugin-annotations</artifactId>
422 <version>3.6.4</version>
423 </dependency>
424 <dependency>
425 <groupId>org.apache.maven.plugins</groupId>
426 <artifactId>maven-remote-resources-plugin</artifactId>
427 <version>1.7.0</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500428 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700429 <dependency>
430 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400431 <artifactId>fastutil-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400432 <version>8.5.6</version>
Rui Guo4ce394b2020-07-23 07:35:59 -0700433 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700434 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700435 <groupId>org.slf4j</groupId>
436 <artifactId>slf4j-simple</artifactId>
Michael Blow75d9e2b2023-10-24 11:26:46 -0400437 <version>1.7.36</version>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700438 </dependency>
439 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700440 <groupId>org.apache.logging.log4j</groupId>
441 <artifactId>log4j-1.2-api</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400442 <version>${log4j.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700443 </dependency>
Ian Maxon94eb3c22021-06-03 12:31:18 -0700444 <dependency>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700445 <groupId>org.mockito</groupId>
446 <artifactId>mockito-core</artifactId>
447 <version>3.10.0</version>
448 </dependency>
449 <dependency>
450 <groupId>org.powermock</groupId>
451 <artifactId>powermock-api-mockito2</artifactId>
452 <version>2.0.9</version>
453 </dependency>
454 <dependency>
455 <groupId>org.powermock</groupId>
456 <artifactId>powermock-module-junit4</artifactId>
457 <version>2.0.9</version>
458 </dependency>
459 <dependency>
460 <groupId>org.powermock</groupId>
461 <artifactId>powermock-core</artifactId>
462 <version>2.0.9</version>
463 </dependency>
Wail Alkowaileet790ce542021-08-07 16:21:17 -0700464 <dependency>
465 <groupId>org.xerial.snappy</groupId>
466 <artifactId>snappy-java</artifactId>
467 <version>${snappy.version}</version>
468 </dependency>
Hussain Towailebaedda352023-05-22 04:45:42 +0300469 <!-- Manually included to avoid CVE-2023-1370 -->
470 <dependency>
471 <groupId>net.minidev</groupId>
472 <artifactId>json-smart</artifactId>
473 <version>2.4.11</version>
474 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700475 </dependencies>
476 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000477 <build>
478 <plugins>
479 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400480 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500481 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500482 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500483 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500484 <exclude>**/DEPENDENCIES</exclude>
485 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500486 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500487 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500488 <manifest>
489 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
490 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
491 </manifest>
492 <manifestEntries>
493 <Implementation-Title>${implementation.title}</Implementation-Title>
494 <Implementation-URL>${implementation.url}</Implementation-URL>
495 <Implementation-Version>${implementation.version}</Implementation-Version>
496 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
497 </manifestEntries>
498 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500499 </configuration>
500 </plugin>
501 <plugin>
502 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400503 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400504 <configuration>
505 <failOnWarning>true</failOnWarning>
506 <outputXML>true</outputXML>
507 </configuration>
508 <executions>
509 <execution>
510 <phase>process-test-classes</phase>
511 <goals>
512 <goal>analyze-only</goal>
513 </goals>
514 </execution>
515 </executions>
516 </plugin>
517 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700518 <groupId>org.apache.rat</groupId>
519 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700520 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700521 <execution>
522 <phase>validate</phase>
523 <goals>
524 <goal>check</goal>
525 </goals>
526 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700527 </executions>
528 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500529 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
530 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700531 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800532 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700533 </licenses>
534 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800535 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700536 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500537 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400538 <excludes combine.children="append">
539 <exclude>**/*.iml</exclude>
540 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700541 </configuration>
542 </plugin>
543 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700544 <groupId>org.apache.maven.plugins</groupId>
545 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700546 <configuration>
547 <failIfNoTests>false</failIfNoTests>
548 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800549 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800550 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
Murtadha Hubailc7eb0c52018-05-21 18:01:55 +0300551 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Wail Alkowaileet61524a62024-05-01 15:09:24 -0700552 --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 -0700553 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300554 <systemPropertyVariables>
555 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
556 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700557 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500558 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700559 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500560 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500561 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800562 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400563 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700564 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700565 </plugin>
566 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700567 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300568 <artifactId>maven-failsafe-plugin</artifactId>
569 <configuration>
570 <systemPropertyVariables>
571 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
572 </systemPropertyVariables>
573 </configuration>
574 </plugin>
575 <plugin>
576 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700577 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700578 <configuration>
Michael Blow2b057012017-12-07 22:20:39 -0500579 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700580 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000581 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700582 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700583 <groupId>org.apache.maven.plugins</groupId>
584 <artifactId>maven-remote-resources-plugin</artifactId>
585 <executions>
586 <execution>
587 <goals>
588 <goal>process</goal>
589 </goals>
590 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500591 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700592 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700593 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500594 <properties>
595 <projectName>Apache Hyracks - ${project.name}</projectName>
596 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700597 </configuration>
598 </execution>
599 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800600 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400601 <plugin>
602 <groupId>org.apache.maven.plugins</groupId>
603 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400604 <version>3.3.1</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400605 <executions>
606 <execution>
607 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400608 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400609 <goals>
610 <goal>check</goal>
611 </goals>
612 </execution>
613 </executions>
614 <configuration>
615 <logViolationsToConsole>true</logViolationsToConsole>
616 <checkstyleRules>
617 <module name="Checker">
618 <!-- Checks for whitespace -->
619 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400620 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400621 <module name="TreeWalker">
622 <module name="AvoidStarImport">
623 <property name="allowStaticMemberImports" value="true"/>
624 </module>
625 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400626 </module>
627 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400628 <includes>**/*.java,**/*.jj</includes>
629 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400630 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
631 </configuration>
632 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400633 <plugin>
634 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400635 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400636 <executions>
637 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400638 <id>check-pom-packaging</id>
639 <phase>validate</phase>
640 <goals>
641 <goal>run</goal>
642 </goals>
643 <configuration>
644 <exportAntProperties>true</exportAntProperties>
645 <target xmlns:unless="ant:unless">
646 <condition property="skipPomEnforcement">
647 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
648 </condition>
649 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
650 </target>
651 </configuration>
652 </execution>
653 </executions>
654 </plugin>
655 <plugin>
656 <groupId>org.apache.maven.plugins</groupId>
657 <artifactId>maven-enforcer-plugin</artifactId>
658 <executions>
659 <execution>
660 <id>ensure-no-tests-for-pom-packaging</id>
661 <phase>validate</phase>
662 <goals>
663 <goal>enforce</goal>
664 </goals>
665 <configuration>
666 <rules>
667 <requireFilesDontExist>
668 <files>
669 <file>${project.build.testSourceDirectory}</file>
670 </files>
671 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
672 </requireFilesDontExist>
673 </rules>
674 <skip>${skipPomEnforcement}</skip>
675 </configuration>
676 </execution>
677 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400678 <id>enforce-versions</id>
679 <goals>
680 <goal>enforce</goal>
681 </goals>
682 <configuration>
683 <rules>
684 <requireMavenVersion>
685 <version>[3.3.9,)</version>
686 </requireMavenVersion>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700687 <requireJavaVersion>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400688 <version>[${maven.compiler.release},)</version>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700689 </requireJavaVersion>
690 </rules>
691 </configuration>
692 </execution>
693 <execution>
694 <id>ensure-no-duplicate-deps</id>
695 <goals>
696 <goal>enforce</goal>
697 </goals>
698 <configuration>
699 <rules>
700 <banDuplicatePomDependencyVersions/>
Michael Blowf53c1c62016-06-17 16:51:59 -0400701 </rules>
702 </configuration>
703 </execution>
704 </executions>
705 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500706 <plugin>
707 <groupId>org.apache.maven.plugins</groupId>
708 <artifactId>maven-resources-plugin</artifactId>
709 <executions>
710 <execution>
711 <id>default-testResources</id>
712 <goals>
713 <goal>testResources</goal>
714 </goals>
715 <configuration>
716 <skip>${skip.testResources}</skip>
717 </configuration>
718 </execution>
719 </executions>
720 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500721 <plugin>
722 <groupId>net.revelc.code.formatter</groupId>
723 <artifactId>formatter-maven-plugin</artifactId>
724 <executions>
725 <execution>
726 <goals>
727 <goal>${source-format.goal}</goal>
728 </goals>
729 </execution>
730 </executions>
731 <configuration>
732 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
733 <skipFormatting>${source-format.skip}</skipFormatting>
734 </configuration>
735 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400736 <plugin>
737 <groupId>net.revelc.code</groupId>
738 <artifactId>impsort-maven-plugin</artifactId>
739 <executions>
740 <execution>
741 <goals>
742 <goal>${import-sort.goal}</goal>
743 </goals>
744 </execution>
745 </executions>
746 <configuration>
747 <groups>java,javax,org,com,*</groups>
748 <removeUnused>true</removeUnused>
749 <skip>${import-sort.skip}</skip>
750 </configuration>
751 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000752 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700753 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700754 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500755 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800756 <groupId>org.apache.maven.plugins</groupId>
757 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400758 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800759 </plugin>
760 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500761 <groupId>org.apache.rat</groupId>
762 <artifactId>apache-rat-plugin</artifactId>
763 <version>0.12</version>
764 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700765 <plugin>
766 <groupId>net.revelc.code.formatter</groupId>
767 <artifactId>formatter-maven-plugin</artifactId>
768 <version>2.0.1</version>
769 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400770 <plugin>
771 <groupId>net.revelc.code</groupId>
772 <artifactId>impsort-maven-plugin</artifactId>
Michael Blowa5a42dc2023-11-02 11:36:56 -0400773 <version>1.9.0</version>
774 <dependencies>
775 <dependency>
776 <groupId>com.github.javaparser</groupId>
777 <artifactId>javaparser-core</artifactId>
778 <version>3.25.5</version>
779 </dependency>
780 </dependencies>
Michael Blowef85fb02019-03-22 13:40:35 -0400781 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700782 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
783 <plugin>
784 <groupId>org.eclipse.m2e</groupId>
785 <artifactId>lifecycle-mapping</artifactId>
786 <version>1.0.0</version>
787 <configuration>
788 <lifecycleMappingMetadata>
789 <pluginExecutions>
790 <pluginExecution>
791 <pluginExecutionFilter>
792 <groupId>org.apache.rat</groupId>
793 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400794 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700795 <goals>
796 <goal>check</goal>
797 </goals>
798 </pluginExecutionFilter>
799 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400800 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700801 </action>
802 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400803 <pluginExecution>
804 <pluginExecutionFilter>
805 <groupId>org.apache.maven.plugins</groupId>
806 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400807 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400808 <goals>
809 <goal>check</goal>
810 </goals>
811 </pluginExecutionFilter>
812 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400813 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400814 </action>
815 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700816 <pluginExecution>
817 <pluginExecutionFilter>
818 <groupId>org.apache.maven.plugins</groupId>
819 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400820 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700821 <goals>
822 <goal>analyze-only</goal>
823 </goals>
824 </pluginExecutionFilter>
825 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800826 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700827 </action>
828 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800829 <pluginExecution>
830 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800831 <groupId>net.revelc.code.formatter</groupId>
832 <artifactId>formatter-maven-plugin</artifactId>
833 <versionRange>[2.0.1,)</versionRange>
834 <goals>
835 <goal>format</goal>
836 </goals>
837 </pluginExecutionFilter>
838 <action>
839 <ignore></ignore>
840 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800841 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700842 </pluginExecutions>
843 </lifecycleMappingMetadata>
844 </configuration>
845 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800846 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500847 <groupId>org.codehaus.mojo</groupId>
848 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400849 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800850 </plugin>
851 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500852 <groupId>org.apache.maven.plugins</groupId>
853 <artifactId>maven-scm-plugin</artifactId>
854 <version>1.9.5</version>
855 </plugin>
856 <plugin>
857 <groupId>org.codehaus.mojo</groupId>
858 <artifactId>appassembler-maven-plugin</artifactId>
859 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800860 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400861 <plugin>
862 <groupId>org.apache.maven.plugins</groupId>
863 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400864 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400865 </plugin>
866 <plugin>
867 <groupId>org.apache.maven.plugins</groupId>
868 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400869 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400870 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400871 <plugin>
872 <groupId>org.apache.hyracks</groupId>
873 <artifactId>license-automation-plugin</artifactId>
874 <version>${project.version}</version>
875 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400876 <plugin>
877 <groupId>org.apache.maven.plugins</groupId>
878 <artifactId>maven-assembly-plugin</artifactId>
879 <version>3.1.0</version>
880 </plugin>
881 <plugin>
882 <groupId>org.apache.maven.plugins</groupId>
883 <artifactId>maven-antrun-plugin</artifactId>
884 <version>1.8</version>
885 </plugin>
886 <plugin>
887 <groupId>org.apache.maven.plugins</groupId>
888 <artifactId>maven-clean-plugin</artifactId>
889 <version>3.0.0</version>
890 </plugin>
891 <plugin>
892 <groupId>org.apache.maven.plugins</groupId>
893 <artifactId>maven-jar-plugin</artifactId>
894 <version>3.0.2</version>
895 </plugin>
896 <plugin>
897 <groupId>org.codehaus.mojo</groupId>
898 <artifactId>build-helper-maven-plugin</artifactId>
899 <version>3.0.0</version>
900 </plugin>
901 <plugin>
902 <groupId>org.apache.maven.plugins</groupId>
903 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400904 <version>3.6.0</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400905 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400906 <plugin>
907 <groupId>org.apache.maven.doxia</groupId>
908 <artifactId>doxia-maven-plugin</artifactId>
909 <version>1.1.4</version>
910 </plugin>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700911 <plugin>
912 <groupId>org.apache.maven.plugins</groupId>
913 <artifactId>maven-enforcer-plugin</artifactId>
914 <version>3.0.0-M3</version>
915 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700916 </plugins>
917 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000918 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800919 <profiles>
920 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400921 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700922 <activation>
923 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400924 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700925 </file>
926 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400927 <properties>
928 <skip.assembly>true</skip.assembly>
929 </properties>
930 </profile>
931 <profile>
932 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700933 <build>
934 <plugins>
935 <plugin>
936 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500937 <artifactId>maven-jar-plugin</artifactId>
938 <configuration>
939 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500940 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500941 <manifest>
942 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
943 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
944 </manifest>
945 </archive>
946 </configuration>
947 </plugin>
948 <plugin>
949 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700950 <artifactId>maven-assembly-plugin</artifactId>
951 <!-- We override the configuration plugin to override the descriptor to use for building
952 the source release zip. Specifically, we would like to control the inclusions/exclusions.
953 For example, we exclude the KEYS file from the zip -->
954 <executions>
955 <execution>
956 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
957 the apache parent POM under the apache-release profile -->
958 <id>source-release-assembly</id>
959 <phase>package</phase>
960 <goals>
961 <goal>single</goal>
962 </goals>
963 <!-- combine.self should be override to replace the configuration in the parent POM -->
964 <configuration combine.self="override">
965 <descriptors>
966 <descriptor>src/main/assembly/source.xml</descriptor>
967 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400968 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700969 </configuration>
970 </execution>
971 </executions>
972 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700973 <plugin>
974 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800975 <artifactId>maven-gpg-plugin</artifactId>
976 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700977 <executions>
978 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800979 <id>sign-artifacts</id>
980 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700981 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800982 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700983 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700984 </execution>
985 </executions>
986 </plugin>
987 </plugins>
988 </build>
989 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700990 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400991 <id>coverage</id>
992 <activation>
993 <property>
994 <name>coverage</name>
995 </property>
996 </activation>
997 <build>
998 <plugins>
999 <plugin>
1000 <groupId>org.jacoco</groupId>
1001 <artifactId>jacoco-maven-plugin</artifactId>
1002 <version>${jacoco.version}</version>
1003 <executions>
1004 <execution>
1005 <id>default-prepare-agent</id>
1006 <goals>
1007 <goal>prepare-agent</goal>
1008 </goals>
1009 <configuration>
1010 <propertyName>coverageArgLine</propertyName>
1011 </configuration>
1012 </execution>
1013 <execution>
1014 <id>default-prepare-agent-integration</id>
1015 <goals>
1016 <goal>prepare-agent-integration</goal>
1017 </goals>
1018 <configuration>
1019 <propertyName>coverageArgLine</propertyName>
1020 </configuration>
1021 </execution>
1022 </executions>
1023 </plugin>
1024 </plugins>
1025 </build>
1026 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001027 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -04001028 </properties>
1029 </profile>
1030 <profile>
1031 <id>no-coverage</id>
1032 <activation>
1033 <property>
1034 <name>!coverage</name>
1035 </property>
1036 </activation>
1037 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001038 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -04001039 </properties>
1040 </profile>
1041 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -05001042 <id>integration-tests-only</id>
1043 <properties>
1044 <test.includes/>
1045 <failIfNoTests>false</failIfNoTests>
1046 </properties>
1047 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001048 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +00001049 <modules>
1050 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +00001051 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -05001052 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +00001053 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -04001054</project>