You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2015/01/16 11:48:47 UTC

svn commit: r1652381 - /sling/trunk/testing/junit/remote/pom.xml

Author: kwin
Date: Fri Jan 16 10:48:47 2015
New Revision: 1652381

URL: http://svn.apache.org/r1652381
Log:
SLING-4321 make SLF4J API available at compile and testing time (even for dependent modules)

Modified:
    sling/trunk/testing/junit/remote/pom.xml

Modified: sling/trunk/testing/junit/remote/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/testing/junit/remote/pom.xml?rev=1652381&r1=1652380&r2=1652381&view=diff
==============================================================================
--- sling/trunk/testing/junit/remote/pom.xml (original)
+++ sling/trunk/testing/junit/remote/pom.xml Fri Jan 16 10:48:47 2015
@@ -87,10 +87,13 @@
             <version>4.8.2</version>
             <scope>compile</scope>
         </dependency>
+        <!-- SLF4J is needed at runtime (whenever SlingRemoteTestRunner is executed) -->
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
             <version>1.5.11</version>
+            <!-- scope must be given explicitly because it has provided scope in the depMgmt -->
+            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>