mirror of https://github.com/apache/maven.git
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:
parent
e67112bb27
commit
acb025276c
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue