Skip to content

Commit

Permalink
upgrade spring boot version
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomuri committed Aug 6, 2024
1 parent 1387237 commit 8d8eb05
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src-gui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'jacoco'
id 'org.springframework.boot' version '3.2.0'
id 'org.springframework.boot' version '3.3.2'
id 'checkstyle'
id 'war'
}
Expand Down
8 changes: 7 additions & 1 deletion src-java/grpc-speaker/grpc-service/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.springframework.boot" version "3.2.0"
id "org.springframework.boot" version "3.3.2"
id "java"
}

Expand Down Expand Up @@ -53,6 +53,12 @@ dependencies {
annotationProcessor("org.projectlombok:lombok")
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}

compileJava {
options.compilerArgs = [
"-Amapstruct.defaultComponentModel=spring",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.springframework.boot" version "3.2.0"
id "org.springframework.boot" version "3.3.2"
}

configurations {
Expand Down
2 changes: 1 addition & 1 deletion src-java/server42/server42-control-storm-stub/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.springframework.boot" version "3.2.0"
id "org.springframework.boot" version "3.3.2"
}

configurations {
Expand Down
2 changes: 1 addition & 1 deletion src-java/server42/server42-control/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.springframework.boot" version "3.2.0"
id "org.springframework.boot" version "3.3.2"
}

configurations {
Expand Down
2 changes: 1 addition & 1 deletion src-java/server42/server42-stats/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.springframework.boot" version "3.2.0"
id "org.springframework.boot" version "3.3.2"
}

configurations {
Expand Down

0 comments on commit 8d8eb05

Please sign in to comment.