Commit be578815 authored by Phillip Webb's avatar Phillip Webb

Exclude commons-logging from test dependencies

parent 8e8c7135
......@@ -34,7 +34,7 @@
</scm>
<dependencyManagement>
<dependencies>
<!-- Additional Dependencies the consumers of spring-boot-dependencies
<!-- Additional Dependencies the consumers of spring-boot-dependencies
will generally not need -->
<dependency>
<groupId>net.sf.jopt-simple</groupId>
......@@ -164,6 +164,12 @@
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<repositories>
......@@ -288,7 +294,7 @@
</build>
<profiles>
<profile>
<!-- Allow snapshots and milestones when building locally, this profile
<!-- Allow snapshots and milestones when building locally, this profile
should not be enabled during release. -->
<id>spring-snapshot-build</id>
<activation>
......
......@@ -17,7 +17,7 @@
<packaging>pom</packaging>
<properties>
<spring.boot.version>0.5.0.BUILD-SNAPSHOT</spring.boot.version>
<java.version>1.6</java.version>
<java.version>1.6</java.version>
</properties>
<dependencyManagement>
<dependencies>
......@@ -99,6 +99,12 @@
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
......
......@@ -17,7 +17,7 @@
<packaging>pom</packaging>
<properties>
<spring.boot.version>@{project.version}</spring.boot.version>
<java.version>1.6</java.version>
<java.version>1.6</java.version>
</properties>
<dependencyManagement>
<dependencies>
......@@ -99,6 +99,12 @@
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment