This is an automated email from the ASF dual-hosted git repository. sunchao pushed a commit to branch branch-2.3 in repository https://gitbox.apache.org/repos/asf/hive.git
The following commit(s) were added to refs/heads/branch-2.3 by this push: new d7caeaf HIVE-24553. Exclude calcite from test-jar dependency of hive-exec (#1794) d7caeaf is described below commit d7caeaf5d24c924720a93999ca1b8ef0f971c44e Author: Liang-Chi Hsieh <vii...@gmail.com> AuthorDate: Mon Dec 21 10:18:12 2020 -0800 HIVE-24553. Exclude calcite from test-jar dependency of hive-exec (#1794) --- beeline/pom.xml | 14 ++++++++++++++ hcatalog/core/pom.xml | 14 ++++++++++++++ hcatalog/hcatalog-pig-adapter/pom.xml | 14 ++++++++++++++ hcatalog/server-extensions/pom.xml | 14 ++++++++++++++ hcatalog/webhcat/java-client/pom.xml | 14 ++++++++++++++ itests/hive-minikdc/pom.xml | 14 ++++++++++++++ itests/hive-unit-hadoop2/pom.xml | 14 ++++++++++++++ itests/hive-unit/pom.xml | 14 ++++++++++++++ itests/qtest-accumulo/pom.xml | 28 ++++++++++++++++++++++++++++ itests/util/pom.xml | 14 ++++++++++++++ service/pom.xml | 14 ++++++++++++++ 11 files changed, 168 insertions(+) diff --git a/beeline/pom.xml b/beeline/pom.xml index 0d25ef9..971a631 100644 --- a/beeline/pom.xml +++ b/beeline/pom.xml @@ -99,6 +99,20 @@ <version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> diff --git a/hcatalog/core/pom.xml b/hcatalog/core/pom.xml index 9dc2456..d81e492 100644 --- a/hcatalog/core/pom.xml +++ b/hcatalog/core/pom.xml @@ -66,6 +66,20 @@ <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <!-- inter-project --> <dependency> diff --git a/hcatalog/hcatalog-pig-adapter/pom.xml b/hcatalog/hcatalog-pig-adapter/pom.xml index 66f1185..49c6861 100644 --- a/hcatalog/hcatalog-pig-adapter/pom.xml +++ b/hcatalog/hcatalog-pig-adapter/pom.xml @@ -101,6 +101,20 @@ <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <!-- test inter-project --> <dependency> diff --git a/hcatalog/server-extensions/pom.xml b/hcatalog/server-extensions/pom.xml index 4f334e4..4756f1d 100644 --- a/hcatalog/server-extensions/pom.xml +++ b/hcatalog/server-extensions/pom.xml @@ -75,6 +75,20 @@ <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <!-- test inter-project --> <dependency> diff --git a/hcatalog/webhcat/java-client/pom.xml b/hcatalog/webhcat/java-client/pom.xml index f19f18b..ff3f660 100644 --- a/hcatalog/webhcat/java-client/pom.xml +++ b/hcatalog/webhcat/java-client/pom.xml @@ -73,6 +73,20 @@ <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hive.hcatalog</groupId> diff --git a/itests/hive-minikdc/pom.xml b/itests/hive-minikdc/pom.xml index 4e05f4e..8f359a2 100644 --- a/itests/hive-minikdc/pom.xml +++ b/itests/hive-minikdc/pom.xml @@ -116,6 +116,20 @@ <version>${project.version}</version> <scope>test</scope> <classifier>tests</classifier> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <!-- test inter-project --> <dependency> diff --git a/itests/hive-unit-hadoop2/pom.xml b/itests/hive-unit-hadoop2/pom.xml index 422a2fe..1b1cc56 100644 --- a/itests/hive-unit-hadoop2/pom.xml +++ b/itests/hive-unit-hadoop2/pom.xml @@ -97,6 +97,20 @@ <artifactId>hive-exec</artifactId> <version>${project.version}</version> <classifier>tests</classifier> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <!-- test inter-project --> <dependency> diff --git a/itests/hive-unit/pom.xml b/itests/hive-unit/pom.xml index 8dc7971..d74ac34 100644 --- a/itests/hive-unit/pom.xml +++ b/itests/hive-unit/pom.xml @@ -49,6 +49,20 @@ <artifactId>hive-exec</artifactId> <version>${project.version}</version> <classifier>tests</classifier> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> diff --git a/itests/qtest-accumulo/pom.xml b/itests/qtest-accumulo/pom.xml index 3fae45c..1079bed 100644 --- a/itests/qtest-accumulo/pom.xml +++ b/itests/qtest-accumulo/pom.xml @@ -63,6 +63,20 @@ <version>${project.version}</version> <scope>test</scope> <classifier>core</classifier> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> @@ -70,6 +84,20 @@ <version>${project.version}</version> <scope>test</scope> <classifier>tests</classifier> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> diff --git a/itests/util/pom.xml b/itests/util/pom.xml index 7d360a1..00a5d2e 100644 --- a/itests/util/pom.xml +++ b/itests/util/pom.xml @@ -100,6 +100,20 @@ <artifactId>hive-exec</artifactId> <version>${project.version}</version> <classifier>tests</classifier> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> diff --git a/service/pom.xml b/service/pom.xml index 08fb52f..4f54390 100644 --- a/service/pom.xml +++ b/service/pom.xml @@ -147,6 +147,20 @@ <version>${project.version}</version> <scope>test</scope> <classifier>tests</classifier> + <exclusions> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-druid</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId>