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
f5020980
Commit
f5020980
authored
Aug 06, 2013
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix logging depdendencies in samples
parent
12f0d4d9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
11 deletions
+12
-11
.travis.yml
.travis.yml
+1
-1
pom.xml
spring-boot-dependencies/pom.xml
+6
-0
pom.xml
spring-boot-samples/spring-boot-sample-actuator/pom.xml
+4
-9
pom.xml
spring-boot-starters/pom.xml
+1
-1
pom.xml
...tarters/spring-boot-starter-parent/src/main/maven/pom.xml
+0
-0
No files found.
.travis.yml
View file @
f5020980
...
@@ -12,6 +12,6 @@ after_failure:
...
@@ -12,6 +12,6 @@ after_failure:
env
:
env
:
global
:
global
:
-
"
ARTIFACTS_AWS_REGION=us-east-1"
-
"
ARTIFACTS_AWS_REGION=us-east-1"
-
"
ARTIFACTS_S3_BUCKET=
drogus-artifacts
"
-
"
ARTIFACTS_S3_BUCKET=
temp.springsource.com/spring-boot
"
-
secure
:
"
JCQ1uz/rfrtMiUAvxeMznVB2wTX/f7lrCBa6oOsskDPt1dMzxD4aEuOfq3QlROLPDhYyu3dnWh1+ABla3Dx4+dCVA9ASgFCq5ivO5Vkxr4c6g8tb7hp14EitGEnWfEpdn64K6mZ7e7a/yjaXU3Ry4AisvPSk7wCcbHisBbj1LzE="
-
secure
:
"
JCQ1uz/rfrtMiUAvxeMznVB2wTX/f7lrCBa6oOsskDPt1dMzxD4aEuOfq3QlROLPDhYyu3dnWh1+ABla3Dx4+dCVA9ASgFCq5ivO5Vkxr4c6g8tb7hp14EitGEnWfEpdn64K6mZ7e7a/yjaXU3Ry4AisvPSk7wCcbHisBbj1LzE="
-
secure
:
"
Dcya9JSXSa9qXDBXUihYxfCBL8VKCoIj5SQARMshYGLrs1zN2C4EcO4lcMkePTHWrGjpSqNdgnChUeg9YphWqODCcy2XhaMlSxwBYBDTye3hLGwKNdMKnrl/4yE+GoBg6Zaj9bB46Ua/GwLgZpOgM/b/VuCqnp6JC+hYOZKBhdg="
-
secure
:
"
Dcya9JSXSa9qXDBXUihYxfCBL8VKCoIj5SQARMshYGLrs1zN2C4EcO4lcMkePTHWrGjpSqNdgnChUeg9YphWqODCcy2XhaMlSxwBYBDTye3hLGwKNdMKnrl/4yE+GoBg6Zaj9bB46Ua/GwLgZpOgM/b/VuCqnp6JC+hYOZKBhdg="
spring-boot-dependencies/pom.xml
View file @
f5020980
...
@@ -282,6 +282,12 @@
...
@@ -282,6 +282,12 @@
<groupId>
org.springframework
</groupId>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-webmvc
</artifactId>
<artifactId>
spring-webmvc
</artifactId>
<version>
${spring.version}
</version>
<version>
${spring.version}
</version>
<exclusions>
<exclusion>
<artifactId>
commons-logging
</artifactId>
<groupId>
commons-logging
</groupId>
</exclusion>
</exclusions>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.batch
</groupId>
<groupId>
org.springframework.batch
</groupId>
...
...
spring-boot-samples/spring-boot-sample-actuator/pom.xml
View file @
f5020980
...
@@ -17,26 +17,21 @@
...
@@ -17,26 +17,21 @@
<dependency>
<dependency>
<groupId>
${project.groupId}
</groupId>
<groupId>
${project.groupId}
</groupId>
<artifactId>
spring-boot-starter-actuator
</artifactId>
<artifactId>
spring-boot-starter-actuator
</artifactId>
<version>
${project.version}
</version>
<exclusions>
<exclusions>
<exclusion>
<exclusion>
<groupId>
org.springframework.boot
</groupId>
<groupId>
ch.qos.logback
</groupId>
<artifactId>
spring-boot-starter-logging
</artifactId>
<artifactId>
logback-classic
</artifactId>
</exclusion>
</exclusion>
</exclusions>
</exclusions>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<groupId>
${project.groupId}
</groupId>
<artifactId>
jackson-databind
</artifactId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
javax.servlet
</groupId>
<groupId>
javax.servlet
</groupId>
<artifactId>
javax.servlet-api
</artifactId>
<artifactId>
javax.servlet-api
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-webmvc
</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-config
</artifactId>
<artifactId>
spring-security-config
</artifactId>
...
...
spring-boot-starters/pom.xml
View file @
f5020980
...
@@ -46,7 +46,7 @@
...
@@ -46,7 +46,7 @@
</delimiters>
</delimiters>
<resources>
<resources>
<resource>
<resource>
<directory>
src/main/parent
</directory>
<directory>
${basedir}/spring-boot-starter-parent/src/main/maven
</directory>
<filtering>
true
</filtering>
<filtering>
true
</filtering>
</resource>
</resource>
</resources>
</resources>
...
...
spring-boot-starters/s
rc/main/parent
/pom.xml
→
spring-boot-starters/s
pring-boot-starter-parent/src/main/maven
/pom.xml
View file @
f5020980
File moved
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