Skip to content

Commit 9a6612c

Browse files
authored
Upgrade Spring Boot to 3.3.0
1 parent a098ec6 commit 9a6612c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/setup-java@v3
2121
with:
2222
distribution: zulu
23-
java-version: 11
23+
java-version: 17
2424

2525
- name: Setup Gradle
2626
uses: gradle/gradle-build-action@v2

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Sadv1r
3+
Copyright (c) 2024 Sadv1r
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.springframework.boot.gradle.plugin.SpringBootPlugin
22

33
plugins {
4-
id 'org.springframework.boot' version '2.7.18' apply false
4+
id 'org.springframework.boot' version '3.3.0' apply false
55
}
66

77
ext {
@@ -29,7 +29,7 @@ configure(moduleProjects) {
2929

3030
java {
3131
toolchain {
32-
languageVersion = JavaLanguageVersion.of(11)
32+
languageVersion = JavaLanguageVersion.of(17)
3333
}
3434
}
3535

samples/web-sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.7.18'
3+
id 'org.springframework.boot' version '3.3.0'
44
id 'io.spring.dependency-management'
55
}
66

@@ -14,6 +14,6 @@ dependencies {
1414

1515
java {
1616
toolchain {
17-
languageVersion = JavaLanguageVersion.of(11)
17+
languageVersion = JavaLanguageVersion.of(17)
1818
}
1919
}

samples/webflux-sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.7.18'
3+
id 'org.springframework.boot' version '3.3.0'
44
id 'io.spring.dependency-management'
55
}
66

@@ -14,6 +14,6 @@ dependencies {
1414

1515
java {
1616
toolchain {
17-
languageVersion = JavaLanguageVersion.of(11)
17+
languageVersion = JavaLanguageVersion.of(17)
1818
}
1919
}

0 commit comments

Comments
 (0)