You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ag...@apache.org on 2022/03/07 16:32:05 UTC

[storm] branch master updated: [STORM-3828] try to fix build issue related to javax.el (#3448)

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

agresch 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 d2db195  [STORM-3828] try to fix build issue related to javax.el (#3448)
d2db195 is described below

commit d2db1952f0f3759066e95a90b0a5faad9e973538
Author: PJ Fanning <pj...@users.noreply.github.com>
AuthorDate: Mon Mar 7 17:31:40 2022 +0100

    [STORM-3828] try to fix build issue related to javax.el (#3448)
    
    * [STORM-3828] fix build issue related to javax.el
---
 external/storm-autocreds/pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/external/storm-autocreds/pom.xml b/external/storm-autocreds/pom.xml
index f585095..e6831e0 100644
--- a/external/storm-autocreds/pom.xml
+++ b/external/storm-autocreds/pom.xml
@@ -135,6 +135,11 @@
                     <groupId>junit</groupId>
                     <artifactId>junit</artifactId>
                 </exclusion>
+                <!-- https://jira.apache.org/jira/browse/STORM-3828 -->
+                <exclusion>
+                    <groupId>org.glassfish</groupId>
+                    <artifactId>javax.el</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>
@@ -199,6 +204,11 @@
             <groupId>javax.xml.bind</groupId>
             <artifactId>jaxb-api</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.glassfish</groupId>
+            <artifactId>javax.el</artifactId>
+            <version>3.0.1-b12</version>
+        </dependency>
     </dependencies>
     <build>
         <plugins>