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
e99d2199
Commit
e99d2199
authored
Aug 05, 2013
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attempt to sort out logging dependencies
parent
3922a7f5
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
54 additions
and
20 deletions
+54
-20
pom.xml
spring-boot-cli/pom.xml
+6
-0
pom.xml
spring-boot-dependencies/pom.xml
+11
-0
pom.xml
spring-boot-parent/pom.xml
+8
-2
pom.xml
spring-boot-starters/spring-boot-starter-parent/pom.xml
+6
-0
pom.xml
spring-boot-starters/src/main/parent/pom.xml
+6
-0
pom.xml
spring-boot/pom.xml
+17
-18
No files found.
spring-boot-cli/pom.xml
View file @
e99d2199
...
...
@@ -40,6 +40,12 @@
<version>
3.16.1-GA
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
commons-logging
</groupId>
<artifactId>
commons-logging
</artifactId>
<version>
1.1.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<resources>
...
...
spring-boot-dependencies/pom.xml
View file @
e99d2199
...
...
@@ -215,6 +215,12 @@
<groupId>
org.springframework
</groupId>
<artifactId>
spring-core
</artifactId>
<version>
${spring.version}
</version>
<exclusions>
<exclusion>
<artifactId>
commons-logging
</artifactId>
<groupId>
commons-logging
</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
...
...
@@ -247,6 +253,11 @@
<artifactId>
spring-jms
</artifactId>
<version>
${spring.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-message
</artifactId>
<version>
${spring.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-orm
</artifactId>
...
...
spring-boot-parent/pom.xml
View file @
e99d2199
...
...
@@ -33,7 +33,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>
...
...
@@ -163,6 +163,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>
...
...
@@ -287,7 +293,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 @
e99d2199
...
...
@@ -99,6 +99,12 @@
<groupId>
org.springframework
</groupId>
<artifactId>
spring-test
</artifactId>
<scope>
test
</scope>
<exclusions>
<exclusion>
<artifactId>
commons-logging
</artifactId>
<groupId>
commons-logging
</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
...
...
spring-boot-starters/src/main/parent/pom.xml
View file @
e99d2199
...
...
@@ -99,6 +99,12 @@
<groupId>
org.springframework
</groupId>
<artifactId>
spring-test
</artifactId>
<scope>
test
</scope>
<exclusions>
<exclusion>
<artifactId>
commons-logging
</artifactId>
<groupId>
commons-logging
</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
...
...
spring-boot/pom.xml
View file @
e99d2199
...
...
@@ -23,7 +23,21 @@
<groupId>
org.springframework
</groupId>
<artifactId>
spring-context
</artifactId>
</dependency>
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
jcl-over-slf4j
</artifactId>
</dependency>
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-api
</artifactId>
</dependency>
<!-- Runtime -->
<!-- Optional -->
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
jul-to-slf4j
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
ch.qos.logback
</groupId>
<artifactId>
logback-classic
</artifactId>
...
...
@@ -60,18 +74,13 @@
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-api
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
jul-to-slf4j
</artifactId>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
<artifactId>
spring-web
mvc
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
...
...
@@ -95,16 +104,6 @@
<artifactId>
spring-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-webmvc
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
jcl-over-slf4j
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-jdk14
</artifactId>
...
...
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