Adding SLF4J Simple as a test dependency so that ITs that depend on a particular logging output match as the output has always been

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@1407911 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2012-11-11 04:36:28 +00:00
parent e67112bb27
commit acb025276c
1 changed files with 8 additions and 1 deletions

View File

@ -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>