You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ri...@apache.org on 2021/06/16 08:46:44 UTC

[phoenix-connectors] branch master updated: PHOENIX-6478 Exclude org.pentaho:pentaho-aggdesigner-algorithm:jar:5.1.5-jhyde

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

richardantal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix-connectors.git


The following commit(s) were added to refs/heads/master by this push:
     new a732b66  PHOENIX-6478 Exclude org.pentaho:pentaho-aggdesigner-algorithm:jar:5.1.5-jhyde
a732b66 is described below

commit a732b66bf5807a41ef4114b41f10eb0c9504291f
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Thu May 27 10:58:01 2021 +0300

    PHOENIX-6478 Exclude org.pentaho:pentaho-aggdesigner-algorithm:jar:5.1.5-jhyde
    
    ... because it is not available at Maven Central and it is not actually required for the build
---
 phoenix-hive-base/phoenix4-hive/pom.xml |  2 +-
 phoenix-hive-base/pom.xml               | 17 +++++++++++++++++
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/phoenix-hive-base/phoenix4-hive/pom.xml b/phoenix-hive-base/phoenix4-hive/pom.xml
index ac5a95a..d08cf42 100644
--- a/phoenix-hive-base/phoenix4-hive/pom.xml
+++ b/phoenix-hive-base/phoenix4-hive/pom.xml
@@ -124,4 +124,4 @@
     </plugins>
   </build>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/phoenix-hive-base/pom.xml b/phoenix-hive-base/pom.xml
index 5acb4f0..53d6630 100644
--- a/phoenix-hive-base/pom.xml
+++ b/phoenix-hive-base/pom.xml
@@ -583,4 +583,21 @@
       </plugins>
     </pluginManagement>
   </build>
+
+   <dependencyManagement>
+    <dependencies>
+      <dependency>      
+        <groupId>org.apache.calcite</groupId>
+        <artifactId>calcite-core</artifactId>
+        <exclusions>
+          <exclusion>
+            <!-- PHOENIX-6478: exclude a dependency that is not required and not available at Maven Central -->
+            <groupId>org.pentaho</groupId>
+            <artifactId>pentaho-aggdesigner-algorithm</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
 </project>