[java-idp-testbed] branch master updated: Fix org.glassfish:javax.el SNAPSHOT warning via explicit dependency.

Tom Zeller tzeller at dragonacea.biz
Wed May 25 17:33:37 EDT 2016


This is an automated email from the git hooks/post-receive script.

tzeller pushed a commit to branch master
in repository java-idp-testbed.

The following commit(s) were added to refs/heads/master by this push:
       new  45502bb   Fix org.glassfish:javax.el SNAPSHOT warning via explicit dependency.
45502bb is described below

commit 45502bba7f9fe065d767dd10fd8b7203703d0714
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Wed May 25 16:25:03 2016 -0500

    Fix org.glassfish:javax.el SNAPSHOT warning via explicit dependency.
    
    For some reason, the jetty-jsp project depends on SNAPSHOT versions of
    org.glassfish:javax.el. Exclude the org.glassfish:javax.el dependency
    from jetty-jsp, and declare explicitly.
    
    [WARNING] The POM for org.glassfish:javax.el:jar:3.0.1-b06-SNAPSHOT is
    missing, no dependency information available
---
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/pom.xml b/pom.xml
index a368779..fccd53d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -223,6 +223,17 @@
             <artifactId>jetty-jsp</artifactId>
             <version>${jetty.version}</version>
             <scope>runtime</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.glassfish</groupId>
+                    <artifactId>javax.el</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.glassfish</groupId>
+            <artifactId>javax.el</artifactId>
+            <version>3.0.0</version>
         </dependency>
 
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list