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

jnioche pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git


The following commit(s) were added to refs/heads/master by this push:
     new d1f914607 Missing dependency prevents Storm from being built, fixes 
#3940
     new 516d383d9 Merge pull request #3556 from DigitalPebble/3940
d1f914607 is described below

commit d1f9146075c781994fe5c57e9e1cbc5cca82035b
Author: Julien Nioche <jul...@digitalpebble.com>
AuthorDate: Tue Aug 1 10:05:43 2023 +0100

    Missing dependency prevents Storm from being built, fixes #3940
    
    Signed-off-by: Julien Nioche <jul...@digitalpebble.com>
---
 external/storm-autocreds/pom.xml | 4 ++++
 external/storm-hive/pom.xml      | 8 ++++++++
 2 files changed, 12 insertions(+)

diff --git a/external/storm-autocreds/pom.xml b/external/storm-autocreds/pom.xml
index 5523a8e9c..bc1ae7a08 100644
--- a/external/storm-autocreds/pom.xml
+++ b/external/storm-autocreds/pom.xml
@@ -194,6 +194,10 @@
             <artifactId>hive-webhcat-java-client</artifactId>
             <version>${hive.version}</version>
             <exclusions>
+                <exclusion>
+                    <groupId>org.pentaho</groupId>
+                    <artifactId>pentaho-aggdesigner-algorithm</artifactId>
+                </exclusion>
                 <exclusion>
                     <groupId>org.slf4j</groupId>
                     <artifactId>slf4j-log4j12</artifactId>
diff --git a/external/storm-hive/pom.xml b/external/storm-hive/pom.xml
index eeb2815ee..68bb07791 100644
--- a/external/storm-hive/pom.xml
+++ b/external/storm-hive/pom.xml
@@ -104,6 +104,10 @@
       <artifactId>hive-hcatalog-core</artifactId>
       <version>${hive.version}</version>
       <exclusions>
+        <exclusion>
+          <groupId>org.pentaho</groupId>
+          <artifactId>pentaho-aggdesigner-algorithm</artifactId>
+        </exclusion>
         <exclusion>
           <groupId>log4j</groupId>
           <artifactId>log4j</artifactId>
@@ -159,6 +163,10 @@
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.pentaho</groupId>
+          <artifactId>pentaho-aggdesigner-algorithm</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>

Reply via email to