You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2012/11/11 05:36:29 UTC

svn commit: r1407911 - /maven/core-integration-testing/trunk/core-it-suite/pom.xml

Author: jvanzyl
Date: Sun Nov 11 04:36:28 2012
New Revision: 1407911

URL: http://svn.apache.org/viewvc?rev=1407911&view=rev
Log:
Adding SLF4J Simple as a test dependency so that ITs that depend on a particular logging output match as the output has always been

Modified:
    maven/core-integration-testing/trunk/core-it-suite/pom.xml

Modified: maven/core-integration-testing/trunk/core-it-suite/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/pom.xml?rev=1407911&r1=1407910&r2=1407911&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/pom.xml Sun Nov 11 04:36:28 2012
@@ -76,6 +76,7 @@ under the License.
     <proxy.type>none</proxy.type>
     <proxy.user></proxy.user>
     <proxy.pass></proxy.pass>
+    <slf4jVersion>1.7.2</slf4jVersion>
   </properties>
 
   <dependencies>
@@ -196,7 +197,13 @@ under the License.
         <dependency>
           <groupId>org.slf4j</groupId>
           <artifactId>slf4j-api</artifactId>
-          <version>1.6.1</version>
+          <version>${slf4jVersion}</version>
+          <scope>test</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-simple</artifactId>
+          <version>${slf4jVersion}</version>
           <scope>test</scope>
         </dependency>
       </dependencies>