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 2841e0e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
java-version: 17

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
Expand Down
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 2841e0e

Please sign in to comment.