Skip to content

Commit 1fd3cad

Browse files
committed
Upgrade to Spring Boot 2.0.0.RELEASE
1 parent 70776ce commit 1fd3cad

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ tags: []
33
projects: []
44
---
55
:spring_version: current
6-
:spring_boot_version: 1.5.10.RELEASE
6+
:spring_boot_version: 2.0.0.RELEASE
77
:Controller: http://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/stereotype/Controller.html
88
:DispatcherServlet: http://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/web/servlet/DispatcherServlet.html
99
:SpringApplication: http://docs.spring.io/spring-boot/docs/{spring_boot_version}/api/org/springframework/boot/SpringApplication.html

complete/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE")
6+
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE")
77
}
88
}
99

1010
apply plugin: 'java'
1111
apply plugin: 'eclipse'
1212
apply plugin: 'idea'
1313
apply plugin: 'org.springframework.boot'
14+
apply plugin: 'io.spring.dependency-management'
1415

15-
jar {
16+
bootJar {
1617
baseName = 'draft-gs-template'
1718
version = '0.1.0'
1819
}

complete/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-starter-parent</artifactId>
13-
<version>1.5.10.RELEASE</version>
13+
<version>2.0.0.RELEASE</version>
1414
</parent>
1515

1616
<dependencies>

initial/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE")
6+
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE")
77
}
88
}
99

1010
apply plugin: 'java'
1111
apply plugin: 'eclipse'
1212
apply plugin: 'idea'
1313
apply plugin: 'org.springframework.boot'
14+
apply plugin: 'io.spring.dependency-management'
1415

15-
jar {
16+
bootJar {
1617
baseName = 'draft-gs-template'
1718
version = '0.1.0'
1819
}

initial/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-starter-parent</artifactId>
13-
<version>1.5.10.RELEASE</version>
13+
<version>2.0.0.RELEASE</version>
1414
</parent>
1515

1616
<dependencies>

0 commit comments

Comments
 (0)