Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 71ce3b4

Browse files
authored
Upgrade sample projects to Spring Boot 2.1.3 (#305)
Further updates: * Spring REST Docs to 2.0.3 * Kotlin to 1.3.21 * Spring Security OAuth 2 to 2.3.5 * Jackson Databind to 2.9.8
1 parent 14554fd commit 71ce3b4

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

samples/java-webflux/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>2.0.6.RELEASE</version>
10+
<version>2.1.3.RELEASE</version>
1111
<relativePath/>
1212
</parent>
1313

@@ -34,7 +34,7 @@
3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3636
<start-class>capital.scalable.restdocs.example.Application</start-class>
37-
<spring-restdocs.version>2.0.2.RELEASE</spring-restdocs.version>
37+
<spring-restdocs.version>2.0.3.RELEASE</spring-restdocs.version>
3838
<spring-auto-restdocs.version>2.0.5-SNAPSHOT</spring-auto-restdocs.version>
3939
</properties>
4040

samples/java-webmvc/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
buildscript {
22
ext {
33
springAutoRestDocsVersion = "2.0.5-SNAPSHOT"
4-
springRestDocsVersion = "2.0.2.RELEASE"
5-
springBootVersion = "2.0.6.RELEASE"
4+
springRestDocsVersion = "2.0.3.RELEASE"
5+
springBootVersion = "2.1.3.RELEASE"
66
}
77
repositories {
88
jcenter()
@@ -51,7 +51,7 @@ repositories {
5151
dependencies {
5252
compile "org.springframework.boot:spring-boot-starter-web"
5353
compile "org.springframework.boot:spring-boot-starter-security"
54-
compile "org.springframework.security.oauth:spring-security-oauth2:2.3.4.RELEASE"
54+
compile "org.springframework.security.oauth:spring-security-oauth2:2.3.5.RELEASE"
5555
compile "org.springframework.data:spring-data-commons"
5656
compile "org.springframework.boot:spring-boot-starter-hateoas"
5757
compile "capital.scalable:spring-auto-restdocs-core:$springAutoRestDocsVersion"

samples/java-webmvc/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>2.0.6.RELEASE</version>
10+
<version>2.1.3.RELEASE</version>
1111
<relativePath/>
1212
</parent>
1313

@@ -34,7 +34,7 @@
3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3636
<start-class>capital.scalable.restdocs.example.Application</start-class>
37-
<spring-restdocs.version>2.0.2.RELEASE</spring-restdocs.version>
37+
<spring-restdocs.version>2.0.3.RELEASE</spring-restdocs.version>
3838
<spring-auto-restdocs.version>2.0.5-SNAPSHOT</spring-auto-restdocs.version>
3939
</properties>
4040

@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>org.springframework.security.oauth</groupId>
5757
<artifactId>spring-security-oauth2</artifactId>
58-
<version>2.3.4.RELEASE</version>
58+
<version>2.3.5.RELEASE</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.springframework.boot</groupId>

samples/kotlin-webmvc/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
buildscript {
22
ext {
3-
kotlinVersion = "1.3.0"
3+
kotlinVersion = "1.3.21"
44
springAutoRestDocsVersion = "2.0.5-SNAPSHOT"
5-
springRestDocsVersion = "2.0.2.RELEASE"
6-
springBootVersion = "2.0.6.RELEASE"
5+
springRestDocsVersion = "2.0.3.RELEASE"
6+
springBootVersion = "2.1.3.RELEASE"
77
dokkaVersion = "0.9.17"
88
}
99
repositories {
@@ -59,7 +59,7 @@ dependencies {
5959
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
6060
compile "org.springframework.boot:spring-boot-starter-web"
6161
compile "org.springframework.boot:spring-boot-starter-security"
62-
compile "org.springframework.security.oauth:spring-security-oauth2:2.3.0.RELEASE"
62+
compile "org.springframework.security.oauth:spring-security-oauth2:2.3.5.RELEASE"
6363
compile "org.springframework.data:spring-data-commons"
6464
compile "com.fasterxml.jackson.module:jackson-module-kotlin"
6565
compile "capital.scalable:spring-auto-restdocs-core:$springAutoRestDocsVersion"

samples/kotlin-webmvc/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>2.0.6.RELEASE</version>
10+
<version>2.1.3.RELEASE</version>
1111
<relativePath/>
1212
</parent>
1313

@@ -33,9 +33,9 @@
3333

3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36-
<spring-restdocs.version>2.0.2.RELEASE</spring-restdocs.version>
36+
<spring-restdocs.version>2.0.3.RELEASE</spring-restdocs.version>
3737
<spring-auto-restdocs.version>2.0.5-SNAPSHOT</spring-auto-restdocs.version>
38-
<kotlin.version>1.3.0</kotlin.version>
38+
<kotlin.version>1.3.21</kotlin.version>
3939
<dokka.version>0.9.17</dokka.version>
4040
<jsonDirectory>${project.build.directory}/generated-javadoc-json</jsonDirectory>
4141
</properties>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.springframework.security.oauth</groupId>
5959
<artifactId>spring-security-oauth2</artifactId>
60-
<version>2.3.4.RELEASE</version>
60+
<version>2.3.5.RELEASE</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>org.springframework.boot</groupId>

samples/shared/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>2.0.6.RELEASE</version>
10+
<version>2.1.3.RELEASE</version>
1111
<relativePath/>
1212
</parent>
1313

@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>com.fasterxml.jackson.core</groupId>
4242
<artifactId>jackson-databind</artifactId>
43-
<version>2.9.7</version>
43+
<version>2.9.8</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>javax.validation</groupId>

0 commit comments

Comments
 (0)