Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
be578815
Commit
be578815
authored
Aug 05, 2013
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exclude commons-logging from test dependencies
parent
8e8c7135
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
4 deletions
+22
-4
pom.xml
spring-boot-parent/pom.xml
+8
-2
pom.xml
spring-boot-starters/spring-boot-starter-parent/pom.xml
+7
-1
pom.xml
spring-boot-starters/src/main/parent/pom.xml
+7
-1
No files found.
spring-boot-parent/pom.xml
View file @
be578815
...
...
@@ -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>
...
...
spring-boot-starters/spring-boot-starter-parent/pom.xml
View file @
be578815
...
...
@@ -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>
...
...
spring-boot-starters/src/main/parent/pom.xml
View file @
be578815
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment