use slf4j-simple to have cassandra server logging

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1491740 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-06-11 11:16:31 +00:00
parent cd003d0ce8
commit 4c7bd2a3b0
1 changed files with 10 additions and 4 deletions

View File

@ -156,10 +156,7 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jcl</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
@ -274,6 +271,8 @@
</goals>
<configuration>
<rpcPort>${cassandraPort}</rpcPort>
<addMainClasspath>false</addMainClasspath>
<addTestClasspath>false</addTestClasspath>
</configuration>
</execution>
<execution>
@ -284,6 +283,13 @@
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
<pluginManagement>