blob: 301675518e9b07de7f250b1ea8826dd478d2f4a5 [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 Maxon4f3e48f2023-03-14 20:12:58 -070024 <version>0.3.9-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 Blowce631f32023-10-11 17:39:03 -040078 <netty.version>4.1.100.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>
Hussain Towaileb8d1721f2023-06-08 19:34:07 +0300158 <groupId>io.netty</groupId>
159 <artifactId>netty-all</artifactId>
160 <version>${netty.version}</version>
161 <scope>test</scope>
162 </dependency>
163 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700164 <groupId>junit</groupId>
165 <artifactId>junit</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500166 <version>4.13.2</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700167 </dependency>
168 <dependency>
169 <groupId>org.apache.hadoop</groupId>
170 <artifactId>hadoop-yarn-client</artifactId>
171 <version>${hadoop.version}</version>
172 </dependency>
173 <dependency>
174 <groupId>org.apache.hadoop</groupId>
175 <artifactId>hadoop-client</artifactId>
176 <version>${hadoop.version}</version>
177 </dependency>
178 <dependency>
179 <groupId>org.apache.hadoop</groupId>
180 <artifactId>hadoop-common</artifactId>
181 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400182 <exclusions>
183 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300184 <groupId>net.minidev</groupId>
185 <artifactId>json-smart</artifactId>
186 </exclusion>
187 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300188 <groupId>com.nimbusds</groupId>
189 <artifactId>nimbus-jose-jwt</artifactId>
190 </exclusion>
191 <exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400192 <groupId>javax.servlet.jsp</groupId>
193 <artifactId>jsp-api</artifactId>
194 </exclusion>
195 <exclusion>
196 <groupId>javax.servlet</groupId>
197 <artifactId>servlet-api</artifactId>
198 </exclusion>
199 <exclusion>
200 <groupId>jdk.tools</groupId>
201 <artifactId>jdk.tools</artifactId>
202 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700203 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500204 <groupId>org.slf4j</groupId>
205 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700206 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700207 <exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700208 <groupId>org.slf4j</groupId>
209 <artifactId>slf4j-log4j12</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300210 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400211 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700212 </dependency>
213 <dependency>
214 <groupId>org.apache.hadoop</groupId>
215 <artifactId>hadoop-hdfs</artifactId>
216 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700217 <exclusions>
218 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500219 <groupId>io.netty</groupId>
220 <artifactId>netty-all</artifactId>
221 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500222 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500223 <groupId>org.slf4j</groupId>
224 <artifactId>slf4j-reload4j</artifactId>
225 </exclusion>
226 <exclusion>
227 <groupId>ch.qos.reload4j</groupId>
228 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700229 </exclusion>
230 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700231 </dependency>
232 <dependency>
233 <groupId>org.apache.hadoop</groupId>
234 <artifactId>hadoop-minicluster</artifactId>
235 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700236 <exclusions>
237 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500238 <groupId>org.slf4j</groupId>
239 <artifactId>slf4j-reload4j</artifactId>
240 </exclusion>
241 <exclusion>
242 <groupId>ch.qos.reload4j</groupId>
243 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700244 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300245 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700246 <groupId>log4j</groupId>
247 <artifactId>log4j</artifactId>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300248 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700249 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700250 </dependency>
251 <dependency>
252 <groupId>org.apache.hadoop</groupId>
253 <artifactId>hadoop-mapreduce-client-core</artifactId>
254 <version>${hadoop.version}</version>
255 </dependency>
256 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400257 <groupId>org.apache.hadoop</groupId>
258 <artifactId>hadoop-hdfs</artifactId>
259 <version>${hadoop.version}</version>
260 <classifier>tests</classifier>
261 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700262 <exclusions>
263 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500264 <groupId>org.slf4j</groupId>
265 <artifactId>slf4j-reload4j</artifactId>
266 </exclusion>
267 <exclusion>
268 <groupId>ch.qos.reload4j</groupId>
269 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700270 </exclusion>
271 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400272 </dependency>
273 <dependency>
Michael Blow91a7e802023-01-12 18:51:33 -0500274 <groupId>com.e-movimento.tinytools</groupId>
275 <artifactId>privilegedaccessor</artifactId>
276 <version>1.3</version>
277 </dependency>
278 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700279 <groupId>commons-io</groupId>
280 <artifactId>commons-io</artifactId>
Michael Blow76082aa2021-11-04 12:23:38 -0400281 <version>2.11.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500282 </dependency>
283 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400284 <groupId>org.apache.commons</groupId>
285 <artifactId>commons-text</artifactId>
Michael Blow8a620912022-10-26 15:33:12 -0400286 <version>1.10.0</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400287 </dependency>
288 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800289 <groupId>com.fasterxml.jackson.core</groupId>
290 <artifactId>jackson-databind</artifactId>
Michael Blow91a7e802023-01-12 18:51:33 -0500291 <version>${jackson-databind.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800292 </dependency>
293 <dependency>
294 <groupId>com.fasterxml.jackson.core</groupId>
295 <artifactId>jackson-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400296 <version>${jackson.version}</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800297 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500298 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500299 <groupId>com.fasterxml.jackson.core</groupId>
300 <artifactId>jackson-annotations</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400301 <version>${jackson.version}</version>
Michael Blow204b2952017-12-07 20:17:47 -0500302 </dependency>
303 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500304 <groupId>com.google.guava</groupId>
305 <artifactId>guava</artifactId>
Michael Blowd43ed602023-10-04 19:36:43 -0400306 <version>32.1.2-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400307 <exclusions>
308 <exclusion>
309 <groupId>com.google.code.findbugs</groupId>
310 <artifactId>jsr305</artifactId>
311 </exclusion>
312 <exclusion>
313 <groupId>com.google.guava</groupId>
314 <artifactId>listenablefuture</artifactId>
315 </exclusion>
316 <exclusion>
317 <groupId>org.checkerframework</groupId>
318 <artifactId>checker-qual</artifactId>
319 </exclusion>
320 <exclusion>
321 <groupId>com.google.j2objc</groupId>
322 <artifactId>j2objc-annotations</artifactId>
323 </exclusion>
324 <exclusion>
325 <groupId>org.codehaus.mojo</groupId>
326 <artifactId>animal-sniffer-annotations</artifactId>
327 </exclusion>
328 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500329 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500330 <dependency>
331 <groupId>org.apache.commons</groupId>
332 <artifactId>commons-lang3</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400333 <version>3.12.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500334 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500335 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500336 <groupId>org.apache.commons</groupId>
337 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500338 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500339 </dependency>
340 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800341 <groupId>org.apache.httpcomponents</groupId>
342 <artifactId>httpcore</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500343 <version>4.4.15</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800344 </dependency>
345 <dependency>
346 <groupId>org.apache.httpcomponents</groupId>
347 <artifactId>httpclient</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500348 <version>4.5.13</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800349 </dependency>
350 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500351 <groupId>org.apache.rat</groupId>
352 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500353 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500354 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500355 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800356 <groupId>org.ini4j</groupId>
357 <artifactId>ini4j</artifactId>
358 <version>0.5.4</version>
359 </dependency>
360 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500361 <groupId>args4j</groupId>
362 <artifactId>args4j</artifactId>
363 <version>2.33</version>
364 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300365 <dependency>
366 <groupId>org.apache.logging.log4j</groupId>
367 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400368 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300369 </dependency>
370 <dependency>
371 <groupId>org.apache.logging.log4j</groupId>
372 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400373 <version>${log4j.version}</version>
374 </dependency>
375 <dependency>
376 <groupId>org.apache.logging.log4j</groupId>
377 <artifactId>log4j-jul</artifactId>
378 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300379 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800380 <dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400381 <groupId>javax.xml.bind</groupId>
382 <artifactId>jaxb-api</artifactId>
383 <version>2.3.0</version>
384 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500385 <dependency>
386 <groupId>org.apache.maven</groupId>
387 <artifactId>maven-project</artifactId>
388 <version>2.2.1</version>
389 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500390 <dependency>
391 <groupId>org.apache.maven</groupId>
392 <artifactId>maven-model</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500393 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500394 </dependency>
395 <dependency>
396 <groupId>org.apache.maven</groupId>
397 <artifactId>maven-artifact</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500398 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500399 </dependency>
400 <dependency>
401 <groupId>org.apache.maven</groupId>
402 <artifactId>maven-compat</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500403 <version>3.8.4</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500404 </dependency>
405 <dependency>
406 <groupId>org.apache.maven</groupId>
407 <artifactId>maven-core</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500408 <version>3.8.4</version>
Michael Blow8363dcb2021-12-04 06:02:34 -0500409 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500410 <dependency>
411 <groupId>org.apache.maven</groupId>
412 <artifactId>maven-plugin-api</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500413 <version>3.8.4</version>
Michael Blowe8637d02021-10-28 20:11:23 -0400414 </dependency>
415 <dependency>
Michael Blowfa0ddb62022-01-22 08:08:51 -0500416 <groupId>org.apache.maven.plugin-tools</groupId>
417 <artifactId>maven-plugin-annotations</artifactId>
418 <version>3.6.4</version>
419 </dependency>
420 <dependency>
421 <groupId>org.apache.maven.plugins</groupId>
422 <artifactId>maven-remote-resources-plugin</artifactId>
423 <version>1.7.0</version>
Michael Blowb5727c62020-03-05 21:16:35 -0500424 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700425 <dependency>
426 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400427 <artifactId>fastutil-core</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400428 <version>8.5.6</version>
Rui Guo4ce394b2020-07-23 07:35:59 -0700429 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700430 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700431 <groupId>org.slf4j</groupId>
432 <artifactId>slf4j-simple</artifactId>
Michael Blow55e19802022-01-18 21:11:26 -0500433 <version>1.7.33</version>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700434 </dependency>
435 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700436 <groupId>org.apache.logging.log4j</groupId>
437 <artifactId>log4j-1.2-api</artifactId>
Michael Blow951b9cc2021-10-28 20:11:23 -0400438 <version>${log4j.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700439 </dependency>
Ian Maxon94eb3c22021-06-03 12:31:18 -0700440 <dependency>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700441 <groupId>org.mockito</groupId>
442 <artifactId>mockito-core</artifactId>
443 <version>3.10.0</version>
444 </dependency>
445 <dependency>
446 <groupId>org.powermock</groupId>
447 <artifactId>powermock-api-mockito2</artifactId>
448 <version>2.0.9</version>
449 </dependency>
450 <dependency>
451 <groupId>org.powermock</groupId>
452 <artifactId>powermock-module-junit4</artifactId>
453 <version>2.0.9</version>
454 </dependency>
455 <dependency>
456 <groupId>org.powermock</groupId>
457 <artifactId>powermock-core</artifactId>
458 <version>2.0.9</version>
459 </dependency>
Wail Alkowaileet790ce542021-08-07 16:21:17 -0700460 <dependency>
461 <groupId>org.xerial.snappy</groupId>
462 <artifactId>snappy-java</artifactId>
463 <version>${snappy.version}</version>
464 </dependency>
Hussain Towailebaedda352023-05-22 04:45:42 +0300465 <!-- Manually included to avoid CVE-2023-1370 -->
466 <dependency>
467 <groupId>net.minidev</groupId>
468 <artifactId>json-smart</artifactId>
469 <version>2.4.11</version>
470 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700471 </dependencies>
472 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000473 <build>
474 <plugins>
475 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400476 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500477 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500478 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500479 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500480 <exclude>**/DEPENDENCIES</exclude>
481 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500482 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500483 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500484 <manifest>
485 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
486 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
487 </manifest>
488 <manifestEntries>
489 <Implementation-Title>${implementation.title}</Implementation-Title>
490 <Implementation-URL>${implementation.url}</Implementation-URL>
491 <Implementation-Version>${implementation.version}</Implementation-Version>
492 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
493 </manifestEntries>
494 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500495 </configuration>
496 </plugin>
497 <plugin>
498 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400499 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400500 <configuration>
501 <failOnWarning>true</failOnWarning>
502 <outputXML>true</outputXML>
503 </configuration>
504 <executions>
505 <execution>
506 <phase>process-test-classes</phase>
507 <goals>
508 <goal>analyze-only</goal>
509 </goals>
510 </execution>
511 </executions>
512 </plugin>
513 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700514 <groupId>org.apache.rat</groupId>
515 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700516 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700517 <execution>
518 <phase>validate</phase>
519 <goals>
520 <goal>check</goal>
521 </goals>
522 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700523 </executions>
524 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500525 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
526 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700527 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800528 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700529 </licenses>
530 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800531 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700532 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500533 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400534 <excludes combine.children="append">
535 <exclude>**/*.iml</exclude>
536 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700537 </configuration>
538 </plugin>
539 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700540 <groupId>org.apache.maven.plugins</groupId>
541 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700542 <configuration>
543 <failIfNoTests>false</failIfNoTests>
544 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800545 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800546 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
Murtadha Hubailc7eb0c52018-05-21 18:01:55 +0300547 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Michael Blowb4c1fb02016-05-09 15:41:00 -0700548 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300549 <systemPropertyVariables>
550 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
551 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700552 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500553 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700554 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500555 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500556 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800557 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400558 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700559 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700560 </plugin>
561 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700562 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300563 <artifactId>maven-failsafe-plugin</artifactId>
564 <configuration>
565 <systemPropertyVariables>
566 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
567 </systemPropertyVariables>
568 </configuration>
569 </plugin>
570 <plugin>
571 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700572 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700573 <configuration>
Michael Blow22c6d542023-10-03 23:30:18 -0400574 <release>${release.jdk.version}</release>
Michael Blow2b057012017-12-07 22:20:39 -0500575 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700576 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000577 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700578 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700579 <groupId>org.apache.maven.plugins</groupId>
580 <artifactId>maven-remote-resources-plugin</artifactId>
581 <executions>
582 <execution>
583 <goals>
584 <goal>process</goal>
585 </goals>
586 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500587 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700588 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700589 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500590 <properties>
591 <projectName>Apache Hyracks - ${project.name}</projectName>
592 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700593 </configuration>
594 </execution>
595 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800596 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400597 <plugin>
598 <groupId>org.apache.maven.plugins</groupId>
599 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow6a2a4362019-03-27 14:31:16 -0400600 <version>3.0.0</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400601 <executions>
602 <execution>
603 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400604 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400605 <goals>
606 <goal>check</goal>
607 </goals>
608 </execution>
609 </executions>
610 <configuration>
611 <logViolationsToConsole>true</logViolationsToConsole>
612 <checkstyleRules>
613 <module name="Checker">
614 <!-- Checks for whitespace -->
615 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400616 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400617 <module name="TreeWalker">
618 <module name="AvoidStarImport">
619 <property name="allowStaticMemberImports" value="true"/>
620 </module>
621 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400622 </module>
623 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400624 <includes>**/*.java,**/*.jj</includes>
625 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400626 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
627 </configuration>
628 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400629 <plugin>
630 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400631 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400632 <executions>
633 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400634 <id>check-pom-packaging</id>
635 <phase>validate</phase>
636 <goals>
637 <goal>run</goal>
638 </goals>
639 <configuration>
640 <exportAntProperties>true</exportAntProperties>
641 <target xmlns:unless="ant:unless">
642 <condition property="skipPomEnforcement">
643 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
644 </condition>
645 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
646 </target>
647 </configuration>
648 </execution>
649 </executions>
650 </plugin>
651 <plugin>
652 <groupId>org.apache.maven.plugins</groupId>
653 <artifactId>maven-enforcer-plugin</artifactId>
654 <executions>
655 <execution>
656 <id>ensure-no-tests-for-pom-packaging</id>
657 <phase>validate</phase>
658 <goals>
659 <goal>enforce</goal>
660 </goals>
661 <configuration>
662 <rules>
663 <requireFilesDontExist>
664 <files>
665 <file>${project.build.testSourceDirectory}</file>
666 </files>
667 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
668 </requireFilesDontExist>
669 </rules>
670 <skip>${skipPomEnforcement}</skip>
671 </configuration>
672 </execution>
673 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400674 <id>enforce-versions</id>
675 <goals>
676 <goal>enforce</goal>
677 </goals>
678 <configuration>
679 <rules>
680 <requireMavenVersion>
681 <version>[3.3.9,)</version>
682 </requireMavenVersion>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700683 <requireJavaVersion>
Michael Blow22c6d542023-10-03 23:30:18 -0400684 <version>[${release.jdk.version},)</version>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700685 </requireJavaVersion>
686 </rules>
687 </configuration>
688 </execution>
689 <execution>
690 <id>ensure-no-duplicate-deps</id>
691 <goals>
692 <goal>enforce</goal>
693 </goals>
694 <configuration>
695 <rules>
696 <banDuplicatePomDependencyVersions/>
Michael Blowf53c1c62016-06-17 16:51:59 -0400697 </rules>
698 </configuration>
699 </execution>
700 </executions>
701 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500702 <plugin>
703 <groupId>org.apache.maven.plugins</groupId>
704 <artifactId>maven-resources-plugin</artifactId>
705 <executions>
706 <execution>
707 <id>default-testResources</id>
708 <goals>
709 <goal>testResources</goal>
710 </goals>
711 <configuration>
712 <skip>${skip.testResources}</skip>
713 </configuration>
714 </execution>
715 </executions>
716 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500717 <plugin>
718 <groupId>net.revelc.code.formatter</groupId>
719 <artifactId>formatter-maven-plugin</artifactId>
720 <executions>
721 <execution>
722 <goals>
723 <goal>${source-format.goal}</goal>
724 </goals>
725 </execution>
726 </executions>
727 <configuration>
728 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
729 <skipFormatting>${source-format.skip}</skipFormatting>
730 </configuration>
731 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400732 <plugin>
733 <groupId>net.revelc.code</groupId>
734 <artifactId>impsort-maven-plugin</artifactId>
735 <executions>
736 <execution>
737 <goals>
738 <goal>${import-sort.goal}</goal>
739 </goals>
740 </execution>
741 </executions>
742 <configuration>
743 <groups>java,javax,org,com,*</groups>
744 <removeUnused>true</removeUnused>
745 <skip>${import-sort.skip}</skip>
746 </configuration>
747 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000748 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700749 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700750 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500751 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800752 <groupId>org.apache.maven.plugins</groupId>
753 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400754 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800755 </plugin>
756 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500757 <groupId>org.apache.rat</groupId>
758 <artifactId>apache-rat-plugin</artifactId>
759 <version>0.12</version>
760 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700761 <plugin>
762 <groupId>net.revelc.code.formatter</groupId>
763 <artifactId>formatter-maven-plugin</artifactId>
764 <version>2.0.1</version>
765 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400766 <plugin>
767 <groupId>net.revelc.code</groupId>
768 <artifactId>impsort-maven-plugin</artifactId>
769 <version>1.2.0</version>
770 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700771 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
772 <plugin>
773 <groupId>org.eclipse.m2e</groupId>
774 <artifactId>lifecycle-mapping</artifactId>
775 <version>1.0.0</version>
776 <configuration>
777 <lifecycleMappingMetadata>
778 <pluginExecutions>
779 <pluginExecution>
780 <pluginExecutionFilter>
781 <groupId>org.apache.rat</groupId>
782 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400783 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700784 <goals>
785 <goal>check</goal>
786 </goals>
787 </pluginExecutionFilter>
788 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400789 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700790 </action>
791 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400792 <pluginExecution>
793 <pluginExecutionFilter>
794 <groupId>org.apache.maven.plugins</groupId>
795 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400796 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400797 <goals>
798 <goal>check</goal>
799 </goals>
800 </pluginExecutionFilter>
801 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400802 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400803 </action>
804 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700805 <pluginExecution>
806 <pluginExecutionFilter>
807 <groupId>org.apache.maven.plugins</groupId>
808 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400809 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700810 <goals>
811 <goal>analyze-only</goal>
812 </goals>
813 </pluginExecutionFilter>
814 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800815 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700816 </action>
817 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800818 <pluginExecution>
819 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800820 <groupId>net.revelc.code.formatter</groupId>
821 <artifactId>formatter-maven-plugin</artifactId>
822 <versionRange>[2.0.1,)</versionRange>
823 <goals>
824 <goal>format</goal>
825 </goals>
826 </pluginExecutionFilter>
827 <action>
828 <ignore></ignore>
829 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800830 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700831 </pluginExecutions>
832 </lifecycleMappingMetadata>
833 </configuration>
834 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800835 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500836 <groupId>org.codehaus.mojo</groupId>
837 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400838 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800839 </plugin>
840 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500841 <groupId>org.apache.maven.plugins</groupId>
842 <artifactId>maven-scm-plugin</artifactId>
843 <version>1.9.5</version>
844 </plugin>
845 <plugin>
846 <groupId>org.codehaus.mojo</groupId>
847 <artifactId>appassembler-maven-plugin</artifactId>
848 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800849 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400850 <plugin>
851 <groupId>org.apache.maven.plugins</groupId>
852 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400853 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400854 </plugin>
855 <plugin>
856 <groupId>org.apache.maven.plugins</groupId>
857 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400858 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400859 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400860 <plugin>
861 <groupId>org.apache.hyracks</groupId>
862 <artifactId>license-automation-plugin</artifactId>
863 <version>${project.version}</version>
864 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400865 <plugin>
866 <groupId>org.apache.maven.plugins</groupId>
867 <artifactId>maven-assembly-plugin</artifactId>
868 <version>3.1.0</version>
869 </plugin>
870 <plugin>
871 <groupId>org.apache.maven.plugins</groupId>
872 <artifactId>maven-antrun-plugin</artifactId>
873 <version>1.8</version>
874 </plugin>
875 <plugin>
876 <groupId>org.apache.maven.plugins</groupId>
877 <artifactId>maven-clean-plugin</artifactId>
878 <version>3.0.0</version>
879 </plugin>
880 <plugin>
881 <groupId>org.apache.maven.plugins</groupId>
882 <artifactId>maven-jar-plugin</artifactId>
883 <version>3.0.2</version>
884 </plugin>
885 <plugin>
886 <groupId>org.codehaus.mojo</groupId>
887 <artifactId>build-helper-maven-plugin</artifactId>
888 <version>3.0.0</version>
889 </plugin>
890 <plugin>
891 <groupId>org.apache.maven.plugins</groupId>
892 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400893 <version>3.6.0</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400894 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400895 <plugin>
896 <groupId>org.apache.maven.doxia</groupId>
897 <artifactId>doxia-maven-plugin</artifactId>
898 <version>1.1.4</version>
899 </plugin>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700900 <plugin>
901 <groupId>org.apache.maven.plugins</groupId>
902 <artifactId>maven-enforcer-plugin</artifactId>
903 <version>3.0.0-M3</version>
904 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700905 </plugins>
906 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000907 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800908 <profiles>
909 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400910 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700911 <activation>
912 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400913 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700914 </file>
915 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400916 <properties>
917 <skip.assembly>true</skip.assembly>
918 </properties>
919 </profile>
920 <profile>
921 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700922 <build>
923 <plugins>
924 <plugin>
925 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500926 <artifactId>maven-jar-plugin</artifactId>
927 <configuration>
928 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500929 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500930 <manifest>
931 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
932 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
933 </manifest>
934 </archive>
935 </configuration>
936 </plugin>
937 <plugin>
938 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700939 <artifactId>maven-assembly-plugin</artifactId>
940 <!-- We override the configuration plugin to override the descriptor to use for building
941 the source release zip. Specifically, we would like to control the inclusions/exclusions.
942 For example, we exclude the KEYS file from the zip -->
943 <executions>
944 <execution>
945 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
946 the apache parent POM under the apache-release profile -->
947 <id>source-release-assembly</id>
948 <phase>package</phase>
949 <goals>
950 <goal>single</goal>
951 </goals>
952 <!-- combine.self should be override to replace the configuration in the parent POM -->
953 <configuration combine.self="override">
954 <descriptors>
955 <descriptor>src/main/assembly/source.xml</descriptor>
956 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400957 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700958 </configuration>
959 </execution>
960 </executions>
961 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700962 <plugin>
963 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800964 <artifactId>maven-gpg-plugin</artifactId>
965 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700966 <executions>
967 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800968 <id>sign-artifacts</id>
969 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700970 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800971 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700972 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700973 </execution>
974 </executions>
975 </plugin>
976 </plugins>
977 </build>
978 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700979 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400980 <id>coverage</id>
981 <activation>
982 <property>
983 <name>coverage</name>
984 </property>
985 </activation>
986 <build>
987 <plugins>
988 <plugin>
989 <groupId>org.jacoco</groupId>
990 <artifactId>jacoco-maven-plugin</artifactId>
991 <version>${jacoco.version}</version>
992 <executions>
993 <execution>
994 <id>default-prepare-agent</id>
995 <goals>
996 <goal>prepare-agent</goal>
997 </goals>
998 <configuration>
999 <propertyName>coverageArgLine</propertyName>
1000 </configuration>
1001 </execution>
1002 <execution>
1003 <id>default-prepare-agent-integration</id>
1004 <goals>
1005 <goal>prepare-agent-integration</goal>
1006 </goals>
1007 <configuration>
1008 <propertyName>coverageArgLine</propertyName>
1009 </configuration>
1010 </execution>
1011 </executions>
1012 </plugin>
1013 </plugins>
1014 </build>
1015 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001016 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -04001017 </properties>
1018 </profile>
1019 <profile>
1020 <id>no-coverage</id>
1021 <activation>
1022 <property>
1023 <name>!coverage</name>
1024 </property>
1025 </activation>
1026 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -04001027 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -04001028 </properties>
1029 </profile>
1030 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -05001031 <id>integration-tests-only</id>
1032 <properties>
1033 <test.includes/>
1034 <failIfNoTests>false</failIfNoTests>
1035 </properties>
1036 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -08001037 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +00001038 <modules>
1039 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +00001040 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -05001041 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +00001042 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -04001043</project>