[utilities COMMIT] /java-support/trunk/pom.xml

noreply at shibboleth.net noreply at shibboleth.net
Tue Mar 11 13:39:43 EDT 2014


Author: iay
Date: Tue Mar 11 13:39:43 2014
New Revision: 548

URL: http://svn.shibboleth.net/view/utilities?rev=548&view=rev
Log:
JPAR-52 fix some logging dependencies, among others

Modified:
    java-support/trunk/pom.xml

Modified: java-support/trunk/pom.xml
URL: http://svn.shibboleth.net/view/utilities/java-support/trunk/pom.xml?rev=548&r1=547&r2=548&view=diff
==============================================================================
--- java-support/trunk/pom.xml (original)
+++ java-support/trunk/pom.xml Tue Mar 11 13:39:43 2014
@@ -51,6 +51,22 @@
             <groupId>com.google.guava</groupId>
             <artifactId>guava</artifactId>
         </dependency>
+        
+        <!-- OPTIONAL Compile Dependencies -->
+        <dependency>
+            <!-- Required if you're using classes from the logging package. -->
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-classic</artifactId>
+            <scope>compile</scope><!-- normally runtime -->
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <!-- Required if you're using classes from the logging package. -->
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-core</artifactId>
+            <scope>compile</scope><!-- normally runtime -->
+            <optional>true</optional>
+        </dependency>
         <dependency>
             <!-- Required if you're using anything in the httpclient package -->
             <groupId>org.apache.httpcomponents</groupId>
@@ -69,8 +85,8 @@
             <artifactId>velocity</artifactId>
             <optional>true</optional>
         </dependency>
-
         <dependency>
+            <!--  Required if you're using classes from the security package. -->
             <groupId>org.bouncycastle</groupId>
             <artifactId>bcprov-jdk15</artifactId>
             <optional>true</optional>
@@ -78,16 +94,12 @@
 
         <!-- Provided Dependencies -->
         <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>provided</scope>
         </dependency>
 
         <!-- Runtime Dependencies -->
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>javax.servlet-api</artifactId>
-        </dependency>
 
         <!-- Test Dependencies -->
         <dependency>
@@ -101,11 +113,6 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>${spring.groupId}</groupId>
-            <artifactId>spring-webmvc</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
             <groupId>joda-time</groupId>
             <artifactId>joda-time</artifactId>
             <scope>test</scope>



More information about the commits mailing list