Use Spring Framework bom and fully exclude commons-logging

Closes #955
Closes #978
This commit is contained in:
Andy Wilkinson
2014-05-28 19:06:55 +01:00
parent 6fbafc3ca4
commit 7a8be3d600
6 changed files with 78 additions and 113 deletions

View File

@@ -20,6 +20,10 @@
</properties>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
@@ -150,11 +154,6 @@
<artifactId>spring-webmvc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>