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
68e5a7e8
Commit
68e5a7e8
authored
Aug 02, 2013
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump version to 0.5.0.M1
parent
fda537d3
Changes
39
Hide whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
61 additions
and
44 deletions
+61
-44
pom.xml
pom.xml
+2
-2
pom.xml
spring-boot-actuator/pom.xml
+1
-1
pom.xml
spring-boot-autoconfigure/pom.xml
+1
-1
pom.xml
spring-boot-cli/pom.xml
+1
-1
pom.xml
spring-boot-gradle-plugin/pom.xml
+1
-1
pom.xml
spring-boot-integration-tests/pom.xml
+1
-1
pom.xml
spring-boot-loader-tools/pom.xml
+1
-1
pom.xml
...rg.springframework.boot/spring-boot-sample-tomcat/pom.xml
+1
-1
pom.xml
spring-boot-loader/pom.xml
+1
-1
pom.xml
spring-boot-maven-plugin/pom.xml
+1
-1
pom.xml
spring-boot-samples/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-actuator/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-batch/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
+1
-1
SampleDataJpaApplicationTests.java
...k/boot/sample/data/jpa/SampleDataJpaApplicationTests.java
+1
-2
pom.xml
spring-boot-samples/spring-boot-sample-integration/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-jetty/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-profile/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-simple/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-tomcat/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-traditional/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-web-static/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-web-ui/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-xml/pom.xml
+1
-1
pom.xml
spring-boot-starters/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-actuator/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-batch/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-data-jpa/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-integration/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-jetty/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-logging/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-parent/pom.xml
+12
-3
pom.xml
spring-boot-starters/spring-boot-starter-security/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-tomcat/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-web/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter/pom.xml
+1
-1
pom.xml
spring-boot-starters/src/main/parent/pom.xml
+11
-2
pom.xml
spring-boot/pom.xml
+1
-1
No files found.
pom.xml
View file @
68e5a7e8
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
<prerequisites>
<prerequisites>
<maven>
3.0.0
</maven>
<maven>
3.0.0
</maven>
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
<java.version>
1.6
</java.version>
<java.version>
1.6
</java.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<maven.version>
3.0.5
</maven.version>
<maven.version>
3.0.5
</maven.version>
<spring.version>
4.0.0.
BUILD-SNAPSHOT
</spring.version>
<spring.version>
4.0.0.
M2
</spring.version>
<spring.security.version>
3.2.0.M2
</spring.security.version>
<spring.security.version>
3.2.0.M2
</spring.security.version>
<spring.integration.version>
2.2.4.RELEASE
</spring.integration.version>
<spring.integration.version>
2.2.4.RELEASE
</spring.integration.version>
<spring.batch.version>
2.2.0.RELEASE
</spring.batch.version>
<spring.batch.version>
2.2.0.RELEASE
</spring.batch.version>
...
...
spring-boot-actuator/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-actuator
</artifactId>
<artifactId>
spring-boot-actuator
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-autoconfigure/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-autoconfigure
</artifactId>
<artifactId>
spring-boot-autoconfigure
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-cli/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-cli
</artifactId>
<artifactId>
spring-boot-cli
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-gradle-plugin/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-gradle-plugin
</artifactId>
<artifactId>
spring-boot-gradle-plugin
</artifactId>
<properties>
<properties>
...
...
spring-boot-integration-tests/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-integration-tests
</artifactId>
<artifactId>
spring-boot-integration-tests
</artifactId>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
...
...
spring-boot-loader-tools/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-loader-tools
</artifactId>
<artifactId>
spring-boot-loader-tools
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-loader-tools/src/test/resources/META-INF/maven/org.springframework.boot/spring-boot-sample-tomcat/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-tomcat
</artifactId>
<artifactId>
spring-boot-sample-tomcat
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-loader/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-loader
</artifactId>
<artifactId>
spring-boot-loader
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-maven-plugin/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<packaging>
maven-plugin
</packaging>
<packaging>
maven-plugin
</packaging>
...
...
spring-boot-samples/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
...
...
spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-actuator-ui
</artifactId>
<artifactId>
spring-boot-sample-actuator-ui
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-actuator/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-actuator
</artifactId>
<artifactId>
spring-boot-sample-actuator
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-batch/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-batch
</artifactId>
<artifactId>
spring-boot-sample-batch
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-data-jpa
</artifactId>
<artifactId>
spring-boot-sample-data-jpa
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-data-jpa/src/test/java/org/springframework/boot/sample/data/jpa/SampleDataJpaApplicationTests.java
View file @
68e5a7e8
...
@@ -26,7 +26,6 @@ import org.junit.AfterClass;
...
@@ -26,7 +26,6 @@ import org.junit.AfterClass;
import
org.junit.BeforeClass
;
import
org.junit.BeforeClass
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.sample.data.jpa.SampleDataJpaApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.http.ResponseEntity
;
...
@@ -56,7 +55,7 @@ public class SampleDataJpaApplicationTests {
...
@@ -56,7 +55,7 @@ public class SampleDataJpaApplicationTests {
.
run
(
SampleDataJpaApplication
.
class
);
.
run
(
SampleDataJpaApplication
.
class
);
}
}
});
});
context
=
future
.
get
(
1
0
,
TimeUnit
.
SECONDS
);
context
=
future
.
get
(
3
0
,
TimeUnit
.
SECONDS
);
}
}
@AfterClass
@AfterClass
...
...
spring-boot-samples/spring-boot-sample-integration/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-integration
</artifactId>
<artifactId>
spring-boot-sample-integration
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-jetty/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-jetty
</artifactId>
<artifactId>
spring-boot-sample-jetty
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-profile/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-profile
</artifactId>
<artifactId>
spring-boot-sample-profile
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-simple/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-simple
</artifactId>
<artifactId>
spring-boot-sample-simple
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-tomcat/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-tomcat
</artifactId>
<artifactId>
spring-boot-sample-tomcat
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-traditional/pom.xml
View file @
68e5a7e8
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-traditional
</artifactId>
<artifactId>
spring-boot-sample-traditional
</artifactId>
<packaging>
war
</packaging>
<packaging>
war
</packaging>
...
...
spring-boot-samples/spring-boot-sample-web-static/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-web-static
</artifactId>
<artifactId>
spring-boot-sample-web-static
</artifactId>
<packaging>
war
</packaging>
<packaging>
war
</packaging>
...
...
spring-boot-samples/spring-boot-sample-web-ui/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-web-ui
</artifactId>
<artifactId>
spring-boot-sample-web-ui
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-samples/spring-boot-sample-xml/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-samples
</artifactId>
<artifactId>
spring-boot-samples
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-sample-xml
</artifactId>
<artifactId>
spring-boot-sample-xml
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
...
...
spring-boot-starters/spring-boot-starter-actuator/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-actuator
</artifactId>
<artifactId>
spring-boot-starter-actuator
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter-batch/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-batch
</artifactId>
<artifactId>
spring-boot-starter-batch
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter-data-jpa/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-data-jpa
</artifactId>
<artifactId>
spring-boot-starter-data-jpa
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter-integration/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-integration
</artifactId>
<artifactId>
spring-boot-starter-integration
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter-jetty/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-jetty
</artifactId>
<artifactId>
spring-boot-starter-jetty
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter-logging/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-logging
</artifactId>
<artifactId>
spring-boot-starter-logging
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter-parent/pom.xml
View file @
68e5a7e8
...
@@ -19,7 +19,7 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
...
@@ -19,7 +19,7 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
<!-- Intentionally do not inherit from boot-parent -->
<!-- Intentionally do not inherit from boot-parent -->
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
...
@@ -27,8 +27,17 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
...
@@ -27,8 +27,17 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
<java.version>
1.6
</java.version>
<java.version>
1.6
</java.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<spring.version>
4.0.0.BUILD-SNAPSHOT
</spring.version>
<spring.version>
4.0.0.M2
</spring.version>
<spring.boot.version>
0.5.0.BUILD-SNAPSHOT
</spring.boot.version>
<spring.security.version>
3.2.0.M2
</spring.security.version>
<spring.integration.version>
2.2.4.RELEASE
</spring.integration.version>
<spring.batch.version>
2.2.0.RELEASE
</spring.batch.version>
<groovy.version>
2.1.6
</groovy.version>
<gradle.version>
1.6
</gradle.version>
<tomcat.version>
7.0.42
</tomcat.version>
<jetty.version>
8.1.9.v20130131
</jetty.version>
<aspectj.version>
1.7.3
</aspectj.version>
<reactor.version>
1.0.0.M1
</reactor.version>
<spring.boot.version>
0.5.0.M1
</spring.boot.version>
</properties>
</properties>
<prerequisites>
<prerequisites>
...
...
spring-boot-starters/spring-boot-starter-security/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-security
</artifactId>
<artifactId>
spring-boot-starter-security
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter-tomcat/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter-web/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter-web
</artifactId>
<artifactId>
spring-boot-starter-web
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/spring-boot-starter/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot-starter
</artifactId>
<artifactId>
spring-boot-starter
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
spring-boot-starters/src/main/parent/pom.xml
View file @
68e5a7e8
...
@@ -19,7 +19,7 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
...
@@ -19,7 +19,7 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
<!-- Intentionally do not inherit from boot-parent -->
<!-- Intentionally do not inherit from boot-parent -->
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
...
@@ -27,7 +27,16 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
...
@@ -27,7 +27,16 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
<java.version>
1.6
</java.version>
<java.version>
1.6
</java.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<spring.version>
4.0.0.BUILD-SNAPSHOT
</spring.version>
<spring.version>
@{spring.version}
</spring.version>
<spring.security.version>
@{spring.security.version}
</spring.security.version>
<spring.integration.version>
@{spring.integration.version}
</spring.integration.version>
<spring.batch.version>
@{spring.batch.version}
</spring.batch.version>
<groovy.version>
@{groovy.version}
</groovy.version>
<gradle.version>
@{gradle.version}
</gradle.version>
<tomcat.version>
@{tomcat.version}
</tomcat.version>
<jetty.version>
@{jetty.version}
</jetty.version>
<aspectj.version>
@{aspectj.version}
</aspectj.version>
<reactor.version>
@{reactor.version}
</reactor.version>
<spring.boot.version>
@{project.version}
</spring.boot.version>
<spring.boot.version>
@{project.version}
</spring.boot.version>
</properties>
</properties>
...
...
spring-boot/pom.xml
View file @
68e5a7e8
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-parent
</artifactId>
<artifactId>
spring-boot-parent
</artifactId>
<version>
0.5.0.
BUILD-SNAPSHOT
</version>
<version>
0.5.0.
M1
</version>
</parent>
</parent>
<artifactId>
spring-boot
</artifactId>
<artifactId>
spring-boot
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
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