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

[incubator-iotdb] branch iotdb-563 created (now a51330c)

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

hxd pushed a change to branch iotdb-563
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


      at a51330c  fix downloading pentaho-aggdesigner-algorithm error from maven repo

This branch includes the following new commits:

     new a51330c  fix downloading pentaho-aggdesigner-algorithm error from maven repo

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-iotdb] 01/01: fix downloading pentaho-aggdesigner-algorithm error from maven repo

Posted by hx...@apache.org.
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 <sa...@gmail.com>
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>