Skip to content

Commit 608f008

Browse files
committed
Update Gradle to 8.10
1 parent efcf018 commit 608f008

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Gradle
1919
uses: gradle/actions/setup-gradle@v3
2020
with:
21-
gradle-version: 8.9
21+
gradle-version: 8.10
2222
- name: Cache SonarCloud packages
2323
uses: actions/cache@v4
2424
with:

build.gradle

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,19 @@ sonar {
3434
}
3535
}
3636

37-
ext {
38-
javaVersion = JavaVersion.VERSION_21
39-
}
40-
4137
allprojects {
4238
group = 'com.ak'
43-
version = '2024.08.06'
39+
version = '2024.08.16'
4440
apply plugin: 'idea'
4541
apply plugin: 'java-library'
4642
apply plugin: 'org.javamodularity.moduleplugin'
4743
apply plugin: 'jacoco'
4844
apply plugin: 'org.barfuin.gradle.jacocolog'
4945

5046
java {
51-
sourceCompatibility = javaVersion
52-
targetCompatibility = javaVersion
47+
toolchain {
48+
languageVersion = JavaLanguageVersion.of(21)
49+
}
5350
}
5451

5552
jacoco {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

hello/src/main/java/com/ak/app/MainApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ private MainApp() {
77
}
88

99
public static void main(String[] args) {
10-
Logger.getLogger(MainApp.class.getName()).info(() -> "Hello word 2024.08.06!");
10+
Logger.getLogger(MainApp.class.getName()).info(() -> "Hello word 2024.08.16!");
1111
}
1212
}

libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
javamodularity-moduleplugin = '1.8.15'
33
sonarqube = '5.1.0.4882'
44
jacocolog = '3.1.0'
5-
spotbugs = '6.0.19'
5+
spotbugs = '6.0.20'
66
ben-manes-versions = '0.51.0'
77
nebula-lint = '19.0.3'
88
dependency-analysis = '1.33.0'
99

1010
jsr305 = '3.0.2'
11-
junit = '5.11.0-RC1'
11+
junit = '5.11.0'
1212
assertj = '3.26.3'
1313

1414
[plugins]

0 commit comments

Comments
 (0)