Skip to content

Commit

Permalink
Updated Spring cloud version and documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
corneil committed Dec 19, 2023
1 parent 3c8d6c0 commit 91dbbd4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Keep spring boot version in sync between spring-cloud-dataflow-build and spring-boot-dependencies (parent and properties) -->
<spring-boot.version>2.7.18</spring-boot.version>
<spring-cloud.version>2021.0.8</spring-cloud.version>
<spring-cloud.version>2021.0.9</spring-cloud.version>
<spring-shell.version>2.1.13</spring-shell.version>
<commons-io.version>2.7</commons-io.version>
<commons-text.version>1.10.0</commons-text.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,20 +96,19 @@ Working build file for _Maven_ would look like something shown below:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<version>2.7.18</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-cloud.version>Dalston.SR5</spring-cloud.version>
<spring-cloud.version>2021.9</spring-cloud.version>
<spring-cloud-skipper.version>{project-version}</spring-cloud-skipper.version>
<!--
reactor and flyway are managed by boot so only clean way with maven is to
change version properties. trying to import boms in dependencyManagement
would not actually change versions.
reactor and flyway are managed by boot so this is an illustration of how to modify the versions since
trying to import boms in dependencyManagement would not actually change versions.
-->
<reactor.version>3.0.7.RELEASE</reactor.version>
<flyway.version>5.0.5</flyway.version>
Expand Down Expand Up @@ -164,7 +163,7 @@ Working build file for _Gradle_ would look like something shown below:
----
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
springBootVersion = '2.7.18'
}
repositories {
mavenCentral()
Expand Down Expand Up @@ -192,7 +191,7 @@ repositories {
ext {
springCloudVersion = 'Dalston.SR5'
springCloudVersion = '2021.9'
springCloudSkipperVersion = '{project-version}'
reactorVersion = 'Aluminium-SR3'
reactorNettyVersion = '0.6.6.RELEASE'
Expand Down

0 comments on commit 91dbbd4

Please sign in to comment.