Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 4 | ! or more contributor license agreements. See the NOTICE file |
| 5 | ! distributed with this work for additional information |
| 6 | ! regarding copyright ownership. The ASF licenses this file |
| 7 | ! to you under the Apache License, Version 2.0 (the |
| 8 | ! "License"); you may not use this file except in compliance |
| 9 | ! with the License. You may obtain a copy of the License at |
| 10 | ! |
| 11 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ! |
| 13 | ! Unless required by applicable law or agreed to in writing, |
| 14 | ! software distributed under the License is distributed on an |
| 15 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | ! KIND, either express or implied. See the License for the |
| 17 | ! specific language governing permissions and limitations |
| 18 | ! under the License. |
| 19 | !--> |
| 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <groupId>org.apache.asterix</groupId> |
| 23 | <artifactId>apache-asterixdb</artifactId> |
Ian Maxon | 2582481 | 2022-01-27 11:49:12 -0800 | [diff] [blame] | 24 | <version>0.9.8-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 25 | <packaging>pom</packaging> |
Michael Blow | 38ca962 | 2018-02-28 11:44:43 -0500 | [diff] [blame] | 26 | <url>${implementation.url}</url> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 27 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.apache</groupId> |
| 30 | <artifactId>apache</artifactId> |
Michael Blow | b99349d | 2016-11-08 19:38:02 -0500 | [diff] [blame] | 31 | <version>18</version> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 32 | <relativePath /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 33 | </parent> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 34 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 35 | <licenses> |
| 36 | <license> |
| 37 | <name>Apache License, Version 2.0</name> |
| 38 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 39 | <distribution>repo</distribution> |
| 40 | <comments>A business-friendly OSS license</comments> |
| 41 | </license> |
| 42 | </licenses> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 43 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 44 | <properties> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 45 | <root.dir>${basedir}</root.dir> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 46 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Michael Blow | dd920be | 2017-06-07 15:04:33 -0400 | [diff] [blame] | 47 | <file.encoding>UTF-8</file.encoding> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 48 | <jvm.extraargs /> |
Ian Maxon | 4889f6b | 2021-05-05 02:08:27 -0700 | [diff] [blame] | 49 | <source.jdk.version>11</source.jdk.version> |
| 50 | <target.jdk.version>11</target.jdk.version> |
Michael Blow | 2b05701 | 2017-12-07 22:20:39 -0500 | [diff] [blame] | 51 | <javac.xlint.value>all</javac.xlint.value> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 52 | <source-format.goal>format</source-format.goal> |
| 53 | <source-format.skip>false</source-format.skip> |
Michael Blow | ef85fb0 | 2019-03-22 13:40:35 -0400 | [diff] [blame] | 54 | <import-sort.goal>sort</import-sort.goal> |
| 55 | <import-sort.skip>false</import-sort.skip> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 56 | <runSlowAQLTests>false</runSlowAQLTests> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 57 | <appendedResourcesDirectory>${root.dir}/src/main/appended-resources</appendedResourcesDirectory> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 58 | <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 59 | <debug.suspend.flag>n</debug.suspend.flag> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 60 | <skipTests>false</skipTests> |
| 61 | <maven.test.skip>false</maven.test.skip> |
Michael Blow | dd920be | 2017-06-07 15:04:33 -0400 | [diff] [blame] | 62 | <skip.surefire.tests>${skipTests}</skip.surefire.tests> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 63 | <skip.testResources>${maven.test.skip}</skip.testResources> |
Michael Blow | 2530e39 | 2018-02-06 01:19:42 -0500 | [diff] [blame] | 64 | <testLog4jConfigFile>${root.dir}/asterix-app/src/test/resources/log4j2-asterixdb-test.xml</testLog4jConfigFile> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 65 | |
| 66 | <!-- Definition of tests in various categories which may be excluded --> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 67 | <repeated.tests>**/RepeatedTest.java</repeated.tests> |
| 68 | <invalid.tests>**/DmlTest.java</invalid.tests> |
Michael Blow | dd920be | 2017-06-07 15:04:33 -0400 | [diff] [blame] | 69 | <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes> |
| 70 | <global.test.excludes>${invalid.tests},${repeated.tests}</global.test.excludes> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 71 | <test.includes>${global.test.includes}</test.includes> |
| 72 | <test.excludes>${global.test.excludes}</test.excludes> |
| 73 | <global.itest.includes>**/*IT.java,**/*IT.java,**/*ITCase.java</global.itest.includes> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 74 | <global.itest.excludes>**/ExternalPythonFunctionIT.java</global.itest.excludes> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 75 | <itest.includes>${global.itest.includes}</itest.includes> |
| 76 | <itest.excludes>${global.itest.excludes}</itest.excludes> |
Ian Maxon | 4f24399 | 2019-04-04 13:56:19 -0700 | [diff] [blame] | 77 | <license.stage>compile</license.stage> |
| 78 | <resource.stage>process-classes</resource.stage> |
Ian Maxon | 01302d5 | 2021-02-11 11:09:48 -0800 | [diff] [blame] | 79 | <prepare-env.stage>none</prepare-env.stage> |
| 80 | <shim.stage>none</shim.stage> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 81 | <pytestlib.stage>none</pytestlib.stage> |
Ian Maxon | 0bb11aa | 2021-07-07 14:55:59 -0700 | [diff] [blame] | 82 | <skip-npm-touch.stage>none</skip-npm-touch.stage> |
Chris Hillery | 14796d1 | 2016-06-08 02:39:23 -0700 | [diff] [blame] | 83 | |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 84 | <!-- Versions under dependencymanagement or used in many projects via properties --> |
Ian Maxon | 2582481 | 2022-01-27 11:49:12 -0800 | [diff] [blame] | 85 | <algebricks.version>0.3.8-SNAPSHOT</algebricks.version> |
| 86 | <hyracks.version>0.3.8-SNAPSHOT</hyracks.version> |
Wail Alkowaileet | 087eaf5 | 2021-08-31 10:36:27 -0700 | [diff] [blame] | 87 | <hadoop.version>3.3.1</hadoop.version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 88 | <jacoco.version>0.7.6.201602180812</jacoco.version> |
Michael Blow | 77f6105 | 2022-01-04 12:07:17 -0500 | [diff] [blame] | 89 | <log4j.version>2.17.1</log4j.version> |
Michael Blow | fa0ddb6 | 2022-01-22 08:08:51 -0500 | [diff] [blame] | 90 | <awsjavasdk.version>2.17.116</awsjavasdk.version> |
Wail Alkowaileet | 578908a | 2021-07-08 15:29:47 -0700 | [diff] [blame] | 91 | <parquet.version>1.12.0</parquet.version> |
Hussain Towaileb | 0745d97 | 2021-11-17 16:15:26 +0300 | [diff] [blame] | 92 | <hadoop-awsjavasdk.version>1.12.109</hadoop-awsjavasdk.version> |
Hussain Towaileb | b1407c5 | 2021-11-23 15:34:55 +0300 | [diff] [blame] | 93 | <azureblobjavasdk.version>12.14.2</azureblobjavasdk.version> |
| 94 | <azuredatalakejavasdk.version>12.7.2</azuredatalakejavasdk.version> |
Hussain Towaileb | cd050c8 | 2022-02-04 16:49:13 +0300 | [diff] [blame^] | 95 | <gcsjavasdk.version>2.3.0</gcsjavasdk.version> |
Wail Alkowaileet | 380dbad | 2021-09-10 03:21:33 -0700 | [diff] [blame] | 96 | <hadoop-azuresdk.version>8.6.6</hadoop-azuresdk.version> |
| 97 | |
Michael Blow | 38ca962 | 2018-02-28 11:44:43 -0500 | [diff] [blame] | 98 | <implementation.title>Apache AsterixDB - ${project.name}</implementation.title> |
| 99 | <implementation.url>https://asterixdb.apache.org/</implementation.url> |
| 100 | <implementation.version>${project.version}</implementation.version> |
| 101 | <implementation.vendor>${project.organization.name}</implementation.vendor> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 102 | </properties> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 103 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 104 | <build> |
| 105 | <plugins> |
| 106 | <plugin> |
| 107 | <groupId>org.apache.maven.plugins</groupId> |
Michael Blow | c96bb1f | 2017-01-16 16:31:54 -0500 | [diff] [blame] | 108 | <artifactId>maven-jar-plugin</artifactId> |
Michael Blow | c96bb1f | 2017-01-16 16:31:54 -0500 | [diff] [blame] | 109 | <configuration> |
| 110 | <excludes> |
| 111 | <exclude>**/DEPENDENCIES</exclude> |
| 112 | </excludes> |
Michael Blow | 38ca962 | 2018-02-28 11:44:43 -0500 | [diff] [blame] | 113 | <archive> |
Michael Blow | aed96f0 | 2019-03-01 18:47:19 -0500 | [diff] [blame] | 114 | <addMavenDescriptor>false</addMavenDescriptor> |
Michael Blow | 38ca962 | 2018-02-28 11:44:43 -0500 | [diff] [blame] | 115 | <manifest> |
| 116 | <addDefaultImplementationEntries>false</addDefaultImplementationEntries> |
| 117 | <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries> |
| 118 | </manifest> |
| 119 | <manifestEntries> |
| 120 | <Implementation-Title>${implementation.title}</Implementation-Title> |
| 121 | <Implementation-URL>${implementation.url}</Implementation-URL> |
| 122 | <Implementation-Version>${implementation.version}</Implementation-Version> |
| 123 | <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor> |
| 124 | </manifestEntries> |
| 125 | </archive> |
Michael Blow | c96bb1f | 2017-01-16 16:31:54 -0500 | [diff] [blame] | 126 | </configuration> |
| 127 | </plugin> |
| 128 | <plugin> |
| 129 | <groupId>org.apache.maven.plugins</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 130 | <artifactId>maven-surefire-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 131 | <configuration> |
| 132 | <failIfNoTests>false</failIfNoTests> |
| 133 | <systemPropertyVariables> |
| 134 | <skipFredSlowTests>true</skipFredSlowTests> |
Murtadha Hubail | 06ca279 | 2018-01-16 00:12:27 +0300 | [diff] [blame] | 135 | <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 136 | </systemPropertyVariables> |
| 137 | <forkCount>1</forkCount> |
| 138 | <reuseForks>false</reuseForks> |
| 139 | <argLine> |
| 140 | -enableassertions -Xmx${test.heap.size}m |
| 141 | -Dfile.encoding=UTF-8 |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 142 | -DrunSlowAQLTests=${runSlowAQLTests} |
| 143 | -Xdebug |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 144 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=${debug.suspend.flag} |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 145 | ${coverageArgLine} |
| 146 | </argLine> |
| 147 | <includes> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 148 | <include>${test.includes}</include> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 149 | </includes> |
| 150 | <excludes> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 151 | <exclude>${test.excludes}</exclude> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 152 | </excludes> |
Michael Blow | dd920be | 2017-06-07 15:04:33 -0400 | [diff] [blame] | 153 | <skipTests>${skip.surefire.tests}</skipTests> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 154 | </configuration> |
| 155 | </plugin> |
| 156 | <plugin> |
Chris Hillery | 14796d1 | 2016-06-08 02:39:23 -0700 | [diff] [blame] | 157 | <groupId>org.apache.maven.plugins</groupId> |
| 158 | <artifactId>maven-failsafe-plugin</artifactId> |
Chris Hillery | 14796d1 | 2016-06-08 02:39:23 -0700 | [diff] [blame] | 159 | <configuration> |
| 160 | <runOrder>alphabetical</runOrder> |
Michael Blow | 10a7486 | 2017-05-23 16:55:39 -0400 | [diff] [blame] | 161 | <forkCount>1</forkCount> |
| 162 | <reuseForks>false</reuseForks> |
Chris Hillery | 14796d1 | 2016-06-08 02:39:23 -0700 | [diff] [blame] | 163 | <argLine>${coverageArgLine}</argLine> |
Michael Blow | 1195234 | 2018-01-10 20:11:43 -0500 | [diff] [blame] | 164 | <systemProperties> |
| 165 | <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile> |
| 166 | </systemProperties> |
Michael Blow | e30c9d3 | 2018-01-20 09:42:19 -0500 | [diff] [blame] | 167 | <includes> |
| 168 | <include>${itest.includes}</include> |
| 169 | </includes> |
| 170 | <excludes> |
| 171 | <exclude>${itest.excludes}</exclude> |
| 172 | </excludes> |
Chris Hillery | 14796d1 | 2016-06-08 02:39:23 -0700 | [diff] [blame] | 173 | </configuration> |
| 174 | <executions> |
| 175 | <execution> |
| 176 | <goals> |
| 177 | <goal>integration-test</goal> |
| 178 | <goal>verify</goal> |
| 179 | </goals> |
| 180 | </execution> |
| 181 | </executions> |
| 182 | </plugin> |
| 183 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 184 | <groupId>org.apache.rat</groupId> |
| 185 | <artifactId>apache-rat-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 186 | <executions> |
| 187 | <execution> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 188 | <phase>validate</phase> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 189 | <goals> |
| 190 | <goal>check</goal> |
| 191 | </goals> |
| 192 | </execution> |
| 193 | </executions> |
| 194 | <configuration> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 195 | <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers> |
| 196 | <consoleOutput>true</consoleOutput> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 197 | <licenses> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 198 | <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20"/> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 199 | </licenses> |
| 200 | <licenseFamilies> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 201 | <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 202 | </licenseFamilies> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 203 | <excludeSubProjects>true</excludeSubProjects> |
| 204 | <excludes combine.children="append"> |
| 205 | <exclude>src/main/licenses/**</exclude> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 206 | <exclude>**/*.iml</exclude> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 207 | <exclude>**/*.json</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 208 | <exclude>**/*.adm</exclude> |
Michael Blow | f4f2898 | 2021-02-27 09:50:43 -0500 | [diff] [blame] | 209 | <exclude>**/*.regexadm</exclude> |
| 210 | <exclude>**/*.regexjson</exclude> |
Ian Maxon | 5dcf139 | 2017-12-14 12:27:45 -0800 | [diff] [blame] | 211 | <exclude>**/*.template</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 212 | <exclude>asterix-installer/**</exclude> <!-- in case -DskipInstaller --> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 213 | </excludes> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 214 | </configuration> |
| 215 | </plugin> |
| 216 | <plugin> |
| 217 | <groupId>org.apache.maven.plugins</groupId> |
| 218 | <artifactId>maven-compiler-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 219 | <configuration> |
Michael Blow | cedd961 | 2018-07-25 13:25:02 -0400 | [diff] [blame] | 220 | <source>${source.jdk.version}</source> |
| 221 | <target>${target.jdk.version}</target> |
Michael Blow | 2b05701 | 2017-12-07 22:20:39 -0500 | [diff] [blame] | 222 | <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 223 | </configuration> |
| 224 | </plugin> |
| 225 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 226 | <groupId>org.apache.maven.plugins</groupId> |
| 227 | <artifactId>maven-remote-resources-plugin</artifactId> |
| 228 | <executions> |
| 229 | <execution> |
| 230 | <goals> |
| 231 | <goal>process</goal> |
| 232 | </goals> |
| 233 | <configuration> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 234 | <resourceBundles> |
| 235 | <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 236 | </resourceBundles> |
Michael Blow | c96bb1f | 2017-01-16 16:31:54 -0500 | [diff] [blame] | 237 | <properties> |
| 238 | <projectName>Apache AsterixDB - ${project.name}</projectName> |
| 239 | </properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 240 | </configuration> |
| 241 | </execution> |
| 242 | </executions> |
| 243 | </plugin> |
| 244 | <plugin> |
| 245 | <groupId>org.apache.maven.plugins</groupId> |
Michael Blow | d1e2a99 | 2016-06-14 12:27:46 -0400 | [diff] [blame] | 246 | <artifactId>maven-checkstyle-plugin</artifactId> |
Michael Blow | 6a2a436 | 2019-03-27 14:31:16 -0400 | [diff] [blame] | 247 | <version>3.0.0</version> |
Michael Blow | d1e2a99 | 2016-06-14 12:27:46 -0400 | [diff] [blame] | 248 | <executions> |
| 249 | <execution> |
| 250 | <id>verify-style</id> |
Michael Blow | 6a2a436 | 2019-03-27 14:31:16 -0400 | [diff] [blame] | 251 | <phase>process-sources</phase> |
Michael Blow | d1e2a99 | 2016-06-14 12:27:46 -0400 | [diff] [blame] | 252 | <goals> |
| 253 | <goal>check</goal> |
| 254 | </goals> |
| 255 | </execution> |
| 256 | </executions> |
| 257 | <configuration> |
| 258 | <logViolationsToConsole>true</logViolationsToConsole> |
| 259 | <checkstyleRules> |
| 260 | <module name="Checker"> |
| 261 | <!-- Checks for whitespace --> |
| 262 | <!-- See http://checkstyle.sf.net/config_whitespace.html --> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 263 | <module name="FileTabCharacter" /> |
Michael Blow | 6a2a436 | 2019-03-27 14:31:16 -0400 | [diff] [blame] | 264 | <module name="TreeWalker"> |
| 265 | <module name="AvoidStarImport"> |
| 266 | <property name="allowStaticMemberImports" value="true"/> |
| 267 | </module> |
| 268 | </module> |
Michael Blow | d1e2a99 | 2016-06-14 12:27:46 -0400 | [diff] [blame] | 269 | </module> |
| 270 | </checkstyleRules> |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 271 | <includes>**/*.java,**/*.jj</includes> |
| 272 | <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.aql,**/*.sqlpp,**/*.sh</resourceIncludes> |
Ian Maxon | 3ae6ef0 | 2018-05-24 18:32:47 -0700 | [diff] [blame] | 273 | <resourceExcludes>**/node_modules/**/*</resourceExcludes> |
Michael Blow | d1e2a99 | 2016-06-14 12:27:46 -0400 | [diff] [blame] | 274 | <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories> |
| 275 | </configuration> |
| 276 | </plugin> |
Michael Blow | f53c1c6 | 2016-06-17 16:51:59 -0400 | [diff] [blame] | 277 | <plugin> |
| 278 | <groupId>org.apache.maven.plugins</groupId> |
Michael Blow | e2307cf | 2020-04-24 16:14:03 -0400 | [diff] [blame] | 279 | <artifactId>maven-antrun-plugin</artifactId> |
Michael Blow | f53c1c6 | 2016-06-17 16:51:59 -0400 | [diff] [blame] | 280 | <executions> |
| 281 | <execution> |
Michael Blow | e2307cf | 2020-04-24 16:14:03 -0400 | [diff] [blame] | 282 | <id>check-pom-packaging</id> |
| 283 | <phase>validate</phase> |
| 284 | <goals> |
| 285 | <goal>run</goal> |
| 286 | </goals> |
| 287 | <configuration> |
| 288 | <exportAntProperties>true</exportAntProperties> |
| 289 | <target xmlns:unless="ant:unless"> |
| 290 | <condition property="skipPomEnforcement"> |
| 291 | <not><equals arg1="${project.packaging}" arg2="pom"/></not> |
| 292 | </condition> |
Michael Blow | 6db8b8e | 2021-06-28 06:23:53 -0400 | [diff] [blame] | 293 | <echo level="info" message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/> |
Michael Blow | e2307cf | 2020-04-24 16:14:03 -0400 | [diff] [blame] | 294 | </target> |
| 295 | </configuration> |
| 296 | </execution> |
| 297 | </executions> |
| 298 | </plugin> |
| 299 | <plugin> |
| 300 | <groupId>org.apache.maven.plugins</groupId> |
| 301 | <artifactId>maven-enforcer-plugin</artifactId> |
| 302 | <executions> |
| 303 | <execution> |
| 304 | <id>ensure-no-tests-for-pom-packaging</id> |
| 305 | <phase>validate</phase> |
| 306 | <goals> |
| 307 | <goal>enforce</goal> |
| 308 | </goals> |
| 309 | <configuration> |
| 310 | <rules> |
| 311 | <requireFilesDontExist> |
| 312 | <files> |
| 313 | <file>${project.build.testSourceDirectory}</file> |
| 314 | </files> |
| 315 | <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message> |
| 316 | </requireFilesDontExist> |
| 317 | </rules> |
| 318 | <skip>${skipPomEnforcement}</skip> |
| 319 | </configuration> |
| 320 | </execution> |
| 321 | <execution> |
Michael Blow | f53c1c6 | 2016-06-17 16:51:59 -0400 | [diff] [blame] | 322 | <id>enforce-versions</id> |
| 323 | <goals> |
| 324 | <goal>enforce</goal> |
| 325 | </goals> |
| 326 | <configuration> |
| 327 | <rules> |
| 328 | <requireMavenVersion> |
| 329 | <version>[3.3.9,)</version> |
| 330 | </requireMavenVersion> |
Ian Maxon | 4889f6b | 2021-05-05 02:08:27 -0700 | [diff] [blame] | 331 | <requireJavaVersion> |
| 332 | <version>[11,)</version> |
| 333 | </requireJavaVersion> |
| 334 | </rules> |
| 335 | </configuration> |
| 336 | </execution> |
| 337 | <execution> |
| 338 | <id>ensure-no-duplicate-deps</id> |
| 339 | <goals> |
| 340 | <goal>enforce</goal> |
| 341 | </goals> |
| 342 | <configuration> |
| 343 | <rules> |
| 344 | <banDuplicatePomDependencyVersions/> |
Michael Blow | f53c1c6 | 2016-06-17 16:51:59 -0400 | [diff] [blame] | 345 | </rules> |
| 346 | </configuration> |
| 347 | </execution> |
| 348 | </executions> |
| 349 | </plugin> |
Michael Blow | 29c1f1d | 2016-08-04 23:10:49 -0400 | [diff] [blame] | 350 | <plugin> |
| 351 | <groupId>org.apache.maven.plugins</groupId> |
| 352 | <artifactId>maven-dependency-plugin</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 353 | <configuration> |
| 354 | <failOnWarning>true</failOnWarning> |
| 355 | <outputXML>true</outputXML> |
| 356 | </configuration> |
Michael Blow | 29c1f1d | 2016-08-04 23:10:49 -0400 | [diff] [blame] | 357 | </plugin> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 358 | <plugin> |
| 359 | <groupId>org.apache.maven.plugins</groupId> |
| 360 | <artifactId>maven-resources-plugin</artifactId> |
| 361 | <executions> |
| 362 | <execution> |
| 363 | <id>default-testResources</id> |
| 364 | <goals> |
| 365 | <goal>testResources</goal> |
| 366 | </goals> |
| 367 | <configuration> |
| 368 | <skip>${skip.testResources}</skip> |
| 369 | </configuration> |
| 370 | </execution> |
| 371 | </executions> |
| 372 | </plugin> |
Michael Blow | cb9ca97 | 2018-01-27 23:03:30 -0500 | [diff] [blame] | 373 | <plugin> |
| 374 | <groupId>net.revelc.code.formatter</groupId> |
| 375 | <artifactId>formatter-maven-plugin</artifactId> |
| 376 | <executions> |
| 377 | <execution> |
| 378 | <goals> |
| 379 | <goal>${source-format.goal}</goal> |
| 380 | </goals> |
| 381 | </execution> |
| 382 | </executions> |
| 383 | <configuration> |
| 384 | <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile> |
| 385 | <skipFormatting>${source-format.skip}</skipFormatting> |
| 386 | </configuration> |
| 387 | </plugin> |
Michael Blow | ef85fb0 | 2019-03-22 13:40:35 -0400 | [diff] [blame] | 388 | <plugin> |
| 389 | <groupId>net.revelc.code</groupId> |
| 390 | <artifactId>impsort-maven-plugin</artifactId> |
| 391 | <executions> |
| 392 | <execution> |
| 393 | <goals> |
| 394 | <goal>${import-sort.goal}</goal> |
| 395 | </goals> |
| 396 | </execution> |
| 397 | </executions> |
| 398 | <configuration> |
| 399 | <groups>java,javax,org,com,*</groups> |
| 400 | <removeUnused>true</removeUnused> |
| 401 | <skip>${import-sort.skip}</skip> |
| 402 | </configuration> |
| 403 | </plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 404 | </plugins> |
| 405 | <pluginManagement> |
| 406 | <plugins> |
Till Westmann | 65da60c | 2017-02-22 13:17:49 -0800 | [diff] [blame] | 407 | <plugin> |
| 408 | <groupId>org.apache.maven.plugins</groupId> |
| 409 | <artifactId>maven-compiler-plugin</artifactId> |
Michael Blow | 3477a2b | 2018-10-04 17:17:35 -0400 | [diff] [blame] | 410 | <version>3.8.0</version> |
Till Westmann | 65da60c | 2017-02-22 13:17:49 -0800 | [diff] [blame] | 411 | </plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 412 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 413 | <plugin> |
| 414 | <groupId>org.eclipse.m2e</groupId> |
| 415 | <artifactId>lifecycle-mapping</artifactId> |
| 416 | <version>1.0.0</version> |
| 417 | <configuration> |
| 418 | <lifecycleMappingMetadata> |
| 419 | <pluginExecutions> |
| 420 | <pluginExecution> |
| 421 | <pluginExecutionFilter> |
| 422 | <groupId>org.apache.maven.plugins</groupId> |
| 423 | <artifactId>maven-plugin-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 424 | <versionRange>[0.0,)</versionRange> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 425 | <goals> |
| 426 | <goal>descriptor</goal> |
| 427 | </goals> |
| 428 | </pluginExecutionFilter> |
| 429 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 430 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 431 | </action> |
| 432 | </pluginExecution> |
| 433 | <pluginExecution> |
| 434 | <pluginExecutionFilter> |
| 435 | <groupId>org.apache.asterix</groupId> |
| 436 | <artifactId>record-manager-generator-maven-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 437 | <versionRange>[0.0,)</versionRange> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 438 | <goals> |
| 439 | <goal>generate-record-manager</goal> |
| 440 | </goals> |
| 441 | </pluginExecutionFilter> |
| 442 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 443 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 444 | </action> |
| 445 | </pluginExecution> |
| 446 | <pluginExecution> |
| 447 | <pluginExecutionFilter> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 448 | <groupId>org.apache.maven.plugins</groupId> |
| 449 | <artifactId>maven-jar-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 450 | <versionRange>[0.0,)</versionRange> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 451 | <goals> |
| 452 | <goal>test-jar</goal> |
| 453 | </goals> |
| 454 | </pluginExecutionFilter> |
| 455 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 456 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 457 | </action> |
| 458 | </pluginExecution> |
| 459 | <pluginExecution> |
| 460 | <pluginExecutionFilter> |
| 461 | <groupId>org.apache.rat</groupId> |
| 462 | <artifactId>apache-rat-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 463 | <versionRange>[0.0,)</versionRange> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 464 | <goals> |
| 465 | <goal>check</goal> |
| 466 | </goals> |
| 467 | </pluginExecutionFilter> |
| 468 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 469 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 470 | </action> |
| 471 | </pluginExecution> |
Michael Blow | 8f2cf24 | 2016-06-30 01:45:39 -0400 | [diff] [blame] | 472 | <pluginExecution> |
| 473 | <pluginExecutionFilter> |
| 474 | <groupId>org.apache.maven.plugins</groupId> |
| 475 | <artifactId>maven-checkstyle-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 476 | <versionRange>[0.0,)</versionRange> |
Michael Blow | 8f2cf24 | 2016-06-30 01:45:39 -0400 | [diff] [blame] | 477 | <goals> |
| 478 | <goal>check</goal> |
| 479 | </goals> |
| 480 | </pluginExecutionFilter> |
| 481 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 482 | <ignore /> |
Michael Blow | 8f2cf24 | 2016-06-30 01:45:39 -0400 | [diff] [blame] | 483 | </action> |
| 484 | </pluginExecution> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 485 | <pluginExecution> |
| 486 | <pluginExecutionFilter> |
| 487 | <groupId>org.codehaus.mojo</groupId> |
| 488 | <artifactId>javacc-maven-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 489 | <versionRange>[0.0,)</versionRange> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 490 | <goals> |
| 491 | <goal>jjdoc</goal> |
| 492 | </goals> |
| 493 | </pluginExecutionFilter> |
| 494 | <action> |
Ian Maxon | 4383bdde | 2017-01-18 18:52:01 -0800 | [diff] [blame] | 495 | <ignore /> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 496 | </action> |
| 497 | </pluginExecution> |
Taewoo Kim | 6ae219d | 2016-10-19 17:32:35 -0700 | [diff] [blame] | 498 | <pluginExecution> |
| 499 | <pluginExecutionFilter> |
| 500 | <groupId>org.apache.maven.plugins</groupId> |
| 501 | <artifactId>maven-dependency-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 502 | <versionRange>[0.0,)</versionRange> |
Taewoo Kim | 6ae219d | 2016-10-19 17:32:35 -0700 | [diff] [blame] | 503 | <goals> |
| 504 | <goal>analyze-only</goal> |
| 505 | </goals> |
| 506 | </pluginExecutionFilter> |
| 507 | <action> |
Ian Maxon | 4383bdde | 2017-01-18 18:52:01 -0800 | [diff] [blame] | 508 | <ignore /> |
Taewoo Kim | 6ae219d | 2016-10-19 17:32:35 -0700 | [diff] [blame] | 509 | </action> |
| 510 | </pluginExecution> |
Taewoo Kim | a252d78 | 2018-01-30 13:29:07 -0800 | [diff] [blame] | 511 | <pluginExecution> |
| 512 | <pluginExecutionFilter> |
Wail Alkowaileet | f984ced | 2020-10-16 12:44:42 -0700 | [diff] [blame] | 513 | <groupId>net.revelc.code.formatter</groupId> |
| 514 | <artifactId>formatter-maven-plugin</artifactId> |
| 515 | <versionRange>[2.0.1,)</versionRange> |
| 516 | <goals> |
| 517 | <goal>format</goal> |
| 518 | </goals> |
| 519 | </pluginExecutionFilter> |
| 520 | <action> |
| 521 | <ignore></ignore> |
| 522 | </action> |
Taewoo Kim | a252d78 | 2018-01-30 13:29:07 -0800 | [diff] [blame] | 523 | </pluginExecution> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 524 | </pluginExecutions> |
| 525 | </lifecycleMappingMetadata> |
| 526 | </configuration> |
| 527 | </plugin> |
Ian Maxon | 99fed93 | 2017-02-09 19:11:39 -0800 | [diff] [blame] | 528 | <plugin> |
Michael Blow | 0aae183 | 2017-10-29 11:59:47 -0400 | [diff] [blame] | 529 | <groupId>org.codehaus.mojo</groupId> |
| 530 | <artifactId>versions-maven-plugin</artifactId> |
| 531 | <version>2.5</version> |
Ian Maxon | 99fed93 | 2017-02-09 19:11:39 -0800 | [diff] [blame] | 532 | </plugin> |
| 533 | <plugin> |
Michael Blow | 0aae183 | 2017-10-29 11:59:47 -0400 | [diff] [blame] | 534 | <groupId>org.apache.maven.plugins</groupId> |
| 535 | <artifactId>maven-scm-plugin</artifactId> |
| 536 | <version>1.9.5</version> |
Ian Maxon | 99fed93 | 2017-02-09 19:11:39 -0800 | [diff] [blame] | 537 | </plugin> |
Michael Blow | a23fac1 | 2017-03-14 12:39:12 -0400 | [diff] [blame] | 538 | <plugin> |
| 539 | <groupId>org.codehaus.mojo</groupId> |
| 540 | <artifactId>appassembler-maven-plugin</artifactId> |
| 541 | <version>2.0.0</version> |
| 542 | </plugin> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 543 | <plugin> |
| 544 | <groupId>org.apache.rat</groupId> |
| 545 | <artifactId>apache-rat-plugin</artifactId> |
| 546 | <version>0.12</version> |
| 547 | </plugin> |
Michael Blow | 10a7486 | 2017-05-23 16:55:39 -0400 | [diff] [blame] | 548 | <plugin> |
| 549 | <groupId>org.apache.maven.plugins</groupId> |
| 550 | <artifactId>maven-surefire-plugin</artifactId> |
Ian Maxon | 4889f6b | 2021-05-05 02:08:27 -0700 | [diff] [blame] | 551 | <version>3.0.0-M5</version> |
Michael Blow | 10a7486 | 2017-05-23 16:55:39 -0400 | [diff] [blame] | 552 | </plugin> |
| 553 | <plugin> |
| 554 | <groupId>org.apache.maven.plugins</groupId> |
| 555 | <artifactId>maven-failsafe-plugin</artifactId> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 556 | <version>2.21.0</version> |
Michael Blow | 10a7486 | 2017-05-23 16:55:39 -0400 | [diff] [blame] | 557 | </plugin> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 558 | <plugin> |
| 559 | <groupId>org.apache.hyracks</groupId> |
| 560 | <artifactId>license-automation-plugin</artifactId> |
| 561 | <version>${hyracks.version}</version> |
Emilio Jose Coronado Lopez | 1cb814b | 2017-12-29 21:19:26 +0100 | [diff] [blame] | 562 | <configuration> |
| 563 | <argLine>-Xmx2048m</argLine> |
| 564 | </configuration> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 565 | </plugin> |
Michael Blow | 0aae183 | 2017-10-29 11:59:47 -0400 | [diff] [blame] | 566 | <plugin> |
| 567 | <groupId>org.apache.maven.plugins</groupId> |
| 568 | <artifactId>maven-assembly-plugin</artifactId> |
| 569 | <version>3.1.0</version> |
| 570 | </plugin> |
| 571 | <plugin> |
| 572 | <groupId>org.apache.maven.plugins</groupId> |
| 573 | <artifactId>maven-antrun-plugin</artifactId> |
Michael Blow | 6db8b8e | 2021-06-28 06:23:53 -0400 | [diff] [blame] | 574 | <version>3.0.0</version> |
Michael Blow | 0aae183 | 2017-10-29 11:59:47 -0400 | [diff] [blame] | 575 | </plugin> |
| 576 | <plugin> |
| 577 | <groupId>org.apache.maven.plugins</groupId> |
| 578 | <artifactId>maven-clean-plugin</artifactId> |
| 579 | <version>3.0.0</version> |
| 580 | </plugin> |
| 581 | <plugin> |
| 582 | <groupId>org.apache.maven.plugins</groupId> |
| 583 | <artifactId>maven-jar-plugin</artifactId> |
| 584 | <version>3.0.2</version> |
| 585 | </plugin> |
| 586 | <plugin> |
| 587 | <groupId>org.codehaus.mojo</groupId> |
| 588 | <artifactId>build-helper-maven-plugin</artifactId> |
| 589 | <version>3.0.0</version> |
| 590 | </plugin> |
| 591 | <plugin> |
| 592 | <groupId>org.apache.maven.plugins</groupId> |
| 593 | <artifactId>maven-resources-plugin</artifactId> |
| 594 | <version>3.0.2</version> |
| 595 | </plugin> |
| 596 | <plugin> |
| 597 | <groupId>org.apache.maven.plugins</groupId> |
| 598 | <artifactId>maven-dependency-plugin</artifactId> |
Ian Maxon | 4889f6b | 2021-05-05 02:08:27 -0700 | [diff] [blame] | 599 | <version>3.1.2</version> |
Michael Blow | 0aae183 | 2017-10-29 11:59:47 -0400 | [diff] [blame] | 600 | </plugin> |
Michael Blow | 918c5b1 | 2017-10-30 14:51:13 -0400 | [diff] [blame] | 601 | <plugin> |
| 602 | <groupId>org.apache.maven.plugins</groupId> |
| 603 | <artifactId>maven-javadoc-plugin</artifactId> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 604 | <version>3.0.1</version> |
Michael Blow | 918c5b1 | 2017-10-30 14:51:13 -0400 | [diff] [blame] | 605 | </plugin> |
| 606 | <plugin> |
| 607 | <groupId>org.apache.maven.plugins</groupId> |
| 608 | <artifactId>maven-plugin-plugin</artifactId> |
Michael Blow | 0de9081 | 2019-08-23 16:27:29 -0400 | [diff] [blame] | 609 | <version>3.6.0</version> |
Michael Blow | 918c5b1 | 2017-10-30 14:51:13 -0400 | [diff] [blame] | 610 | </plugin> |
| 611 | <plugin> |
| 612 | <groupId>org.apache.maven.plugins</groupId> |
| 613 | <artifactId>maven-site-plugin</artifactId> |
Till Westmann | 20c1806 | 2018-05-22 14:02:03 -0700 | [diff] [blame] | 614 | <version>3.7.1</version> |
Michael Blow | 918c5b1 | 2017-10-30 14:51:13 -0400 | [diff] [blame] | 615 | </plugin> |
| 616 | <plugin> |
| 617 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 618 | <artifactId>maven-jaxb2-plugin</artifactId> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 619 | <version>0.14.0</version> |
Michael Blow | 982dfc8 | 2021-12-07 14:51:36 -0500 | [diff] [blame] | 620 | <dependencies> |
| 621 | <dependency> |
| 622 | <groupId>org.glassfish.jaxb</groupId> |
| 623 | <artifactId>jaxb-runtime</artifactId> |
| 624 | <version>2.3.5</version> |
| 625 | </dependency> |
| 626 | </dependencies> |
Michael Blow | 918c5b1 | 2017-10-30 14:51:13 -0400 | [diff] [blame] | 627 | </plugin> |
| 628 | <plugin> |
| 629 | <groupId>pl.project13.maven</groupId> |
| 630 | <artifactId>git-commit-id-plugin</artifactId> |
| 631 | <version>2.2.3</version> |
| 632 | </plugin> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 633 | <plugin> |
| 634 | <groupId>org.codehaus.mojo</groupId> |
| 635 | <artifactId>javacc-maven-plugin</artifactId> |
| 636 | <version>2.6</version> |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 637 | <dependencies> |
| 638 | <dependency> |
| 639 | <groupId>net.java.dev.javacc</groupId> |
| 640 | <artifactId>javacc</artifactId> |
| 641 | <version>6.1.2</version> |
| 642 | </dependency> |
| 643 | </dependencies> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 644 | </plugin> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 645 | <plugin> |
| 646 | <groupId>net.revelc.code.formatter</groupId> |
| 647 | <artifactId>formatter-maven-plugin</artifactId> |
| 648 | <version>2.0.1</version> |
| 649 | </plugin> |
Michael Blow | ef85fb0 | 2019-03-22 13:40:35 -0400 | [diff] [blame] | 650 | <plugin> |
| 651 | <groupId>net.revelc.code</groupId> |
| 652 | <artifactId>impsort-maven-plugin</artifactId> |
| 653 | <version>1.2.0</version> |
| 654 | </plugin> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 655 | <plugin> |
| 656 | <groupId>org.codehaus.mojo</groupId> |
| 657 | <artifactId>exec-maven-plugin</artifactId> |
| 658 | <version>1.6.0</version> |
| 659 | </plugin> |
Ian Maxon | 94eb3c2 | 2021-06-03 12:31:18 -0700 | [diff] [blame] | 660 | <plugin> |
Ian Maxon | 4889f6b | 2021-05-05 02:08:27 -0700 | [diff] [blame] | 661 | <groupId>org.apache.maven.plugins</groupId> |
| 662 | <artifactId>maven-enforcer-plugin</artifactId> |
| 663 | <version>3.0.0-M3</version> |
| 664 | </plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 665 | </plugins> |
| 666 | </pluginManagement> |
| 667 | </build> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 668 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 669 | <scm> |
Till Westmann | 81b1f21 | 2016-07-08 14:44:14 -0700 | [diff] [blame] | 670 | <connection>scm:git:https://github.com/apache/asterixdb</connection> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 671 | <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection> |
Till Westmann | 81b1f21 | 2016-07-08 14:44:14 -0700 | [diff] [blame] | 672 | <url>https://github.com/apache/asterixdb</url> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 673 | <tag>HEAD</tag> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 674 | </scm> |
| 675 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 676 | <profiles> |
| 677 | <profile> |
| 678 | <id>opt-modules</id> |
| 679 | <activation> |
| 680 | <file> |
| 681 | <exists>asterix-opt/pom.xml</exists> |
| 682 | </file> |
| 683 | </activation> |
| 684 | <modules> |
| 685 | <module>asterix-opt</module> |
| 686 | </modules> |
| 687 | </profile> |
| 688 | <profile> |
| 689 | <id>slow-aql-tests</id> |
| 690 | <properties> |
| 691 | <runSlowAQLTests>true</runSlowAQLTests> |
| 692 | </properties> |
| 693 | </profile> |
| 694 | <profile> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 695 | <id>python-udfs</id> |
| 696 | <activation> |
| 697 | <file> |
| 698 | <exists>${python.path}</exists> |
| 699 | </file> |
| 700 | </activation> |
| 701 | <properties> |
Ian Maxon | 01302d5 | 2021-02-11 11:09:48 -0800 | [diff] [blame] | 702 | <prepare-env.stage>process-classes</prepare-env.stage> |
| 703 | <shim.stage>process-classes</shim.stage> |
| 704 | <pytestlib.stage>generate-test-resources</pytestlib.stage> |
| 705 | <global.itest.excludes/> |
| 706 | </properties> |
| 707 | </profile> |
| 708 | <profile> |
| 709 | <id>python-udf-test-only</id> |
| 710 | <activation> |
| 711 | <property> |
| 712 | <name>no.shim</name> |
| 713 | </property> |
| 714 | <file> |
| 715 | <exists>${python.path}</exists> |
| 716 | </file> |
| 717 | </activation> |
| 718 | <properties> |
| 719 | <prepare-env.stage>process-classes</prepare-env.stage> |
| 720 | <shim.stage>none</shim.stage> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 721 | <pytestlib.stage>generate-test-resources</pytestlib.stage> |
| 722 | <global.itest.excludes/> |
| 723 | </properties> |
| 724 | </profile> |
| 725 | <profile> |
Ian Maxon | 0bb11aa | 2021-07-07 14:55:59 -0700 | [diff] [blame] | 726 | <id>skip-npm</id> |
| 727 | <activation> |
| 728 | <property> |
| 729 | <name>skip.npm</name> |
| 730 | <value>true</value> |
| 731 | </property> |
| 732 | </activation> |
| 733 | <properties> |
| 734 | <skip-npm-touch.stage>process-sources</skip-npm-touch.stage> |
| 735 | </properties> |
| 736 | </profile> |
| 737 | <profile> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 738 | <id>invalid-tests</id> |
| 739 | <properties> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 740 | <invalid.tests /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 741 | </properties> |
| 742 | </profile> |
| 743 | <profile> |
| 744 | <id>32bitvm</id> |
| 745 | <activation> |
| 746 | <property> |
| 747 | <name>sun.arch.data.model</name> |
| 748 | <value>32</value> |
| 749 | </property> |
| 750 | </activation> |
| 751 | <properties> |
Ian Maxon | 4889f6b | 2021-05-05 02:08:27 -0700 | [diff] [blame] | 752 | <test.heap.size>4096</test.heap.size> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 753 | </properties> |
| 754 | </profile> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 755 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 756 | <profile> |
| 757 | <id>64bitvm</id> |
| 758 | <activation> |
| 759 | <property> |
| 760 | <name>sun.arch.data.model</name> |
| 761 | <value>64</value> |
| 762 | </property> |
| 763 | </activation> |
| 764 | <properties> |
Ian Maxon | 4889f6b | 2021-05-05 02:08:27 -0700 | [diff] [blame] | 765 | <test.heap.size>4096</test.heap.size> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 766 | </properties> |
| 767 | </profile> |
| 768 | <profile> |
Michael Blow | 916dce4 | 2017-05-23 13:19:12 -0400 | [diff] [blame] | 769 | <id>skip-assembly</id> |
Michael Blow | 1e34ec2 | 2016-05-15 19:15:40 -0700 | [diff] [blame] | 770 | <activation> |
| 771 | <file> |
Michael Blow | 916dce4 | 2017-05-23 13:19:12 -0400 | [diff] [blame] | 772 | <missing>src/main/assembly/source.xml</missing> |
Michael Blow | 1e34ec2 | 2016-05-15 19:15:40 -0700 | [diff] [blame] | 773 | </file> |
| 774 | </activation> |
Michael Blow | 916dce4 | 2017-05-23 13:19:12 -0400 | [diff] [blame] | 775 | <properties> |
| 776 | <skip.assembly>true</skip.assembly> |
| 777 | </properties> |
| 778 | </profile> |
| 779 | <profile> |
| 780 | <id>release</id> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 781 | <build> |
| 782 | <plugins> |
| 783 | <plugin> |
| 784 | <groupId>org.apache.maven.plugins</groupId> |
Michael Blow | 38ca962 | 2018-02-28 11:44:43 -0500 | [diff] [blame] | 785 | <artifactId>maven-jar-plugin</artifactId> |
| 786 | <configuration> |
| 787 | <archive> |
Michael Blow | aed96f0 | 2019-03-01 18:47:19 -0500 | [diff] [blame] | 788 | <addMavenDescriptor>true</addMavenDescriptor> |
Michael Blow | 38ca962 | 2018-02-28 11:44:43 -0500 | [diff] [blame] | 789 | <manifest> |
| 790 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 791 | <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries> |
| 792 | </manifest> |
| 793 | </archive> |
| 794 | </configuration> |
| 795 | </plugin> |
| 796 | <plugin> |
| 797 | <groupId>org.apache.maven.plugins</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 798 | <artifactId>maven-assembly-plugin</artifactId> |
| 799 | <!-- We override the configuration plugin to override the descriptor to use for building |
| 800 | the source release zip. Specifically, we would like to control the inclusions/exclusions. |
| 801 | For example, we exclude the KEYS file from the zip --> |
| 802 | <executions> |
| 803 | <execution> |
| 804 | <!-- Use this id to match the id mentioned in the assembly plugin configuration in |
| 805 | the apache parent POM under the apache-release profile --> |
| 806 | <id>source-release-assembly</id> |
| 807 | <phase>package</phase> |
| 808 | <goals> |
| 809 | <goal>single</goal> |
| 810 | </goals> |
| 811 | <!-- combine.self should be override to replace the configuration in the parent POM --> |
| 812 | <configuration combine.self="override"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 813 | <descriptors> |
| 814 | <descriptor>src/main/assembly/source.xml</descriptor> |
| 815 | </descriptors> |
Michael Blow | 916dce4 | 2017-05-23 13:19:12 -0400 | [diff] [blame] | 816 | <skipAssembly>${skip.assembly}</skipAssembly> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 817 | </configuration> |
| 818 | </execution> |
| 819 | </executions> |
| 820 | </plugin> |
Ian Maxon | 99fed93 | 2017-02-09 19:11:39 -0800 | [diff] [blame] | 821 | <plugin> |
| 822 | <groupId>org.apache.maven.plugins</groupId> |
| 823 | <artifactId>maven-gpg-plugin</artifactId> |
| 824 | <version>1.6</version> |
| 825 | <executions> |
| 826 | <execution> |
| 827 | <id>sign-artifacts</id> |
| 828 | <phase>verify</phase> |
| 829 | <goals> |
| 830 | <goal>sign</goal> |
| 831 | </goals> |
| 832 | </execution> |
| 833 | </executions> |
| 834 | </plugin> |
| 835 | </plugins> |
| 836 | </build> |
| 837 | </profile> |
| 838 | <profile> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 839 | <id>coverage</id> |
| 840 | <activation> |
| 841 | <property> |
| 842 | <name>coverage</name> |
| 843 | </property> |
| 844 | </activation> |
| 845 | <build> |
| 846 | <plugins> |
| 847 | <plugin> |
| 848 | <groupId>org.jacoco</groupId> |
| 849 | <artifactId>jacoco-maven-plugin</artifactId> |
| 850 | <version>${jacoco.version}</version> |
| 851 | <executions> |
| 852 | <execution> |
| 853 | <id>default-prepare-agent</id> |
| 854 | <goals> |
| 855 | <goal>prepare-agent</goal> |
| 856 | </goals> |
| 857 | <configuration> |
| 858 | <propertyName>coverageArgLine</propertyName> |
| 859 | </configuration> |
| 860 | </execution> |
| 861 | <execution> |
| 862 | <id>default-prepare-agent-integration</id> |
| 863 | <goals> |
| 864 | <goal>prepare-agent-integration</goal> |
| 865 | </goals> |
| 866 | <configuration> |
| 867 | <propertyName>coverageArgLine</propertyName> |
| 868 | </configuration> |
| 869 | </execution> |
| 870 | </executions> |
| 871 | </plugin> |
| 872 | </plugins> |
| 873 | </build> |
| 874 | <properties> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 875 | <coverage /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 876 | </properties> |
| 877 | </profile> |
| 878 | <profile> |
| 879 | <id>no-coverage</id> |
| 880 | <activation> |
| 881 | <property> |
| 882 | <name>!coverage</name> |
| 883 | </property> |
| 884 | </activation> |
| 885 | <properties> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 886 | <coverageArgLine /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 887 | </properties> |
| 888 | </profile> |
| 889 | <profile> |
| 890 | <id>doclint-java8-disable</id> |
| 891 | <activation> |
| 892 | <jdk>[1.8,)</jdk> |
| 893 | </activation> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 894 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 895 | <build> |
| 896 | <plugins> |
| 897 | <plugin> |
| 898 | <groupId>org.apache.maven.plugins</groupId> |
| 899 | <artifactId>maven-javadoc-plugin</artifactId> |
| 900 | <configuration> |
| 901 | <additionalparam>-Xdoclint:none</additionalparam> |
| 902 | </configuration> |
| 903 | </plugin> |
| 904 | </plugins> |
| 905 | </build> |
| 906 | </profile> |
Michael Blow | 64d49fb | 2018-02-11 15:43:47 -0500 | [diff] [blame] | 907 | <profile> |
| 908 | <id>integration-tests-only</id> |
| 909 | <properties> |
| 910 | <test.includes/> |
| 911 | <failIfNoTests>false</failIfNoTests> |
| 912 | </properties> |
| 913 | </profile> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 914 | </profiles> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 915 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 916 | <modules> |
| 917 | <module>asterix-common</module> |
| 918 | <module>asterix-lang-common</module> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 919 | <module>asterix-lang-sqlpp</module> |
| 920 | <module>asterix-algebra</module> |
| 921 | <module>asterix-app</module> |
Ian Maxon | a7e8dbe | 2018-01-05 17:13:36 -0800 | [diff] [blame] | 922 | <module>asterix-dashboard</module> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 923 | <module>asterix-tools</module> |
| 924 | <module>asterix-transactions</module> |
| 925 | <module>asterix-runtime</module> |
| 926 | <module>asterix-om</module> |
| 927 | <module>asterix-external-data</module> |
| 928 | <module>asterix-examples</module> |
| 929 | <module>asterix-metadata</module> |
| 930 | <module>asterix-test-framework</module> |
| 931 | <module>asterix-maven-plugins</module> |
| 932 | <module>asterix-server</module> |
Ian Maxon | a07db5d | 2018-08-30 19:10:51 -0700 | [diff] [blame] | 933 | <module>asterix-docker</module> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 934 | <module>asterix-doc</module> |
| 935 | <module>asterix-fuzzyjoin</module> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 936 | <module>asterix-replication</module> |
Yingyi Bu | 73715d8 | 2017-02-15 11:16:52 -0800 | [diff] [blame] | 937 | <module>asterix-benchmark</module> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 938 | <module>asterix-coverage</module> |
Abdullah Alamoudi | 973a0d3 | 2016-07-22 14:38:56 +0300 | [diff] [blame] | 939 | <module>asterix-active</module> |
Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 940 | <module>asterix-client-helper</module> |
Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 941 | <module>asterix-license</module> |
Ahmed Eldawy | 8cc8825 | 2018-03-23 18:19:17 -0700 | [diff] [blame] | 942 | <module>asterix-geo</module> |
Armin Balalaie | 7087680 | 2018-12-06 12:10:50 -0800 | [diff] [blame] | 943 | <module>asterix-spidersilk</module> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 944 | </modules> |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 945 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 946 | <dependencyManagement> |
| 947 | <dependencies> |
| 948 | <dependency> |
Michael Blow | 204b295 | 2017-12-07 20:17:47 -0500 | [diff] [blame] | 949 | <groupId>org.apache.hyracks</groupId> |
| 950 | <artifactId>apache-hyracks</artifactId> |
| 951 | <version>${hyracks.version}</version> |
| 952 | <type>pom</type> |
| 953 | <scope>import</scope> |
| 954 | </dependency> |
| 955 | <dependency> |
Michael Blow | b29bd73 | 2017-01-16 11:44:39 -0500 | [diff] [blame] | 956 | <groupId>org.slf4j</groupId> |
| 957 | <artifactId>slf4j-simple</artifactId> |
Michael Blow | 55e1980 | 2022-01-18 21:11:26 -0500 | [diff] [blame] | 958 | <version>1.7.33</version> |
Michael Blow | b29bd73 | 2017-01-16 11:44:39 -0500 | [diff] [blame] | 959 | </dependency> |
| 960 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 961 | <groupId>org.apache.maven</groupId> |
| 962 | <artifactId>maven-plugin-api</artifactId> |
Michael Blow | 55e1980 | 2022-01-18 21:11:26 -0500 | [diff] [blame] | 963 | <version>3.8.4</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 964 | </dependency> |
| 965 | <dependency> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 966 | <groupId>org.apache.maven</groupId> |
| 967 | <artifactId>maven-model</artifactId> |
Michael Blow | 55e1980 | 2022-01-18 21:11:26 -0500 | [diff] [blame] | 968 | <version>3.8.4</version> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 969 | </dependency> |
| 970 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 971 | <groupId>org.apache.hadoop</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 972 | <artifactId>hadoop-client</artifactId> |
| 973 | <version>${hadoop.version}</version> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 974 | <exclusions> |
| 975 | <exclusion> |
| 976 | <groupId>log4j</groupId> |
| 977 | <artifactId>log4j</artifactId> |
| 978 | </exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 979 | <exclusion> |
| 980 | <groupId>org.slf4j</groupId> |
| 981 | <artifactId>slf4j-api</artifactId> |
| 982 | </exclusion> |
| 983 | <exclusion> |
| 984 | <groupId>org.slf4j</groupId> |
| 985 | <artifactId>slf4j-log4j12</artifactId> |
| 986 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 987 | </exclusions> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 988 | </dependency> |
| 989 | <dependency> |
| 990 | <groupId>org.apache.hadoop</groupId> |
| 991 | <artifactId>hadoop-hdfs</artifactId> |
| 992 | <version>${hadoop.version}</version> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 993 | <exclusions> |
| 994 | <exclusion> |
| 995 | <groupId>log4j</groupId> |
| 996 | <artifactId>log4j</artifactId> |
| 997 | </exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 998 | <exclusion> |
| 999 | <groupId>org.slf4j</groupId> |
| 1000 | <artifactId>slf4j-api</artifactId> |
| 1001 | </exclusion> |
| 1002 | <exclusion> |
| 1003 | <groupId>org.slf4j</groupId> |
| 1004 | <artifactId>slf4j-log4j12</artifactId> |
| 1005 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1006 | </exclusions> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1007 | </dependency> |
| 1008 | <dependency> |
| 1009 | <groupId>org.apache.hadoop</groupId> |
| 1010 | <artifactId>hadoop-common</artifactId> |
| 1011 | <version>${hadoop.version}</version> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 1012 | <exclusions> |
| 1013 | <exclusion> |
Hussain Towaileb | 0ee537c | 2021-09-21 04:10:10 +0300 | [diff] [blame] | 1014 | <groupId>com.nimbusds</groupId> |
| 1015 | <artifactId>nimbus-jose-jwt</artifactId> |
| 1016 | </exclusion> |
| 1017 | <exclusion> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 1018 | <groupId>commons-logging</groupId> |
| 1019 | <artifactId>commons-logging</artifactId> |
| 1020 | </exclusion> |
Michael Blow | 2a773fe | 2018-04-08 13:11:26 -0400 | [diff] [blame] | 1021 | <exclusion> |
Wail Alkowaileet | 087eaf5 | 2021-08-31 10:36:27 -0700 | [diff] [blame] | 1022 | <groupId>org.codehaus.woodstox</groupId> |
Michael Blow | 2a773fe | 2018-04-08 13:11:26 -0400 | [diff] [blame] | 1023 | <artifactId>stax-api</artifactId> |
| 1024 | </exclusion> |
| 1025 | <exclusion> |
| 1026 | <groupId>javax.xml.bind</groupId> |
| 1027 | <artifactId>jaxb-api</artifactId> |
| 1028 | </exclusion> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 1029 | <exclusion> |
| 1030 | <groupId>jdk.tools</groupId> |
| 1031 | <artifactId>jdk.tools</artifactId> |
| 1032 | </exclusion> |
Michael Blow | 8d04d7d | 2018-06-18 13:56:27 -0400 | [diff] [blame] | 1033 | <exclusion> |
| 1034 | <groupId>jdk.tools</groupId> |
| 1035 | <artifactId>jdk.tools</artifactId> |
| 1036 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1037 | <exclusion> |
| 1038 | <groupId>log4j</groupId> |
| 1039 | <artifactId>log4j</artifactId> |
| 1040 | </exclusion> |
Wail Alkowaileet | 087eaf5 | 2021-08-31 10:36:27 -0700 | [diff] [blame] | 1041 | <exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1042 | <groupId>org.slf4j</groupId> |
| 1043 | <artifactId>slf4j-api</artifactId> |
| 1044 | </exclusion> |
| 1045 | <exclusion> |
| 1046 | <groupId>org.slf4j</groupId> |
| 1047 | <artifactId>slf4j-log4j12</artifactId> |
| 1048 | </exclusion> |
| 1049 | <exclusion> |
Wail Alkowaileet | 087eaf5 | 2021-08-31 10:36:27 -0700 | [diff] [blame] | 1050 | <groupId>com.fasterxml</groupId> |
| 1051 | <artifactId>woodstox-core</artifactId> |
| 1052 | </exclusion> |
| 1053 | <exclusion> |
| 1054 | <groupId>dnsjava</groupId> |
| 1055 | <artifactId>dnsjava</artifactId> |
| 1056 | </exclusion> |
| 1057 | <exclusion> |
| 1058 | <groupId>org.wildfly.openssl</groupId> |
| 1059 | <artifactId>wildfly-openssl</artifactId> |
| 1060 | </exclusion> |
| 1061 | <exclusion> |
| 1062 | <groupId>org.jline</groupId> |
| 1063 | <artifactId>jline</artifactId> |
| 1064 | </exclusion> |
| 1065 | <exclusion> |
| 1066 | <groupId>javax.ws.rs</groupId> |
| 1067 | <artifactId>jsr311-api</artifactId> |
| 1068 | </exclusion> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 1069 | </exclusions> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1070 | </dependency> |
| 1071 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1072 | <groupId>org.apache.hadoop</groupId> |
Michael Blow | 3477a2b | 2018-10-04 17:17:35 -0400 | [diff] [blame] | 1073 | <artifactId>hadoop-hdfs-client</artifactId> |
| 1074 | <version>${hadoop.version}</version> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1075 | <exclusions> |
| 1076 | <exclusion> |
| 1077 | <groupId>log4j</groupId> |
| 1078 | <artifactId>log4j</artifactId> |
| 1079 | </exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1080 | <exclusion> |
| 1081 | <groupId>org.slf4j</groupId> |
| 1082 | <artifactId>slf4j-api</artifactId> |
| 1083 | </exclusion> |
| 1084 | <exclusion> |
| 1085 | <groupId>org.slf4j</groupId> |
| 1086 | <artifactId>slf4j-log4j12</artifactId> |
| 1087 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1088 | </exclusions> |
Michael Blow | 3477a2b | 2018-10-04 17:17:35 -0400 | [diff] [blame] | 1089 | </dependency> |
| 1090 | <dependency> |
| 1091 | <groupId>org.apache.hadoop</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1092 | <artifactId>hadoop-common</artifactId> |
| 1093 | <version>${hadoop.version}</version> |
| 1094 | <classifier>tests</classifier> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1095 | <exclusions> |
| 1096 | <exclusion> |
Hussain Towaileb | 1b3de51 | 2021-09-19 20:51:23 +0300 | [diff] [blame] | 1097 | <groupId>com.nimbusds</groupId> |
| 1098 | <artifactId>nimbus-jose-jwt</artifactId> |
| 1099 | </exclusion> |
| 1100 | <exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1101 | <groupId>log4j</groupId> |
| 1102 | <artifactId>log4j</artifactId> |
| 1103 | </exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1104 | <exclusion> |
| 1105 | <groupId>org.slf4j</groupId> |
| 1106 | <artifactId>slf4j-api</artifactId> |
| 1107 | </exclusion> |
| 1108 | <exclusion> |
| 1109 | <groupId>org.slf4j</groupId> |
| 1110 | <artifactId>slf4j-log4j12</artifactId> |
| 1111 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1112 | </exclusions> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1113 | </dependency> |
| 1114 | <dependency> |
| 1115 | <groupId>org.apache.hadoop</groupId> |
| 1116 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 1117 | <version>${hadoop.version}</version> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 1118 | <exclusions> |
| 1119 | <exclusion> |
| 1120 | <groupId>jdk.tools</groupId> |
| 1121 | <artifactId>jdk.tools</artifactId> |
| 1122 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1123 | <exclusion> |
| 1124 | <groupId>log4j</groupId> |
| 1125 | <artifactId>log4j</artifactId> |
| 1126 | </exclusion> |
Wail Alkowaileet | 087eaf5 | 2021-08-31 10:36:27 -0700 | [diff] [blame] | 1127 | <exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1128 | <groupId>org.slf4j</groupId> |
| 1129 | <artifactId>slf4j-api</artifactId> |
| 1130 | </exclusion> |
| 1131 | <exclusion> |
| 1132 | <groupId>org.slf4j</groupId> |
| 1133 | <artifactId>slf4j-log4j12</artifactId> |
| 1134 | </exclusion> |
| 1135 | <exclusion> |
Wail Alkowaileet | 087eaf5 | 2021-08-31 10:36:27 -0700 | [diff] [blame] | 1136 | <groupId>org.jline</groupId> |
| 1137 | <artifactId>jline</artifactId> |
| 1138 | </exclusion> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 1139 | </exclusions> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1140 | </dependency> |
| 1141 | <dependency> |
| 1142 | <groupId>org.apache.hadoop</groupId> |
| 1143 | <artifactId>hadoop-annotations</artifactId> |
| 1144 | <version>${hadoop.version}</version> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1145 | <exclusions> |
| 1146 | <exclusion> |
| 1147 | <groupId>log4j</groupId> |
| 1148 | <artifactId>log4j</artifactId> |
| 1149 | </exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1150 | <exclusion> |
| 1151 | <groupId>org.slf4j</groupId> |
| 1152 | <artifactId>slf4j-api</artifactId> |
| 1153 | </exclusion> |
| 1154 | <exclusion> |
| 1155 | <groupId>org.slf4j</groupId> |
| 1156 | <artifactId>slf4j-log4j12</artifactId> |
| 1157 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1158 | </exclusions> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1159 | </dependency> |
| 1160 | <dependency> |
| 1161 | <groupId>org.apache.hadoop</groupId> |
| 1162 | <artifactId>hadoop-minicluster</artifactId> |
| 1163 | <version>${hadoop.version}</version> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1164 | <exclusions> |
| 1165 | <exclusion> |
| 1166 | <groupId>log4j</groupId> |
| 1167 | <artifactId>log4j</artifactId> |
| 1168 | </exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1169 | <exclusion> |
| 1170 | <groupId>org.slf4j</groupId> |
| 1171 | <artifactId>slf4j-api</artifactId> |
| 1172 | </exclusion> |
| 1173 | <exclusion> |
| 1174 | <groupId>org.slf4j</groupId> |
| 1175 | <artifactId>slf4j-log4j12</artifactId> |
| 1176 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1177 | </exclusions> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1178 | </dependency> |
| 1179 | <dependency> |
| 1180 | <groupId>org.apache.hadoop</groupId> |
| 1181 | <artifactId>hadoop-hdfs</artifactId> |
| 1182 | <version>${hadoop.version}</version> |
| 1183 | <classifier>tests</classifier> |
| 1184 | <exclusions> |
| 1185 | <exclusion> |
| 1186 | <groupId>commons-logging</groupId> |
| 1187 | <artifactId>commons-logging</artifactId> |
| 1188 | </exclusion> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 1189 | <exclusion> |
| 1190 | <groupId>log4j</groupId> |
| 1191 | <artifactId>log4j</artifactId> |
| 1192 | </exclusion> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1193 | <exclusion> |
| 1194 | <groupId>org.slf4j</groupId> |
| 1195 | <artifactId>slf4j-api</artifactId> |
| 1196 | </exclusion> |
| 1197 | <exclusion> |
| 1198 | <groupId>org.slf4j</groupId> |
| 1199 | <artifactId>slf4j-log4j12</artifactId> |
| 1200 | </exclusion> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1201 | </exclusions> |
| 1202 | </dependency> |
| 1203 | <dependency> |
Michael Blow | 204b295 | 2017-12-07 20:17:47 -0500 | [diff] [blame] | 1204 | <groupId>org.apache.commons</groupId> |
| 1205 | <artifactId>commons-compress</artifactId> |
Till Westmann | 9e0328b | 2021-08-19 19:57:47 -0700 | [diff] [blame] | 1206 | <version>1.21</version> |
Michael Blow | 204b295 | 2017-12-07 20:17:47 -0500 | [diff] [blame] | 1207 | </dependency> |
| 1208 | <dependency> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 1209 | <groupId>commons-logging</groupId> |
| 1210 | <artifactId>commons-logging-api</artifactId> |
Michael Blow | 204b295 | 2017-12-07 20:17:47 -0500 | [diff] [blame] | 1211 | <version>1.1</version> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 1212 | </dependency> |
| 1213 | <dependency> |
Michael Blow | b29bd73 | 2017-01-16 11:44:39 -0500 | [diff] [blame] | 1214 | <groupId>commons-logging</groupId> |
| 1215 | <artifactId>commons-logging</artifactId> |
Michael Blow | 204b295 | 2017-12-07 20:17:47 -0500 | [diff] [blame] | 1216 | <version>1.2</version> |
Michael Blow | b29bd73 | 2017-01-16 11:44:39 -0500 | [diff] [blame] | 1217 | </dependency> |
| 1218 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1219 | <groupId>org.apache.hyracks</groupId> |
Till Westmann | 42620f6 | 2016-11-23 11:52:24 -0800 | [diff] [blame] | 1220 | <artifactId>algebricks-common</artifactId> |
| 1221 | <version>${algebricks.version}</version> |
| 1222 | </dependency> |
| 1223 | <dependency> |
| 1224 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1225 | <artifactId>algebricks-data</artifactId> |
| 1226 | <version>${algebricks.version}</version> |
| 1227 | </dependency> |
| 1228 | <dependency> |
| 1229 | <groupId>org.apache.hyracks</groupId> |
Till Westmann | 42620f6 | 2016-11-23 11:52:24 -0800 | [diff] [blame] | 1230 | <artifactId>algebricks-core</artifactId> |
| 1231 | <version>${algebricks.version}</version> |
| 1232 | </dependency> |
| 1233 | <dependency> |
| 1234 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1235 | <artifactId>hyracks-net</artifactId> |
| 1236 | <version>${hyracks.version}</version> |
| 1237 | </dependency> |
| 1238 | <dependency> |
| 1239 | <groupId>org.apache.hyracks</groupId> |
Dmitry Lychagin | 86cbec5 | 2017-06-19 11:16:14 -0700 | [diff] [blame] | 1240 | <artifactId>hyracks-ipc</artifactId> |
| 1241 | <version>${hyracks.version}</version> |
| 1242 | </dependency> |
| 1243 | <dependency> |
| 1244 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1245 | <artifactId>algebricks-compiler</artifactId> |
| 1246 | <version>${algebricks.version}</version> |
| 1247 | </dependency> |
| 1248 | <dependency> |
| 1249 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 1250 | <artifactId>algebricks-rewriter</artifactId> |
| 1251 | <version>${algebricks.version}</version> |
| 1252 | </dependency> |
| 1253 | <dependency> |
| 1254 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1255 | <artifactId>algebricks-runtime</artifactId> |
| 1256 | <version>${algebricks.version}</version> |
| 1257 | </dependency> |
| 1258 | <dependency> |
| 1259 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1260 | <artifactId>hyracks-api</artifactId> |
| 1261 | <version>${hyracks.version}</version> |
| 1262 | </dependency> |
| 1263 | <dependency> |
| 1264 | <groupId>org.apache.hyracks</groupId> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 1265 | <artifactId>hyracks-http</artifactId> |
| 1266 | <version>${hyracks.version}</version> |
| 1267 | </dependency> |
| 1268 | <dependency> |
| 1269 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1270 | <artifactId>hyracks-util</artifactId> |
| 1271 | <version>${hyracks.version}</version> |
| 1272 | </dependency> |
| 1273 | <dependency> |
| 1274 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 5543132 | 2019-02-15 19:06:27 -0500 | [diff] [blame] | 1275 | <artifactId>hyracks-util</artifactId> |
| 1276 | <version>${hyracks.version}</version> |
| 1277 | <type>test-jar</type> |
| 1278 | </dependency> |
| 1279 | <dependency> |
| 1280 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1281 | <artifactId>hyracks-dataflow-std</artifactId> |
| 1282 | <version>${hyracks.version}</version> |
| 1283 | </dependency> |
| 1284 | <dependency> |
| 1285 | <groupId>org.apache.hyracks</groupId> |
| 1286 | <artifactId>hyracks-data</artifactId> |
| 1287 | <version>${hyracks.version}</version> |
| 1288 | </dependency> |
| 1289 | <dependency> |
| 1290 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1291 | <artifactId>hyracks-data-std</artifactId> |
| 1292 | <version>${hyracks.version}</version> |
| 1293 | </dependency> |
| 1294 | <dependency> |
| 1295 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1296 | <artifactId>hyracks-control-cc</artifactId> |
| 1297 | <version>${hyracks.version}</version> |
| 1298 | </dependency> |
| 1299 | <dependency> |
| 1300 | <groupId>org.apache.hyracks</groupId> |
| 1301 | <artifactId>hyracks-control-nc</artifactId> |
| 1302 | <version>${hyracks.version}</version> |
| 1303 | </dependency> |
| 1304 | <dependency> |
| 1305 | <groupId>org.apache.hyracks</groupId> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 1306 | <artifactId>hyracks-nc-service</artifactId> |
| 1307 | <version>${hyracks.version}</version> |
| 1308 | </dependency> |
| 1309 | <dependency> |
| 1310 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1311 | <artifactId>hyracks-server</artifactId> |
| 1312 | <version>${hyracks.version}</version> |
| 1313 | </dependency> |
| 1314 | <dependency> |
| 1315 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 2530e39 | 2018-02-06 01:19:42 -0500 | [diff] [blame] | 1316 | <artifactId>hyracks-server</artifactId> |
| 1317 | <version>${hyracks.version}</version> |
| 1318 | <type>test-jar</type> |
| 1319 | </dependency> |
| 1320 | <dependency> |
| 1321 | <groupId>org.apache.hyracks</groupId> |
Till Westmann | 42620f6 | 2016-11-23 11:52:24 -0800 | [diff] [blame] | 1322 | <artifactId>hyracks-dataflow-common</artifactId> |
| 1323 | <version>${hyracks.version}</version> |
| 1324 | </dependency> |
| 1325 | <dependency> |
| 1326 | <groupId>org.apache.hyracks</groupId> |
Till Westmann | 42620f6 | 2016-11-23 11:52:24 -0800 | [diff] [blame] | 1327 | <artifactId>hyracks-storage-common</artifactId> |
| 1328 | <version>${hyracks.version}</version> |
| 1329 | </dependency> |
| 1330 | <dependency> |
| 1331 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1332 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 1333 | <version>${hyracks.version}</version> |
| 1334 | </dependency> |
| 1335 | <dependency> |
| 1336 | <groupId>org.apache.hyracks</groupId> |
Till Westmann | 42620f6 | 2016-11-23 11:52:24 -0800 | [diff] [blame] | 1337 | <artifactId>hyracks-storage-am-bloomfilter</artifactId> |
| 1338 | <version>${hyracks.version}</version> |
| 1339 | </dependency> |
| 1340 | <dependency> |
| 1341 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1342 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 1343 | <version>${hyracks.version}</version> |
| 1344 | </dependency> |
| 1345 | <dependency> |
| 1346 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1347 | <artifactId>hyracks-storage-am-common</artifactId> |
| 1348 | <version>${hyracks.version}</version> |
| 1349 | </dependency> |
| 1350 | <dependency> |
| 1351 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1352 | <artifactId>hyracks-control-common</artifactId> |
| 1353 | <version>${hyracks.version}</version> |
| 1354 | </dependency> |
| 1355 | <dependency> |
| 1356 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1357 | <artifactId>hyracks-client</artifactId> |
| 1358 | <version>${hyracks.version}</version> |
| 1359 | </dependency> |
| 1360 | <dependency> |
| 1361 | <groupId>org.apache.hyracks</groupId> |
| 1362 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 1363 | <version>${hyracks.version}</version> |
| 1364 | </dependency> |
| 1365 | <dependency> |
| 1366 | <groupId>org.apache.hyracks</groupId> |
| 1367 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 1368 | <version>${hyracks.version}</version> |
| 1369 | </dependency> |
| 1370 | <dependency> |
| 1371 | <groupId>org.apache.hyracks</groupId> |
| 1372 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 1373 | <version>${hyracks.version}</version> |
| 1374 | </dependency> |
| 1375 | <dependency> |
| 1376 | <groupId>org.apache.hyracks</groupId> |
| 1377 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 1378 | <version>${hyracks.version}</version> |
| 1379 | </dependency> |
| 1380 | <dependency> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 1381 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 1382 | <artifactId>hyracks-hdfs</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 1383 | <version>${hyracks.version}</version> |
| 1384 | </dependency> |
| 1385 | <dependency> |
| 1386 | <groupId>org.apache.hyracks</groupId> |
| 1387 | <artifactId>hyracks-test-support</artifactId> |
| 1388 | <version>${hyracks.version}</version> |
| 1389 | </dependency> |
| 1390 | <dependency> |
| 1391 | <groupId>org.apache.hyracks</groupId> |
| 1392 | <artifactId>hyracks-api</artifactId> |
| 1393 | <version>${hyracks.version}</version> |
| 1394 | <type>test-jar</type> |
| 1395 | </dependency> |
| 1396 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1397 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 1398 | <artifactId>hyracks-hdfs</artifactId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1399 | <version>${hyracks.version}</version> |
| 1400 | <type>test-jar</type> |
| 1401 | </dependency> |
| 1402 | <dependency> |
Abdullah Alamoudi | b2e50b7 | 2017-10-03 10:10:54 -0700 | [diff] [blame] | 1403 | <groupId>org.apache.hyracks</groupId> |
| 1404 | <artifactId>hyracks-storage-am-lsm-btree-test</artifactId> |
| 1405 | <version>${hyracks.version}</version> |
| 1406 | <type>test-jar</type> |
| 1407 | </dependency> |
| 1408 | <dependency> |
Till Westmann | 7d68c67 | 2017-07-19 11:14:12 -0700 | [diff] [blame] | 1409 | <groupId>com.rometools</groupId> |
| 1410 | <artifactId>rome-fetcher</artifactId> |
| 1411 | <version>1.7.4</version> |
| 1412 | </dependency> |
| 1413 | <dependency> |
| 1414 | <groupId>com.rometools</groupId> |
| 1415 | <artifactId>rome</artifactId> |
| 1416 | <version>1.7.4</version> |
| 1417 | </dependency> |
| 1418 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1419 | <groupId>org.apache.zookeeper</groupId> |
| 1420 | <artifactId>zookeeper</artifactId> |
Michael Blow | 0f7e487 | 2018-12-15 20:01:23 -0500 | [diff] [blame] | 1421 | <version>3.4.13</version> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 1422 | <exclusions> |
| 1423 | <exclusion> |
| 1424 | <groupId>com.sun.jmx</groupId> |
| 1425 | <artifactId>jmxri</artifactId> |
| 1426 | </exclusion> |
| 1427 | <exclusion> |
| 1428 | <groupId>com.sun.jdmk</groupId> |
| 1429 | <artifactId>jmxtools</artifactId> |
| 1430 | </exclusion> |
| 1431 | <exclusion> |
| 1432 | <groupId>javax.jms</groupId> |
| 1433 | <artifactId>jms</artifactId> |
| 1434 | </exclusion> |
| 1435 | </exclusions> |
| 1436 | </dependency> |
Michael Blow | 6224966 | 2017-01-24 14:22:47 -0500 | [diff] [blame] | 1437 | <dependency> |
| 1438 | <groupId>javax.xml.bind</groupId> |
| 1439 | <artifactId>jaxb-api</artifactId> |
Michael Blow | b8df1c5 | 2019-11-08 14:15:42 -0500 | [diff] [blame] | 1440 | <version>2.3.1</version> |
Michael Blow | 6224966 | 2017-01-24 14:22:47 -0500 | [diff] [blame] | 1441 | </dependency> |
Michael Blow | a7fad19 | 2017-03-09 22:10:19 -0500 | [diff] [blame] | 1442 | <dependency> |
| 1443 | <groupId>org.codehaus.mojo.appassembler</groupId> |
| 1444 | <artifactId>appassembler-booter</artifactId> |
| 1445 | <version>2.0.0</version> |
| 1446 | <exclusions> |
| 1447 | <exclusion> |
| 1448 | <groupId>junit</groupId> |
| 1449 | <artifactId>junit</artifactId> |
| 1450 | </exclusion> |
| 1451 | </exclusions> |
| 1452 | </dependency> |
Murtadha Hubail | 1b412c5 | 2018-03-19 22:52:31 +0300 | [diff] [blame] | 1453 | <dependency> |
| 1454 | <groupId>commons-codec</groupId> |
| 1455 | <artifactId>commons-codec</artifactId> |
Michael Blow | 3856cb3 | 2021-05-01 11:36:15 -0400 | [diff] [blame] | 1456 | <version>1.15</version> |
Murtadha Hubail | 1b412c5 | 2018-03-19 22:52:31 +0300 | [diff] [blame] | 1457 | </dependency> |
Michael Blow | aac1e93 | 2018-04-13 11:12:35 -0400 | [diff] [blame] | 1458 | <dependency> |
| 1459 | <groupId>it.unimi.dsi</groupId> |
| 1460 | <artifactId>fastutil</artifactId> |
Michael Blow | 951b9cc | 2021-10-28 20:11:23 -0400 | [diff] [blame] | 1461 | <version>8.5.6</version> |
Michael Blow | aac1e93 | 2018-04-13 11:12:35 -0400 | [diff] [blame] | 1462 | </dependency> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 1463 | <dependency> |
| 1464 | <groupId>com.sun.xml.bind</groupId> |
| 1465 | <artifactId>jaxb-core</artifactId> |
Michael Blow | 0f7e487 | 2018-12-15 20:01:23 -0500 | [diff] [blame] | 1466 | <version>2.3.0.1</version> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 1467 | </dependency> |
| 1468 | <dependency> |
| 1469 | <groupId>com.sun.xml.bind</groupId> |
| 1470 | <artifactId>jaxb-impl</artifactId> |
Michael Blow | b8df1c5 | 2019-11-08 14:15:42 -0500 | [diff] [blame] | 1471 | <version>2.3.2</version> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 1472 | </dependency> |
| 1473 | <dependency> |
| 1474 | <groupId>javax.activation</groupId> |
| 1475 | <artifactId>javax.activation-api</artifactId> |
| 1476 | <version>1.2.0</version> |
| 1477 | </dependency> |
| 1478 | <dependency> |
| 1479 | <groupId>com.sun.activation</groupId> |
| 1480 | <artifactId>javax.activation</artifactId> |
| 1481 | <version>1.2.0</version> |
| 1482 | </dependency> |
| 1483 | <dependency> |
| 1484 | <groupId>org.apache.maven</groupId> |
| 1485 | <artifactId>maven-core</artifactId> |
Michael Blow | 55e1980 | 2022-01-18 21:11:26 -0500 | [diff] [blame] | 1486 | <version>3.8.4</version> |
Michael Blow | aebe2c5 | 2018-06-10 14:18:53 -0400 | [diff] [blame] | 1487 | </dependency> |
Michael Blow | 0f7e487 | 2018-12-15 20:01:23 -0500 | [diff] [blame] | 1488 | <dependency> |
| 1489 | <groupId>org.apache.maven</groupId> |
| 1490 | <artifactId>maven-compat</artifactId> |
Michael Blow | 55e1980 | 2022-01-18 21:11:26 -0500 | [diff] [blame] | 1491 | <version>3.8.4</version> |
Michael Blow | 0f7e487 | 2018-12-15 20:01:23 -0500 | [diff] [blame] | 1492 | </dependency> |
| 1493 | <dependency> |
| 1494 | <groupId>com.esri.geometry</groupId> |
| 1495 | <artifactId>esri-geometry-api</artifactId> |
| 1496 | <version>2.0.0</version> |
| 1497 | </dependency> |
| 1498 | <dependency> |
| 1499 | <groupId>org.reflections</groupId> |
| 1500 | <artifactId>reflections</artifactId> |
Michael Blow | b5727c6 | 2020-03-05 21:16:35 -0500 | [diff] [blame] | 1501 | <version>0.9.12</version> |
Michael Blow | 0f7e487 | 2018-12-15 20:01:23 -0500 | [diff] [blame] | 1502 | </dependency> |
Ian Maxon | 694ffd1 | 2020-03-09 19:08:05 -0700 | [diff] [blame] | 1503 | <dependency> |
Hussain Towaileb | bc0f7e0 | 2020-03-30 16:10:30 +0300 | [diff] [blame] | 1504 | <groupId>software.amazon.awssdk</groupId> |
| 1505 | <artifactId>s3</artifactId> |
| 1506 | <version>${awsjavasdk.version}</version> |
| 1507 | <exclusions> |
| 1508 | <exclusion> |
| 1509 | <groupId>io.netty</groupId> |
| 1510 | <artifactId>netty-codec-http</artifactId> |
| 1511 | </exclusion> |
| 1512 | <exclusion> |
| 1513 | <groupId>io.netty</groupId> |
| 1514 | <artifactId>netty-codec-http2</artifactId> |
| 1515 | </exclusion> |
| 1516 | <exclusion> |
| 1517 | <groupId>io.netty</groupId> |
| 1518 | <artifactId>netty-codec</artifactId> |
| 1519 | </exclusion> |
| 1520 | <exclusion> |
| 1521 | <groupId>io.netty</groupId> |
| 1522 | <artifactId>netty-transport</artifactId> |
| 1523 | </exclusion> |
| 1524 | <exclusion> |
| 1525 | <groupId>io.netty</groupId> |
| 1526 | <artifactId>netty-common</artifactId> |
| 1527 | </exclusion> |
| 1528 | <exclusion> |
| 1529 | <groupId>io.netty</groupId> |
| 1530 | <artifactId>netty-buffer</artifactId> |
| 1531 | </exclusion> |
| 1532 | <exclusion> |
| 1533 | <groupId>io.netty</groupId> |
| 1534 | <artifactId>netty-handler</artifactId> |
| 1535 | </exclusion> |
| 1536 | <exclusion> |
| 1537 | <groupId>io.netty</groupId> |
| 1538 | <artifactId>netty-transport-native-epoll</artifactId> |
| 1539 | </exclusion> |
| 1540 | </exclusions> |
| 1541 | </dependency> |
| 1542 | <dependency> |
| 1543 | <groupId>software.amazon.awssdk</groupId> |
| 1544 | <artifactId>regions</artifactId> |
| 1545 | <version>${awsjavasdk.version}</version> |
| 1546 | <exclusions> |
| 1547 | <exclusion> |
| 1548 | <groupId>org.slf4j</groupId> |
| 1549 | <artifactId>slf4j-api</artifactId> |
| 1550 | </exclusion> |
| 1551 | </exclusions> |
| 1552 | </dependency> |
| 1553 | <dependency> |
| 1554 | <groupId>software.amazon.awssdk</groupId> |
| 1555 | <artifactId>auth</artifactId> |
| 1556 | <version>${awsjavasdk.version}</version> |
| 1557 | </dependency> |
| 1558 | <dependency> |
| 1559 | <groupId>software.amazon.awssdk</groupId> |
Hussain Towaileb | 9f454cd | 2021-02-05 16:49:11 +0300 | [diff] [blame] | 1560 | <artifactId>aws-core</artifactId> |
| 1561 | <version>${awsjavasdk.version}</version> |
| 1562 | </dependency> |
| 1563 | <dependency> |
| 1564 | <groupId>software.amazon.awssdk</groupId> |
Hussain Towaileb | bc0f7e0 | 2020-03-30 16:10:30 +0300 | [diff] [blame] | 1565 | <artifactId>sdk-core</artifactId> |
| 1566 | <version>${awsjavasdk.version}</version> |
| 1567 | <exclusions> |
| 1568 | <exclusion> |
| 1569 | <groupId>org.slf4j</groupId> |
| 1570 | <artifactId>slf4j-api</artifactId> |
| 1571 | </exclusion> |
| 1572 | </exclusions> |
| 1573 | </dependency> |
Hussain Towaileb | 93405ea | 2020-05-27 20:19:04 +0300 | [diff] [blame] | 1574 | <dependency> |
| 1575 | <groupId>software.amazon.awssdk</groupId> |
| 1576 | <artifactId>http-client-spi</artifactId> |
| 1577 | <version>${awsjavasdk.version}</version> |
| 1578 | </dependency> |
Hussain Towaileb | bc0f7e0 | 2020-03-30 16:10:30 +0300 | [diff] [blame] | 1579 | <!-- Mock for AWS S3 --> |
| 1580 | <dependency> |
| 1581 | <groupId>io.findify</groupId> |
| 1582 | <artifactId>s3mock_2.12</artifactId> |
| 1583 | <version>0.2.5</version> |
| 1584 | </dependency> |
| 1585 | <!-- Needed for the s3 mock --> |
| 1586 | <dependency> |
| 1587 | <groupId>com.typesafe.akka</groupId> |
| 1588 | <artifactId>akka-http-core_2.12</artifactId> |
| 1589 | <version>10.1.0</version> |
| 1590 | </dependency> |
Hussain Towaileb | e86d900 | 2020-10-16 16:52:27 +0300 | [diff] [blame] | 1591 | <!-- Azure Blob Storage start --> |
| 1592 | <dependency> |
| 1593 | <groupId>com.azure</groupId> |
Hussain Towaileb | 2b6cf22 | 2021-08-11 01:55:16 +0300 | [diff] [blame] | 1594 | <artifactId>azure-identity</artifactId> |
Hussain Towaileb | b1407c5 | 2021-11-23 15:34:55 +0300 | [diff] [blame] | 1595 | <version>1.4.1</version> |
Hussain Towaileb | 2b6cf22 | 2021-08-11 01:55:16 +0300 | [diff] [blame] | 1596 | <exclusions> |
| 1597 | <exclusion> |
| 1598 | <groupId>io.netty</groupId> |
| 1599 | <artifactId>netty-handler</artifactId> |
| 1600 | </exclusion> |
| 1601 | <exclusion> |
| 1602 | <groupId>io.netty</groupId> |
| 1603 | <artifactId>netty-handler-proxy</artifactId> |
| 1604 | </exclusion> |
| 1605 | <exclusion> |
| 1606 | <groupId>io.netty</groupId> |
| 1607 | <artifactId>netty-codec-http</artifactId> |
| 1608 | </exclusion> |
| 1609 | <exclusion> |
| 1610 | <groupId>io.netty</groupId> |
| 1611 | <artifactId>netty-codec-http2</artifactId> |
| 1612 | </exclusion> |
| 1613 | <exclusion> |
| 1614 | <groupId>io.netty</groupId> |
| 1615 | <artifactId>netty-buffer</artifactId> |
| 1616 | </exclusion> |
| 1617 | <exclusion> |
| 1618 | <groupId>io.netty</groupId> |
| 1619 | <artifactId>netty-common</artifactId> |
| 1620 | </exclusion> |
| 1621 | <exclusion> |
| 1622 | <groupId>io.netty</groupId> |
| 1623 | <artifactId>netty-transport</artifactId> |
| 1624 | </exclusion> |
| 1625 | <exclusion> |
| 1626 | <groupId>io.netty</groupId> |
| 1627 | <artifactId>netty-transport-native-epoll</artifactId> |
| 1628 | </exclusion> |
| 1629 | <exclusion> |
| 1630 | <groupId>io.netty</groupId> |
| 1631 | <artifactId>netty-transport-native-unix-common</artifactId> |
| 1632 | </exclusion> |
| 1633 | <exclusion> |
| 1634 | <groupId>io.netty</groupId> |
| 1635 | <artifactId>netty-tcnative-boringssl-static</artifactId> |
| 1636 | </exclusion> |
| 1637 | <exclusion> |
| 1638 | <groupId>io.netty</groupId> |
| 1639 | <artifactId>netty-codec-dns</artifactId> |
| 1640 | </exclusion> |
| 1641 | <exclusion> |
| 1642 | <groupId>io.netty</groupId> |
| 1643 | <artifactId>netty-transport-native-kqueue</artifactId> |
| 1644 | </exclusion> |
| 1645 | <exclusion> |
| 1646 | <groupId>io.netty</groupId> |
| 1647 | <artifactId>netty-resolver</artifactId> |
| 1648 | </exclusion> |
| 1649 | <exclusion> |
| 1650 | <groupId>io.netty</groupId> |
| 1651 | <artifactId>netty-resolver-dns</artifactId> |
| 1652 | </exclusion> |
| 1653 | <exclusion> |
| 1654 | <groupId>io.netty</groupId> |
| 1655 | <artifactId>netty-resolver-dns-native-macos</artifactId> |
| 1656 | </exclusion> |
| 1657 | <exclusion> |
| 1658 | <groupId>io.netty</groupId> |
| 1659 | <artifactId>netty-codec</artifactId> |
| 1660 | </exclusion> |
| 1661 | </exclusions> |
| 1662 | </dependency> |
| 1663 | <dependency> |
| 1664 | <groupId>com.azure</groupId> |
Hussain Towaileb | e86d900 | 2020-10-16 16:52:27 +0300 | [diff] [blame] | 1665 | <artifactId>azure-storage-blob</artifactId> |
Michael Blow | 69d5504 | 2022-01-23 12:38:22 -0500 | [diff] [blame] | 1666 | <version>12.14.3</version> |
Hussain Towaileb | e86d900 | 2020-10-16 16:52:27 +0300 | [diff] [blame] | 1667 | <exclusions> |
| 1668 | <exclusion> |
| 1669 | <groupId>io.netty</groupId> |
| 1670 | <artifactId>netty-handler</artifactId> |
| 1671 | </exclusion> |
| 1672 | <exclusion> |
| 1673 | <groupId>io.netty</groupId> |
| 1674 | <artifactId>netty-handler-proxy</artifactId> |
| 1675 | </exclusion> |
| 1676 | <exclusion> |
| 1677 | <groupId>io.netty</groupId> |
| 1678 | <artifactId>netty-codec-http</artifactId> |
| 1679 | </exclusion> |
| 1680 | <exclusion> |
| 1681 | <groupId>io.netty</groupId> |
| 1682 | <artifactId>netty-codec-http2</artifactId> |
| 1683 | </exclusion> |
| 1684 | <exclusion> |
| 1685 | <groupId>io.netty</groupId> |
| 1686 | <artifactId>netty-buffer</artifactId> |
| 1687 | </exclusion> |
| 1688 | <exclusion> |
| 1689 | <groupId>io.netty</groupId> |
| 1690 | <artifactId>netty-common</artifactId> |
| 1691 | </exclusion> |
| 1692 | <exclusion> |
| 1693 | <groupId>io.netty</groupId> |
| 1694 | <artifactId>netty-transport</artifactId> |
| 1695 | </exclusion> |
| 1696 | <exclusion> |
| 1697 | <groupId>io.netty</groupId> |
| 1698 | <artifactId>netty-transport-native-epoll</artifactId> |
| 1699 | </exclusion> |
| 1700 | <exclusion> |
| 1701 | <groupId>io.netty</groupId> |
| 1702 | <artifactId>netty-transport-native-unix-common</artifactId> |
| 1703 | </exclusion> |
| 1704 | <exclusion> |
| 1705 | <groupId>io.netty</groupId> |
| 1706 | <artifactId>netty-tcnative-boringssl-static</artifactId> |
| 1707 | </exclusion> |
Hussain Towaileb | 2b6cf22 | 2021-08-11 01:55:16 +0300 | [diff] [blame] | 1708 | <exclusion> |
| 1709 | <groupId>io.netty</groupId> |
| 1710 | <artifactId>netty-codec-dns</artifactId> |
| 1711 | </exclusion> |
| 1712 | <exclusion> |
| 1713 | <groupId>io.netty</groupId> |
| 1714 | <artifactId>netty-transport-native-kqueue</artifactId> |
| 1715 | </exclusion> |
| 1716 | <exclusion> |
| 1717 | <groupId>io.netty</groupId> |
| 1718 | <artifactId>netty-resolver</artifactId> |
| 1719 | </exclusion> |
| 1720 | <exclusion> |
| 1721 | <groupId>io.netty</groupId> |
| 1722 | <artifactId>netty-resolver-dns</artifactId> |
| 1723 | </exclusion> |
| 1724 | <exclusion> |
| 1725 | <groupId>io.netty</groupId> |
| 1726 | <artifactId>netty-resolver-dns-native-macos</artifactId> |
| 1727 | </exclusion> |
| 1728 | <exclusion> |
| 1729 | <groupId>io.netty</groupId> |
| 1730 | <artifactId>netty-codec</artifactId> |
| 1731 | </exclusion> |
Hussain Towaileb | e86d900 | 2020-10-16 16:52:27 +0300 | [diff] [blame] | 1732 | </exclusions> |
| 1733 | </dependency> |
Hussain Towaileb | 2eb7ceb | 2021-01-13 20:57:26 +0300 | [diff] [blame] | 1734 | <dependency> |
| 1735 | <groupId>com.azure</groupId> |
| 1736 | <artifactId>azure-storage-common</artifactId> |
Michael Blow | 69d5504 | 2022-01-23 12:38:22 -0500 | [diff] [blame] | 1737 | <version>12.14.2</version> |
Hussain Towaileb | 2eb7ceb | 2021-01-13 20:57:26 +0300 | [diff] [blame] | 1738 | <exclusions> |
| 1739 | <exclusion> |
| 1740 | <groupId>io.netty</groupId> |
| 1741 | <artifactId>netty-handler</artifactId> |
| 1742 | </exclusion> |
| 1743 | <exclusion> |
| 1744 | <groupId>io.netty</groupId> |
| 1745 | <artifactId>netty-handler-proxy</artifactId> |
| 1746 | </exclusion> |
| 1747 | <exclusion> |
| 1748 | <groupId>io.netty</groupId> |
| 1749 | <artifactId>netty-codec-http</artifactId> |
| 1750 | </exclusion> |
| 1751 | <exclusion> |
| 1752 | <groupId>io.netty</groupId> |
| 1753 | <artifactId>netty-codec-http2</artifactId> |
| 1754 | </exclusion> |
| 1755 | <exclusion> |
| 1756 | <groupId>io.netty</groupId> |
| 1757 | <artifactId>netty-buffer</artifactId> |
| 1758 | </exclusion> |
| 1759 | <exclusion> |
| 1760 | <groupId>io.netty</groupId> |
| 1761 | <artifactId>netty-common</artifactId> |
| 1762 | </exclusion> |
| 1763 | <exclusion> |
| 1764 | <groupId>io.netty</groupId> |
| 1765 | <artifactId>netty-transport</artifactId> |
| 1766 | </exclusion> |
| 1767 | <exclusion> |
| 1768 | <groupId>io.netty</groupId> |
| 1769 | <artifactId>netty-transport-native-epoll</artifactId> |
| 1770 | </exclusion> |
| 1771 | <exclusion> |
| 1772 | <groupId>io.netty</groupId> |
| 1773 | <artifactId>netty-transport-native-unix-common</artifactId> |
| 1774 | </exclusion> |
| 1775 | <exclusion> |
| 1776 | <groupId>io.netty</groupId> |
| 1777 | <artifactId>netty-tcnative-boringssl-static</artifactId> |
| 1778 | </exclusion> |
Hussain Towaileb | 2b6cf22 | 2021-08-11 01:55:16 +0300 | [diff] [blame] | 1779 | <exclusion> |
| 1780 | <groupId>io.netty</groupId> |
| 1781 | <artifactId>netty-codec-dns</artifactId> |
| 1782 | </exclusion> |
| 1783 | <exclusion> |
| 1784 | <groupId>io.netty</groupId> |
| 1785 | <artifactId>netty-transport-native-kqueue</artifactId> |
| 1786 | </exclusion> |
| 1787 | <exclusion> |
| 1788 | <groupId>io.netty</groupId> |
| 1789 | <artifactId>netty-resolver</artifactId> |
| 1790 | </exclusion> |
| 1791 | <exclusion> |
| 1792 | <groupId>io.netty</groupId> |
| 1793 | <artifactId>netty-resolver-dns</artifactId> |
| 1794 | </exclusion> |
| 1795 | <exclusion> |
| 1796 | <groupId>io.netty</groupId> |
| 1797 | <artifactId>netty-resolver-dns-native-macos</artifactId> |
| 1798 | </exclusion> |
| 1799 | <exclusion> |
| 1800 | <groupId>io.netty</groupId> |
| 1801 | <artifactId>netty-codec</artifactId> |
| 1802 | </exclusion> |
Hussain Towaileb | 2eb7ceb | 2021-01-13 20:57:26 +0300 | [diff] [blame] | 1803 | </exclusions> |
| 1804 | </dependency> |
Hussain Towaileb | e86d900 | 2020-10-16 16:52:27 +0300 | [diff] [blame] | 1805 | <!-- Azure Blob Storage end --> |
Hussain Towaileb | cf7156d | 2021-08-13 18:48:10 +0300 | [diff] [blame] | 1806 | <!-- Google Cloud Storage start --> |
| 1807 | <dependency> |
| 1808 | <groupId>com.google.cloud</groupId> |
| 1809 | <artifactId>google-cloud-storage</artifactId> |
| 1810 | <version>${gcsjavasdk.version}</version> |
Michael Blow | 5d1c3d1 | 2021-11-06 14:40:13 -0400 | [diff] [blame] | 1811 | <exclusions> |
| 1812 | <!-- substitute org.apache.tomcat:tomcat-annotations-api, as it has a nicer license --> |
| 1813 | <exclusion> |
| 1814 | <groupId>javax.annotation</groupId> |
| 1815 | <artifactId>javax.annotation-api</artifactId> |
| 1816 | </exclusion> |
| 1817 | </exclusions> |
| 1818 | </dependency> |
| 1819 | <dependency> |
| 1820 | <groupId>org.apache.tomcat</groupId> |
| 1821 | <artifactId>tomcat-annotations-api</artifactId> |
Michael Blow | 2b6b377 | 2022-02-03 12:36:07 -0500 | [diff] [blame] | 1822 | <version>10.0.16</version> |
Hussain Towaileb | cf7156d | 2021-08-13 18:48:10 +0300 | [diff] [blame] | 1823 | </dependency> |
| 1824 | <!-- Google Cloud Storage end --> |
Hussain Towaileb | 002591c | 2021-10-15 09:30:01 +0300 | [diff] [blame] | 1825 | <!-- Azure Data Lake start --> |
| 1826 | <dependency> |
| 1827 | <groupId>com.azure</groupId> |
| 1828 | <artifactId>azure-storage-file-datalake</artifactId> |
| 1829 | <version>${azuredatalakejavasdk.version}</version> |
| 1830 | </dependency> |
| 1831 | <!-- Azure Data Lake end --> |
Michael Blow | 2364a21 | 2020-05-06 10:30:06 -0400 | [diff] [blame] | 1832 | <dependency> |
Ian Maxon | 694ffd1 | 2020-03-09 19:08:05 -0700 | [diff] [blame] | 1833 | <groupId>org.mindrot</groupId> |
| 1834 | <artifactId>jbcrypt</artifactId> |
| 1835 | <version>0.4</version> |
| 1836 | </dependency> |
| 1837 | <dependency> |
| 1838 | <groupId>org.apache.commons</groupId> |
| 1839 | <artifactId>commons-csv</artifactId> |
Michael Blow | 951b9cc | 2021-10-28 20:11:23 -0400 | [diff] [blame] | 1840 | <version>1.9.0</version> |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 1841 | </dependency> |
| 1842 | <dependency> |
| 1843 | <groupId>org.testcontainers</groupId> |
| 1844 | <artifactId>postgresql</artifactId> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1845 | <version>1.16.2</version> |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 1846 | </dependency> |
| 1847 | <dependency> |
| 1848 | <groupId>org.postgresql</groupId> |
| 1849 | <artifactId>postgresql</artifactId> |
Dmitry Lychagin | 4743118 | 2021-10-26 20:22:59 -0700 | [diff] [blame] | 1850 | <version>42.2.24</version> |
Ian Maxon | 694ffd1 | 2020-03-09 19:08:05 -0700 | [diff] [blame] | 1851 | </dependency> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 1852 | <dependency> |
| 1853 | <groupId>org.apache.httpcomponents</groupId> |
| 1854 | <artifactId>httpmime</artifactId> |
| 1855 | <version>4.5.11</version> |
| 1856 | </dependency> |
| 1857 | <dependency> |
Ian Maxon | 7b95996 | 2020-07-23 22:15:40 -0700 | [diff] [blame] | 1858 | <groupId>org.msgpack</groupId> |
| 1859 | <artifactId>msgpack-core</artifactId> |
| 1860 | <version>0.8.20</version> |
Ian Maxon | a28ddb7 | 2020-04-28 15:36:30 -0700 | [diff] [blame] | 1861 | </dependency> |
Wail Alkowaileet | f984ced | 2020-10-16 12:44:42 -0700 | [diff] [blame] | 1862 | <dependency> |
| 1863 | <groupId>org.apache.parquet</groupId> |
| 1864 | <artifactId>parquet-column</artifactId> |
| 1865 | <version>${parquet.version}</version> |
Wail Alkowaileet | 578908a | 2021-07-08 15:29:47 -0700 | [diff] [blame] | 1866 | <exclusions> |
| 1867 | <exclusion> |
| 1868 | <groupId>org.slf4j</groupId> |
| 1869 | <artifactId>slf4j-api</artifactId> |
| 1870 | </exclusion> |
| 1871 | </exclusions> |
Wail Alkowaileet | f984ced | 2020-10-16 12:44:42 -0700 | [diff] [blame] | 1872 | </dependency> |
| 1873 | <dependency> |
| 1874 | <groupId>org.apache.parquet</groupId> |
| 1875 | <artifactId>parquet-hadoop</artifactId> |
| 1876 | <version>${parquet.version}</version> |
Wail Alkowaileet | 578908a | 2021-07-08 15:29:47 -0700 | [diff] [blame] | 1877 | <exclusions> |
| 1878 | <exclusion> |
| 1879 | <groupId>org.slf4j</groupId> |
| 1880 | <artifactId>slf4j-api</artifactId> |
| 1881 | </exclusion> |
| 1882 | </exclusions> |
Wail Alkowaileet | f984ced | 2020-10-16 12:44:42 -0700 | [diff] [blame] | 1883 | </dependency> |
| 1884 | <dependency> |
| 1885 | <groupId>org.kitesdk</groupId> |
| 1886 | <artifactId>kite-data-core</artifactId> |
| 1887 | <version>1.1.0</version> |
| 1888 | </dependency> |
Wail Alkowaileet | 578908a | 2021-07-08 15:29:47 -0700 | [diff] [blame] | 1889 | <!-- Hadoop AWS start --> |
| 1890 | <dependency> |
| 1891 | <!-- Pick a newer AWS SDK --> |
| 1892 | <groupId>com.amazonaws</groupId> |
| 1893 | <artifactId>aws-java-sdk-s3</artifactId> |
| 1894 | <version>${hadoop-awsjavasdk.version}</version> |
| 1895 | <exclusions> |
| 1896 | <exclusion> |
| 1897 | <groupId>commons-logging</groupId> |
| 1898 | <artifactId>commons-logging</artifactId> |
| 1899 | </exclusion> |
| 1900 | </exclusions> |
| 1901 | </dependency> |
| 1902 | <dependency> |
Wail Alkowaileet | 087eaf5 | 2021-08-31 10:36:27 -0700 | [diff] [blame] | 1903 | <groupId>com.amazonaws</groupId> |
Wail Alkowaileet | 09cb18f | 2021-09-08 21:09:54 -0700 | [diff] [blame] | 1904 | <artifactId>aws-java-sdk-dynamodb</artifactId> |
Wail Alkowaileet | 087eaf5 | 2021-08-31 10:36:27 -0700 | [diff] [blame] | 1905 | <version>${hadoop-awsjavasdk.version}</version> |
| 1906 | <exclusions> |
| 1907 | <exclusion> |
| 1908 | <groupId>commons-logging</groupId> |
| 1909 | <artifactId>commons-logging</artifactId> |
| 1910 | </exclusion> |
| 1911 | </exclusions> |
| 1912 | </dependency> |
| 1913 | <dependency> |
Wail Alkowaileet | 578908a | 2021-07-08 15:29:47 -0700 | [diff] [blame] | 1914 | <groupId>org.apache.hadoop</groupId> |
| 1915 | <artifactId>hadoop-aws</artifactId> |
| 1916 | <version>${hadoop.version}</version> |
Wail Alkowaileet | 09cb18f | 2021-09-08 21:09:54 -0700 | [diff] [blame] | 1917 | <exclusions> |
| 1918 | <exclusion> |
| 1919 | <groupId>com.amazonaws</groupId> |
| 1920 | <artifactId>aws-java-sdk-bundle</artifactId> |
| 1921 | </exclusion> |
| 1922 | </exclusions> |
Wail Alkowaileet | 578908a | 2021-07-08 15:29:47 -0700 | [diff] [blame] | 1923 | </dependency> |
| 1924 | <!-- Hadoop AWS end --> |
Wail Alkowaileet | 380dbad | 2021-09-10 03:21:33 -0700 | [diff] [blame] | 1925 | <!-- Hadoop Azure start --> |
| 1926 | <dependency> |
| 1927 | <!-- Pick a newer Azure connector --> |
| 1928 | <groupId>com.microsoft.azure</groupId> |
| 1929 | <artifactId>azure-storage</artifactId> |
| 1930 | <version>${hadoop-azuresdk.version}</version> |
| 1931 | <exclusions> |
| 1932 | <exclusion> |
| 1933 | <groupId>org.slf4j</groupId> |
| 1934 | <artifactId>slf4j-api</artifactId> |
| 1935 | </exclusion> |
| 1936 | </exclusions> |
| 1937 | </dependency> |
| 1938 | <dependency> |
| 1939 | <groupId>org.apache.hadoop</groupId> |
| 1940 | <artifactId>hadoop-azure</artifactId> |
| 1941 | <version>${hadoop.version}</version> |
| 1942 | </dependency> |
| 1943 | <!-- Hadoop Azure end --> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 1944 | </dependencies> |
| 1945 | </dependencyManagement> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 1946 | |
Ian Maxon | fa5ba0b | 2016-03-30 17:11:59 -0700 | [diff] [blame] | 1947 | </project> |