This is an automated email from the ASF dual-hosted git repository. hxd pushed a commit to branch iotdb-563 in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
commit a51330cb2e61d639c5b697346c9b889fa1a78610 Author: xiangdong huang <[email protected]> AuthorDate: Tue Mar 24 19:01:57 2020 +0800 fix downloading pentaho-aggdesigner-algorithm error from maven repo --- hive-connector/pom.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/hive-connector/pom.xml b/hive-connector/pom.xml index 1f95693..f289aa5 100644 --- a/hive-connector/pom.xml +++ b/hive-connector/pom.xml @@ -153,4 +153,20 @@ </plugin> </plugins> </build> + <!-- org.pentaho:pentaho-aggdesigner-algorithm is in repo.spring.io and we have to claim + to use https--> + <repositories> + <repository> + <id>for_pentaho</id> + <name>spring.io</name> + <url>https://repo.spring.io/libs-milestone</url> + <layout>default</layout> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> </project>
