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

noreply at shibboleth.net noreply at shibboleth.net
Fri Oct 12 18:18:19 EDT 2012


Author: tzeller
Date: Fri Oct 12 18:18:19 2012
New Revision: 295

URL: http://svn.shibboleth.net/view/utilities?rev=295&view=rev
Log:
Maven scope for logback-classic is now "provided" instead of "compile" or "test" so that java-support compiles and logback-classic will not be a bundled or transitive dependency.

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=295&r1=294&r2=295&view=diff
==============================================================================
--- java-support/trunk/pom.xml (original)
+++ java-support/trunk/pom.xml Fri Oct 12 18:18:19 2012
@@ -40,10 +40,6 @@
     <dependencies>
         <!-- Compile Dependencies -->
         <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-        </dependency>
-        <dependency>
             <groupId>commons-codec</groupId>
             <artifactId>commons-codec</artifactId>
         </dependency>
@@ -71,6 +67,11 @@
         </dependency>
 
         <!-- Provided Dependencies -->
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-classic</artifactId>
+            <scope>provided</scope>
+        </dependency>
 
         <!-- Runtime Dependencies -->
         <dependency>



More information about the commits mailing list