Skip to content

Commit

Permalink
Update reading versions (#25)
Browse files Browse the repository at this point in the history
* Update dependency versions for bookstore project

This commit updates all dependencies for the reading project.
This includes both maven and gralde builds in both initial and complete folders. This manual upgrade method is favored over dependabot at this time because multiple updates should be done simultaneously. Going forward this requirement should be handled with a more appropriate dependabot config file.

The dependency for springCloudVersion was changed from set to = so that dependabot can recognize this dependency for future updates.
  • Loading branch information
robertmcnees authored Jun 17, 2024
1 parent fa888d8 commit a16b77b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions complete/reading/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management' version '1.1.5'
}

group = 'com.example'
Expand All @@ -13,7 +13,7 @@ repositories {
}

ext {
set('springCloudVersion', "2022.0.0")
springCloudVersion = '2023.0.2'
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions complete/reading/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.2</version>
<version>3.3.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand All @@ -15,7 +15,7 @@
<description>Demo project for Spring Boot</description>
<properties>
<java.version>17</java.version>
<spring-cloud.version>2022.0.0</spring-cloud.version>
<spring-cloud.version>2023.0.2</spring-cloud.version>
</properties>
<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions initial/reading/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management' version '1.1.5'
}

group = 'com.example'
Expand All @@ -13,7 +13,7 @@ repositories {
}

ext {
set('springCloudVersion', "2022.0.0")
springCloudVersion = '2023.0.2'
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions initial/reading/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.2</version>
<version>3.3.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand All @@ -15,7 +15,7 @@
<description>Demo project for Spring Boot</description>
<properties>
<java.version>17</java.version>
<spring-cloud.version>2022.0.0</spring-cloud.version>
<spring-cloud.version>2023.0.2</spring-cloud.version>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit a16b77b

Please sign in to comment.