blob: fe00a348a56e578fa6b9126ea06fbf2b8466a2e0 [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 Maxon2ce56312023-05-09 12:37:01 -070024 <version>0.3.8.2-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>
Michael Blow22c6d542023-10-03 23:30:18 -040052 <release.jdk.version>11</release.jdk.version>
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 Blowaa0f6c72023-10-03 22:47:55 -040072 <hadoop.version>3.3.6</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow91a7e802023-01-12 18:51:33 -050074 <log4j.version>2.19.0</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 Blow1e5910e2023-07-19 09:10:05 -040078 <netty.version>4.1.94.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 Blowc1a17422023-07-25 11:03:07 -0400139 <artifactId>netty-resolver</artifactId>
140 <version>${netty.version}</version>
141 </dependency>
142 <dependency>
143 <groupId>io.netty</groupId>
Michael Blow7d462c32021-11-05 11:49:19 -0400144 <artifactId>netty-resolver-dns</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500145 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400146 </dependency>
147 <dependency>
148 <groupId>io.netty</groupId>
149 <artifactId>netty-codec-http2</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-transport-native-unix-common</artifactId>
Michael Blow23fc48b2023-01-16 21:25:12 -0500155 <version>${netty.version}</version>
Michael Blow7d462c32021-11-05 11:49:19 -0400156 </dependency>
157 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700158 <groupId>junit</groupId>
159 <artifactId>junit</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500160 <version>4.13.2</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700161 </dependency>
162 <dependency>
163 <groupId>org.apache.hadoop</groupId>
164 <artifactId>hadoop-yarn-client</artifactId>
165 <version>${hadoop.version}</version>
166 </dependency>
167 <dependency>
168 <groupId>org.apache.hadoop</groupId>
169 <artifactId>hadoop-client</artifactId>
170 <version>${hadoop.version}</version>
171 </dependency>
172 <dependency>
173 <groupId>org.apache.hadoop</groupId>
174 <artifactId>hadoop-common</artifactId>
175 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400176 <exclusions>
177 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300178 <groupId>net.minidev</groupId>
179 <artifactId>json-smart</artifactId>
180 </exclusion>
181 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300182 <groupId>com.nimbusds</groupId>
183 <artifactId>nimbus-jose-jwt</artifactId>
184 </exclusion>
185 <exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400186 <groupId>javax.servlet.jsp</groupId>
187 <artifactId>jsp-api</artifactId>
188 </exclusion>
189 <exclusion>
190 <groupId>javax.servlet</groupId>
191 <artifactId>servlet-api</artifactId>
192 </exclusion>
193 <exclusion>
194 <groupId>jdk.tools</groupId>
195 <artifactId>jdk.tools</artifactId>
196 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700197 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500198 <groupId>org.slf4j</groupId>
199 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700200 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700201 <exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700202 <groupId>org.slf4j</groupId>
203 <artifactId>slf4j-log4j12</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300204 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400205 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700206 </dependency>
207 <dependency>
208 <groupId>org.apache.hadoop</groupId>
209 <artifactId>hadoop-hdfs</artifactId>
210 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700211 <exclusions>
212 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500213 <groupId>io.netty</groupId>
214 <artifactId>netty-all</artifactId>
215 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500216 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500217 <groupId>org.slf4j</groupId>
218 <artifactId>slf4j-reload4j</artifactId>
219 </exclusion>
220 <exclusion>
221 <groupId>ch.qos.reload4j</groupId>
222 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700223 </exclusion>
224 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700225 </dependency>
226 <dependency>
227 <groupId>org.apache.hadoop</groupId>
228 <artifactId>hadoop-minicluster</artifactId>
229 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700230 <exclusions>
231 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500232 <groupId>org.slf4j</groupId>
233 <artifactId>slf4j-reload4j</artifactId>
234 </exclusion>
235 <exclusion>
236 <groupId>ch.qos.reload4j</groupId>
237 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700238 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300239 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700240 <groupId>log4j</groupId>
241 <artifactId>log4j</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300242 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700243 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700244 </dependency>
245 <dependency>
246 <groupId>org.apache.hadoop</groupId>
247 <artifactId>hadoop-mapreduce-client-core</artifactId>
248 <version>${hadoop.version}</version>
249 </dependency>
250 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400251 <groupId>org.apache.hadoop</groupId>
252 <artifactId>hadoop-hdfs</artifactId>
253 <version>${hadoop.version}</version>
254 <classifier>tests</classifier>
255 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700256 <exclusions>
257 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500258 <groupId>org.slf4j</groupId>
259 <artifactId>slf4j-reload4j</artifactId>
260 </exclusion>
261 <exclusion>
262 <groupId>ch.qos.reload4j</groupId>
263 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700264 </exclusion>
265 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400266 </dependency>
267 <dependency>
Michael Blow91a7e802023-01-12 18:51:33 -0500268 <groupId>com.e-movimento.tinytools</groupId>
269 <artifactId>privilegedaccessor</artifactId>
270 <version>1.3</version>
271 </dependency>
272 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700273 <groupId>commons-io</groupId>
274 <artifactId>commons-io</artifactId>
Michael Blow76082aa2021-11-04 12:23:38 -0400275 <version>2.11.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500276 </dependency>
277 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400278 <groupId>org.apache.commons</groupId>
279 <artifactId>commons-text</artifactId>
Michael Blow8a620912022-10-26 15:33:12 -0400280 <version>1.10.0</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400281 </dependency>
282 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800283 <groupId>com.fasterxml.jackson.core</groupId>
284 <artifactId>jackson-databind</artifactId>
Michael Blow91a7e802023-01-12 18:51:33 -0500285 <version>${jackson-databind.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800286 </dependency>
287 <dependency>
288 <groupId>com.fasterxml.jackson.core</groupId>
289 <artifactId>jackson-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400290 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800291 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500292 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500293 <groupId>com.fasterxml.jackson.core</groupId>
294 <artifactId>jackson-annotations</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400295 <version>${jackson.version}</version>
Michael Blow204b2952017-12-07 20:17:47 -0500296 </dependency>
297 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500298 <groupId>com.google.guava</groupId>
299 <artifactId>guava</artifactId>
Michael Blowd43ed602023-10-04 19:36:43 -0400300 <version>32.1.2-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400301 <exclusions>
302 <exclusion>
303 <groupId>com.google.code.findbugs</groupId>
304 <artifactId>jsr305</artifactId>
305 </exclusion>
306 <exclusion>
307 <groupId>com.google.guava</groupId>
308 <artifactId>listenablefuture</artifactId>
309 </exclusion>
310 <exclusion>
311 <groupId>org.checkerframework</groupId>
312 <artifactId>checker-qual</artifactId>
313 </exclusion>
314 <exclusion>
315 <groupId>com.google.j2objc</groupId>
316 <artifactId>j2objc-annotations</artifactId>
317 </exclusion>
318 <exclusion>
319 <groupId>org.codehaus.mojo</groupId>
320 <artifactId>animal-sniffer-annotations</artifactId>
321 </exclusion>
322 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500323 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500324 <dependency>
325 <groupId>org.apache.commons</groupId>
326 <artifactId>commons-lang3</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400327 <version>3.12.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500328 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500329 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500330 <groupId>org.apache.commons</groupId>
331 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500332 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500333 </dependency>
334 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800335 <groupId>org.apache.httpcomponents</groupId>
336 <artifactId>httpcore</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500337 <version>4.4.15</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800338 </dependency>
339 <dependency>
340 <groupId>org.apache.httpcomponents</groupId>
341 <artifactId>httpclient</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500342 <version>4.5.13</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800343 </dependency>
344 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500345 <groupId>org.apache.rat</groupId>
346 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500347 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500348 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500349 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800350 <groupId>org.ini4j</groupId>
351 <artifactId>ini4j</artifactId>
352 <version>0.5.4</version>
353 </dependency>
354 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500355 <groupId>args4j</groupId>
356 <artifactId>args4j</artifactId>
357 <version>2.33</version>
358 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300359 <dependency>
360 <groupId>org.apache.logging.log4j</groupId>
361 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400362 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300363 </dependency>
364 <dependency>
365 <groupId>org.apache.logging.log4j</groupId>
366 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400367 <version>${log4j.version}</version>
368 </dependency>
369 <dependency>
370 <groupId>org.apache.logging.log4j</groupId>
371 <artifactId>log4j-jul</artifactId>
372 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300373 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800374 <dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400375 <groupId>javax.xml.bind</groupId>
376 <artifactId>jaxb-api</artifactId>
377 <version>2.3.0</version>
378 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500379 <dependency>
380 <groupId>org.apache.maven</groupId>
381 <artifactId>maven-project</artifactId>
382 <version>2.2.1</version>
383 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500384 <dependency>
385 <groupId>org.apache.maven</groupId>
386 <artifactId>maven-model</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500387 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500388 </dependency>
389 <dependency>
390 <groupId>org.apache.maven</groupId>
391 <artifactId>maven-artifact</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500392 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500393 </dependency>
394 <dependency>
395 <groupId>org.apache.maven</groupId>
396 <artifactId>maven-compat</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-core</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500402 <version>3.8.4</version>
Michael Blow8363dcb2021-12-04 06:02:34 -0500403 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500404 <dependency>
405 <groupId>org.apache.maven</groupId>
406 <artifactId>maven-plugin-api</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500407 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400408 </dependency>
409 <dependency>
Michael Blowfa0ddb62022-01-22 08:08:51 -0500410 <groupId>org.apache.maven.plugin-tools</groupId>
411 <artifactId>maven-plugin-annotations</artifactId>
412 <version>3.6.4</version>
413 </dependency>
414 <dependency>
415 <groupId>org.apache.maven.plugins</groupId>
416 <artifactId>maven-remote-resources-plugin</artifactId>
417 <version>1.7.0</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500418 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700419 <dependency>
420 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400421 <artifactId>fastutil-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400422 <version>8.5.6</version>
Rui Guo4ce394b2020-07-23 07:35:59 -0700423 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700424 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700425 <groupId>org.slf4j</groupId>
426 <artifactId>slf4j-simple</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500427 <version>1.7.33</version>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700428 </dependency>
429 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700430 <groupId>org.apache.logging.log4j</groupId>
431 <artifactId>log4j-1.2-api</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400432 <version>${log4j.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700433 </dependency>
Ian Maxon94eb3c22021-06-03 12:31:18 -0700434 <dependency>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700435 <groupId>org.mockito</groupId>
436 <artifactId>mockito-core</artifactId>
437 <version>3.10.0</version>
438 </dependency>
439 <dependency>
440 <groupId>org.powermock</groupId>
441 <artifactId>powermock-api-mockito2</artifactId>
442 <version>2.0.9</version>
443 </dependency>
444 <dependency>
445 <groupId>org.powermock</groupId>
446 <artifactId>powermock-module-junit4</artifactId>
447 <version>2.0.9</version>
448 </dependency>
449 <dependency>
450 <groupId>org.powermock</groupId>
451 <artifactId>powermock-core</artifactId>
452 <version>2.0.9</version>
453 </dependency>
Wail Alkowaileet790ce542021-08-07 16:21:17 -0700454 <dependency>
455 <groupId>org.xerial.snappy</groupId>
456 <artifactId>snappy-java</artifactId>
457 <version>${snappy.version}</version>
458 </dependency>
Hussain Towailebaedda352023-05-22 04:45:42 +0300459 <!-- Manually included to avoid CVE-2023-1370 -->
460 <dependency>
461 <groupId>net.minidev</groupId>
462 <artifactId>json-smart</artifactId>
463 <version>2.4.11</version>
464 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700465 </dependencies>
466 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000467 <build>
468 <plugins>
469 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400470 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500471 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500472 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500473 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500474 <exclude>**/DEPENDENCIES</exclude>
475 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500476 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500477 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500478 <manifest>
479 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
480 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
481 </manifest>
482 <manifestEntries>
483 <Implementation-Title>${implementation.title}</Implementation-Title>
484 <Implementation-URL>${implementation.url}</Implementation-URL>
485 <Implementation-Version>${implementation.version}</Implementation-Version>
486 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
487 </manifestEntries>
488 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500489 </configuration>
490 </plugin>
491 <plugin>
492 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400493 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400494 <configuration>
495 <failOnWarning>true</failOnWarning>
496 <outputXML>true</outputXML>
497 </configuration>
498 <executions>
499 <execution>
500 <phase>process-test-classes</phase>
501 <goals>
502 <goal>analyze-only</goal>
503 </goals>
504 </execution>
505 </executions>
506 </plugin>
507 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700508 <groupId>org.apache.rat</groupId>
509 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700510 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700511 <execution>
512 <phase>validate</phase>
513 <goals>
514 <goal>check</goal>
515 </goals>
516 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700517 </executions>
518 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500519 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
520 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700521 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800522 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700523 </licenses>
524 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800525 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700526 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500527 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400528 <excludes combine.children="append">
529 <exclude>**/*.iml</exclude>
530 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700531 </configuration>
532 </plugin>
533 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700534 <groupId>org.apache.maven.plugins</groupId>
535 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700536 <configuration>
537 <failIfNoTests>false</failIfNoTests>
538 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800539 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800540 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
Murtadha Hubailc7eb0c52018-05-21 18:01:55 +0300541 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Michael Blowb4c1fb02016-05-09 15:41:00 -0700542 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300543 <systemPropertyVariables>
544 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
545 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700546 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500547 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700548 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500549 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500550 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800551 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400552 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700553 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700554 </plugin>
555 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700556 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300557 <artifactId>maven-failsafe-plugin</artifactId>
558 <configuration>
559 <systemPropertyVariables>
560 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
561 </systemPropertyVariables>
562 </configuration>
563 </plugin>
564 <plugin>
565 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700566 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700567 <configuration>
Michael Blow22c6d542023-10-03 23:30:18 -0400568 <release>${release.jdk.version}</release>
Michael Blow2b057012017-12-07 22:20:39 -0500569 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700570 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000571 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700572 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700573 <groupId>org.apache.maven.plugins</groupId>
574 <artifactId>maven-remote-resources-plugin</artifactId>
575 <executions>
576 <execution>
577 <goals>
578 <goal>process</goal>
579 </goals>
580 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500581 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700582 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700583 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500584 <properties>
585 <projectName>Apache Hyracks - ${project.name}</projectName>
586 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700587 </configuration>
588 </execution>
589 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800590 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400591 <plugin>
592 <groupId>org.apache.maven.plugins</groupId>
593 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow6a2a4362019-03-27 14:31:16 -0400594 <version>3.0.0</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400595 <executions>
596 <execution>
597 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400598 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400599 <goals>
600 <goal>check</goal>
601 </goals>
602 </execution>
603 </executions>
604 <configuration>
605 <logViolationsToConsole>true</logViolationsToConsole>
606 <checkstyleRules>
607 <module name="Checker">
608 <!-- Checks for whitespace -->
609 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400610 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400611 <module name="TreeWalker">
612 <module name="AvoidStarImport">
613 <property name="allowStaticMemberImports" value="true"/>
614 </module>
615 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400616 </module>
617 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400618 <includes>**/*.java,**/*.jj</includes>
619 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400620 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
621 </configuration>
622 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400623 <plugin>
624 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400625 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400626 <executions>
627 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400628 <id>check-pom-packaging</id>
629 <phase>validate</phase>
630 <goals>
631 <goal>run</goal>
632 </goals>
633 <configuration>
634 <exportAntProperties>true</exportAntProperties>
635 <target xmlns:unless="ant:unless">
636 <condition property="skipPomEnforcement">
637 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
638 </condition>
639 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
640 </target>
641 </configuration>
642 </execution>
643 </executions>
644 </plugin>
645 <plugin>
646 <groupId>org.apache.maven.plugins</groupId>
647 <artifactId>maven-enforcer-plugin</artifactId>
648 <executions>
649 <execution>
650 <id>ensure-no-tests-for-pom-packaging</id>
651 <phase>validate</phase>
652 <goals>
653 <goal>enforce</goal>
654 </goals>
655 <configuration>
656 <rules>
657 <requireFilesDontExist>
658 <files>
659 <file>${project.build.testSourceDirectory}</file>
660 </files>
661 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
662 </requireFilesDontExist>
663 </rules>
664 <skip>${skipPomEnforcement}</skip>
665 </configuration>
666 </execution>
667 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400668 <id>enforce-versions</id>
669 <goals>
670 <goal>enforce</goal>
671 </goals>
672 <configuration>
673 <rules>
674 <requireMavenVersion>
675 <version>[3.3.9,)</version>
676 </requireMavenVersion>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700677 <requireJavaVersion>
Michael Blow22c6d542023-10-03 23:30:18 -0400678 <version>[${release.jdk.version},)</version>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700679 </requireJavaVersion>
680 </rules>
681 </configuration>
682 </execution>
683 <execution>
684 <id>ensure-no-duplicate-deps</id>
685 <goals>
686 <goal>enforce</goal>
687 </goals>
688 <configuration>
689 <rules>
690 <banDuplicatePomDependencyVersions/>
Michael Blowf53c1c62016-06-17 16:51:59 -0400691 </rules>
692 </configuration>
693 </execution>
694 </executions>
695 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500696 <plugin>
697 <groupId>org.apache.maven.plugins</groupId>
698 <artifactId>maven-resources-plugin</artifactId>
699 <executions>
700 <execution>
701 <id>default-testResources</id>
702 <goals>
703 <goal>testResources</goal>
704 </goals>
705 <configuration>
706 <skip>${skip.testResources}</skip>
707 </configuration>
708 </execution>
709 </executions>
710 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500711 <plugin>
712 <groupId>net.revelc.code.formatter</groupId>
713 <artifactId>formatter-maven-plugin</artifactId>
714 <executions>
715 <execution>
716 <goals>
717 <goal>${source-format.goal}</goal>
718 </goals>
719 </execution>
720 </executions>
721 <configuration>
722 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
723 <skipFormatting>${source-format.skip}</skipFormatting>
724 </configuration>
725 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400726 <plugin>
727 <groupId>net.revelc.code</groupId>
728 <artifactId>impsort-maven-plugin</artifactId>
729 <executions>
730 <execution>
731 <goals>
732 <goal>${import-sort.goal}</goal>
733 </goals>
734 </execution>
735 </executions>
736 <configuration>
737 <groups>java,javax,org,com,*</groups>
738 <removeUnused>true</removeUnused>
739 <skip>${import-sort.skip}</skip>
740 </configuration>
741 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000742 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700743 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700744 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500745 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800746 <groupId>org.apache.maven.plugins</groupId>
747 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400748 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800749 </plugin>
750 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500751 <groupId>org.apache.rat</groupId>
752 <artifactId>apache-rat-plugin</artifactId>
753 <version>0.12</version>
754 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700755 <plugin>
756 <groupId>net.revelc.code.formatter</groupId>
757 <artifactId>formatter-maven-plugin</artifactId>
758 <version>2.0.1</version>
759 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400760 <plugin>
761 <groupId>net.revelc.code</groupId>
762 <artifactId>impsort-maven-plugin</artifactId>
763 <version>1.2.0</version>
764 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700765 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
766 <plugin>
767 <groupId>org.eclipse.m2e</groupId>
768 <artifactId>lifecycle-mapping</artifactId>
769 <version>1.0.0</version>
770 <configuration>
771 <lifecycleMappingMetadata>
772 <pluginExecutions>
773 <pluginExecution>
774 <pluginExecutionFilter>
775 <groupId>org.apache.rat</groupId>
776 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400777 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700778 <goals>
779 <goal>check</goal>
780 </goals>
781 </pluginExecutionFilter>
782 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400783 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700784 </action>
785 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400786 <pluginExecution>
787 <pluginExecutionFilter>
788 <groupId>org.apache.maven.plugins</groupId>
789 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400790 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400791 <goals>
792 <goal>check</goal>
793 </goals>
794 </pluginExecutionFilter>
795 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400796 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400797 </action>
798 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700799 <pluginExecution>
800 <pluginExecutionFilter>
801 <groupId>org.apache.maven.plugins</groupId>
802 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400803 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700804 <goals>
805 <goal>analyze-only</goal>
806 </goals>
807 </pluginExecutionFilter>
808 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800809 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700810 </action>
811 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800812 <pluginExecution>
813 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800814 <groupId>net.revelc.code.formatter</groupId>
815 <artifactId>formatter-maven-plugin</artifactId>
816 <versionRange>[2.0.1,)</versionRange>
817 <goals>
818 <goal>format</goal>
819 </goals>
820 </pluginExecutionFilter>
821 <action>
822 <ignore></ignore>
823 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800824 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700825 </pluginExecutions>
826 </lifecycleMappingMetadata>
827 </configuration>
828 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800829 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500830 <groupId>org.codehaus.mojo</groupId>
831 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400832 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800833 </plugin>
834 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500835 <groupId>org.apache.maven.plugins</groupId>
836 <artifactId>maven-scm-plugin</artifactId>
837 <version>1.9.5</version>
838 </plugin>
839 <plugin>
840 <groupId>org.codehaus.mojo</groupId>
841 <artifactId>appassembler-maven-plugin</artifactId>
842 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800843 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400844 <plugin>
845 <groupId>org.apache.maven.plugins</groupId>
846 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400847 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400848 </plugin>
849 <plugin>
850 <groupId>org.apache.maven.plugins</groupId>
851 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400852 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400853 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400854 <plugin>
855 <groupId>org.apache.hyracks</groupId>
856 <artifactId>license-automation-plugin</artifactId>
857 <version>${project.version}</version>
858 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400859 <plugin>
860 <groupId>org.apache.maven.plugins</groupId>
861 <artifactId>maven-assembly-plugin</artifactId>
862 <version>3.1.0</version>
863 </plugin>
864 <plugin>
865 <groupId>org.apache.maven.plugins</groupId>
866 <artifactId>maven-antrun-plugin</artifactId>
867 <version>1.8</version>
868 </plugin>
869 <plugin>
870 <groupId>org.apache.maven.plugins</groupId>
871 <artifactId>maven-clean-plugin</artifactId>
872 <version>3.0.0</version>
873 </plugin>
874 <plugin>
875 <groupId>org.apache.maven.plugins</groupId>
876 <artifactId>maven-jar-plugin</artifactId>
877 <version>3.0.2</version>
878 </plugin>
879 <plugin>
880 <groupId>org.codehaus.mojo</groupId>
881 <artifactId>build-helper-maven-plugin</artifactId>
882 <version>3.0.0</version>
883 </plugin>
884 <plugin>
885 <groupId>org.apache.maven.plugins</groupId>
886 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400887 <version>3.6.0</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400888 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400889 <plugin>
890 <groupId>org.apache.maven.doxia</groupId>
891 <artifactId>doxia-maven-plugin</artifactId>
892 <version>1.1.4</version>
893 </plugin>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700894 <plugin>
895 <groupId>org.apache.maven.plugins</groupId>
896 <artifactId>maven-enforcer-plugin</artifactId>
897 <version>3.0.0-M3</version>
898 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700899 </plugins>
900 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000901 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800902 <profiles>
903 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400904 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700905 <activation>
906 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400907 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700908 </file>
909 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400910 <properties>
911 <skip.assembly>true</skip.assembly>
912 </properties>
913 </profile>
914 <profile>
915 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700916 <build>
917 <plugins>
918 <plugin>
919 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500920 <artifactId>maven-jar-plugin</artifactId>
921 <configuration>
922 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500923 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500924 <manifest>
925 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
926 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
927 </manifest>
928 </archive>
929 </configuration>
930 </plugin>
931 <plugin>
932 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700933 <artifactId>maven-assembly-plugin</artifactId>
934 <!-- We override the configuration plugin to override the descriptor to use for building
935 the source release zip. Specifically, we would like to control the inclusions/exclusions.
936 For example, we exclude the KEYS file from the zip -->
937 <executions>
938 <execution>
939 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
940 the apache parent POM under the apache-release profile -->
941 <id>source-release-assembly</id>
942 <phase>package</phase>
943 <goals>
944 <goal>single</goal>
945 </goals>
946 <!-- combine.self should be override to replace the configuration in the parent POM -->
947 <configuration combine.self="override">
948 <descriptors>
949 <descriptor>src/main/assembly/source.xml</descriptor>
950 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400951 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700952 </configuration>
953 </execution>
954 </executions>
955 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700956 <plugin>
957 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800958 <artifactId>maven-gpg-plugin</artifactId>
959 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700960 <executions>
961 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800962 <id>sign-artifacts</id>
963 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700964 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800965 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700966 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700967 </execution>
968 </executions>
969 </plugin>
970 </plugins>
971 </build>
972 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700973 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400974 <id>coverage</id>
975 <activation>
976 <property>
977 <name>coverage</name>
978 </property>
979 </activation>
980 <build>
981 <plugins>
982 <plugin>
983 <groupId>org.jacoco</groupId>
984 <artifactId>jacoco-maven-plugin</artifactId>
985 <version>${jacoco.version}</version>
986 <executions>
987 <execution>
988 <id>default-prepare-agent</id>
989 <goals>
990 <goal>prepare-agent</goal>
991 </goals>
992 <configuration>
993 <propertyName>coverageArgLine</propertyName>
994 </configuration>
995 </execution>
996 <execution>
997 <id>default-prepare-agent-integration</id>
998 <goals>
999 <goal>prepare-agent-integration</goal>
1000 </goals>
1001 <configuration>
1002 <propertyName>coverageArgLine</propertyName>
1003 </configuration>
1004 </execution>
1005 </executions>
1006 </plugin>
1007 </plugins>
1008 </build>
1009 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001010 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -04001011 </properties>
1012 </profile>
1013 <profile>
1014 <id>no-coverage</id>
1015 <activation>
1016 <property>
1017 <name>!coverage</name>
1018 </property>
1019 </activation>
1020 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001021 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -04001022 </properties>
1023 </profile>
1024 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -05001025 <id>integration-tests-only</id>
1026 <properties>
1027 <test.includes/>
1028 <failIfNoTests>false</failIfNoTests>
1029 </properties>
1030 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001031 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +00001032 <modules>
1033 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +00001034 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -05001035 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +00001036 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -04001037</project>