Exclude commons-logging from test dependencies
This commit is contained in:
parent
8e8c7135d1
commit
be57881598
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue