This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch ISSUE_4288_12 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 346f570d13d461c902b472fb75e5ff67117f83eb Author: HTHou <[email protected]> AuthorDate: Wed Nov 3 10:11:28 2021 +0800 [ISSUE-4288] Fix CI issue caused by the invalid pentaho download url --- hive-connector/pom.xml | 16 ---------------- pom.xml | 6 ++++++ 2 files changed, 6 insertions(+), 16 deletions(-) diff --git a/hive-connector/pom.xml b/hive-connector/pom.xml index 77413f5..aa9041a 100644 --- a/hive-connector/pom.xml +++ b/hive-connector/pom.xml @@ -171,22 +171,6 @@ </dependency> </dependencies> </dependencyManagement> - <!-- org.pentaho:pentaho-aggdesigner-algorithm is removed from repo.spring.io and we have to claim - to use https://public.nexus.pentaho.org or http://conjars.org/repo --> - <repositories> - <repository> - <id>for_pentaho</id> - <name>public.nexus.pentaho.org</name> - <url>https://public.nexus.pentaho.org/repository/proxy-public-3rd-party-release</url> - <layout>default</layout> - <releases> - <enabled>true</enabled> - </releases> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - </repositories> <profiles> <profile> <id>get-jar-with-dependencies</id> diff --git a/pom.xml b/pom.xml index 0055d21..f50d5eb 100644 --- a/pom.xml +++ b/pom.xml @@ -347,6 +347,12 @@ <groupId>org.apache.hive</groupId> <artifactId>hive-exec</artifactId> <version>${hive2.version}</version> + <exclusions> + <exclusion> + <groupId>org.pentaho</groupId> + <artifactId>pentaho-aggdesigner-algorithm</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.spark</groupId>
