You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2020/03/24 12:38:19 UTC

[incubator-iotdb] branch master updated: fix downloading pentaho-aggdesigner-algorithm error from maven repo (#941)

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new b1c209d  fix downloading pentaho-aggdesigner-algorithm error from maven repo (#941)
b1c209d is described below

commit b1c209dfc8c391778857367f656945ad2aca36fa
Author: Xiangdong Huang <hx...@qq.com>
AuthorDate: Tue Mar 24 20:38:13 2020 +0800

    fix downloading pentaho-aggdesigner-algorithm error from maven repo (#941)
---
 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>