Skip to content

Commit fd5bba9

Browse files
author
Marius Posta
committed
fix!: upgrade from java 17 to 21 and from gradle 7.6 to 8.10
1 parent 5077561 commit fd5bba9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/actions/publish/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
uses: actions/setup-java@v3
2020
with:
2121
distribution: "zulu"
22-
java-version: "17"
22+
java-version: "21"
2323

2424
# java
2525
- name: Gradle Build

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- uses: actions/setup-java@v1
4646
with:
47-
java-version: 17
47+
java-version: 21
4848

4949
# Initializes the CodeQL tools for scanning.
5050
- name: Initialize CodeQL

.github/workflows/pull-request-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/setup-java@v3
3232
with:
3333
distribution: "zulu"
34-
java-version: "17"
34+
java-version: "21"
3535

3636
- name: Generate Development Version
3737
run: |

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ subprojects { subproj ->
177177
apply plugin: 'com.github.spotbugs'
178178
apply plugin: 'pmd'
179179

180-
sourceCompatibility = JavaVersion.VERSION_17
181-
targetCompatibility = JavaVersion.VERSION_17
180+
sourceCompatibility = JavaVersion.VERSION_21
181+
targetCompatibility = JavaVersion.VERSION_21
182182

183183
repositories {
184184
mavenCentral()
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)