Skip to content

Commit ae14534

Browse files
committed
Upgrade to Spring Boot 2.0.0.M5
1 parent 2222bc7 commit ae14534

File tree

54 files changed

+77
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+77
-79
lines changed

1/part1/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// tag::buildscript[]
22
buildscript {
33
ext {
4-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
4+
springBootVersion = '2.0.0.M5'
55
}
66
repositories {
77
mavenCentral()

10/part1/chat/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// tag::propdeps-plugin-1[]
22
buildscript {
33
ext {
4-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
4+
springBootVersion = '2.0.0.M5'
55
springCloudVersion = 'Finchley.BUILD-SNAPSHOT'
66
springCloudStreamVersion = 'Elmhurst.M1'
77
}
@@ -60,7 +60,7 @@ configurations {
6060

6161
dependencies {
6262
compile('org.springframework.boot:spring-boot-starter-webflux')
63-
compile('org.synchronoss.cloud:nio-multipart-parser:1.1.0')
63+
compile('org.synchronoss.cloud:nio-multipart-parser')
6464
compile('org.springframework.boot:spring-boot-starter-actuator')
6565
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
6666
compile('org.springframework.boot:spring-boot-devtools')

10/part1/comments/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
3+
springBootVersion = '2.0.0.M5'
44
springCloudVersion = 'Finchley.BUILD-SNAPSHOT'
55
springCloudStreamVersion = 'Elmhurst.M1'
66
}

10/part1/config-server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
3+
springBootVersion = '2.0.0.M5'
44
springCloudVersion = 'Finchley.BUILD-SNAPSHOT'
55
}
66
repositories {

10/part1/eureka-server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
3+
springBootVersion = '2.0.0.M5'
44
springCloudVersion = 'Finchley.BUILD-SNAPSHOT'
55
}
66
repositories {

10/part1/hystrix-dashboard/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
3+
springBootVersion = '2.0.0.M5'
44
springCloudVersion = 'Finchley.BUILD-SNAPSHOT'
55
}
66
repositories {

10/part1/images/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
3+
springBootVersion = '2.0.0.M5'
44
springCloudVersion = 'Finchley.BUILD-SNAPSHOT'
55
springCloudStreamVersion = 'Elmhurst.M1'
66
}
@@ -46,11 +46,9 @@ configurations {
4646
all*.exclude group: 'org.springframework', module: 'spring-webmvc'
4747
}
4848

49-
ext['thymeleaf-spring5.version'] = '3.0.8-SNAPSHOT'
50-
5149
dependencies {
5250
compile('org.springframework.boot:spring-boot-starter-webflux')
53-
compile('org.synchronoss.cloud:nio-multipart-parser:1.1.0')
51+
compile('org.synchronoss.cloud:nio-multipart-parser')
5452
compile('org.springframework.boot:spring-boot-starter-data-mongodb-reactive')
5553
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
5654
compile('org.springframework.boot:spring-boot-starter-actuator')

2/part1/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
// tag::versions[]
33
ext {
4-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
4+
springBootVersion = '2.0.0.M5'
55
}
66
// end::versions[]
77
repositories {
@@ -37,7 +37,7 @@ repositories {
3737
dependencies {
3838
compile('org.springframework.boot:spring-boot-starter-webflux')
3939
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
40-
compile('org.synchronoss.cloud:nio-multipart-parser:1.1.0')
40+
compile('org.synchronoss.cloud:nio-multipart-parser')
4141
compile('org.projectlombok:lombok')
4242
testCompile('org.springframework.boot:spring-boot-starter-test')
4343
}

2/part2/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
3+
springBootVersion = '2.0.0.M5'
44
}
55
repositories {
66
mavenCentral()
@@ -40,7 +40,7 @@ dependencies {
4040
compile('org.springframework.boot:spring-boot-starter-tomcat')
4141
// end::netty[]
4242
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
43-
compile('org.synchronoss.cloud:nio-multipart-parser:1.1.0')
43+
compile('org.synchronoss.cloud:nio-multipart-parser')
4444
compile('org.projectlombok:lombok')
4545
testCompile('org.springframework.boot:spring-boot-starter-test')
4646
}

3/part1/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
3+
springBootVersion = '2.0.0.M5'
44
}
55
repositories {
66
mavenCentral()
@@ -34,7 +34,7 @@ repositories {
3434

3535
dependencies {
3636
compile('org.springframework.boot:spring-boot-starter-webflux')
37-
compile('org.synchronoss.cloud:nio-multipart-parser:1.1.0')
37+
compile('org.synchronoss.cloud:nio-multipart-parser')
3838
// tag::dep-1[]
3939
compile('org.springframework.boot:spring-boot-starter-data-mongodb-reactive')
4040
// end::dep-1[]

0 commit comments

Comments
 (0)