[java-idp-integration-tests] branch master updated: Fix org.glassfish:javax.el SNAPSHOT warning via explicit dependency.
Tom Zeller
tzeller at dragonacea.biz
Wed May 25 17:37:44 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-integration-tests.
The following commit(s) were added to refs/heads/master by this push:
new a63e191 Fix org.glassfish:javax.el SNAPSHOT warning via explicit dependency.
a63e191 is described below
commit a63e191def542038e3eca63c324e23f517e37d1b
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Wed May 25 16:37:34 2016 -0500
Fix org.glassfish:javax.el SNAPSHOT warning via explicit dependency.
For some reason, the jetty-jsp project and thus jetty-distribution
depends on SNAPSHOT versions of org.glassfish:javax.el. Exclude the
org.glassfish:javax.el dependency from jetty-distribution, 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 | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/pom.xml b/pom.xml
index d2d3801..dfaeecd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -132,9 +132,18 @@
<groupId>org.eclipse.jetty</groupId>
<artifactId>test-proxy-webapp</artifactId>
</exclusion>
+ <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>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list