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