File tree Expand file tree Collapse file tree 5 files changed +9
-12
lines changed
hello/src/main/java/com/ak/app Expand file tree Collapse file tree 5 files changed +9
-12
lines changed Original file line number Diff line number Diff line change 18
18
- name : Setup Gradle
19
19
uses : gradle/actions/setup-gradle@v3
20
20
with :
21
- gradle-version : 8.9
21
+ gradle-version : 8.10
22
22
- name : Cache SonarCloud packages
23
23
uses : actions/cache@v4
24
24
with :
Original file line number Diff line number Diff line change @@ -34,22 +34,19 @@ sonar {
34
34
}
35
35
}
36
36
37
- ext {
38
- javaVersion = JavaVersion . VERSION_21
39
- }
40
-
41
37
allprojects {
42
38
group = ' com.ak'
43
- version = ' 2024.08.06 '
39
+ version = ' 2024.08.16 '
44
40
apply plugin : ' idea'
45
41
apply plugin : ' java-library'
46
42
apply plugin : ' org.javamodularity.moduleplugin'
47
43
apply plugin : ' jacoco'
48
44
apply plugin : ' org.barfuin.gradle.jacocolog'
49
45
50
46
java {
51
- sourceCompatibility = javaVersion
52
- targetCompatibility = javaVersion
47
+ toolchain {
48
+ languageVersion = JavaLanguageVersion . of(21 )
49
+ }
53
50
}
54
51
55
52
jacoco {
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
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
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ private MainApp() {
7
7
}
8
8
9
9
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 !" );
11
11
}
12
12
}
Original file line number Diff line number Diff line change 2
2
javamodularity-moduleplugin = ' 1.8.15'
3
3
sonarqube = ' 5.1.0.4882'
4
4
jacocolog = ' 3.1.0'
5
- spotbugs = ' 6.0.19 '
5
+ spotbugs = ' 6.0.20 '
6
6
ben-manes-versions = ' 0.51.0'
7
7
nebula-lint = ' 19.0.3'
8
8
dependency-analysis = ' 1.33.0'
9
9
10
10
jsr305 = ' 3.0.2'
11
- junit = ' 5.11.0-RC1 '
11
+ junit = ' 5.11.0'
12
12
assertj = ' 3.26.3'
13
13
14
14
[plugins ]
You can’t perform that action at this time.
0 commit comments