Skip to content

Commit

Permalink
Upgrade Spring Boot to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sadv1r committed Jun 4, 2024
1 parent a098ec6 commit e2897df
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Sadv1r
Copyright (c) 2024 Sadv1r

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.springframework.boot.gradle.plugin.SpringBootPlugin

plugins {
id 'org.springframework.boot' version '2.7.18' apply false
id 'org.springframework.boot' version '3.3.0' apply false
}

ext {
Expand Down Expand Up @@ -29,7 +29,7 @@ configure(moduleProjects) {

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

Expand Down
4 changes: 2 additions & 2 deletions samples/web-sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.18'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management'
}

Expand All @@ -14,6 +14,6 @@ dependencies {

java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
languageVersion = JavaLanguageVersion.of(17)
}
}
4 changes: 2 additions & 2 deletions samples/webflux-sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.18'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management'
}

Expand All @@ -14,6 +14,6 @@ dependencies {

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

0 comments on commit e2897df

Please sign in to comment.