File tree Expand file tree Collapse file tree
.github/actions/setup-java-gradle Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 uses : actions/setup-java@v5
66 with :
77 distribution : temurin
8- java-version : 21
8+ java-version : 25
99
1010 - name : Setup Gradle
1111 uses : gradle/actions/setup-gradle@v4
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ template repo for Java (or Kotlin/Scala) Gradle projects
77
88## Features
99
10- - JDK 21
10+ - JDK 25
1111- [ Gradle 9] ( https://github.com/gradle/gradle ) (Kotlin DSL)
1212- [ GitHub Actions] ( https://github.com/features/actions ) CI/CD
1313- Automatic code formatting via [ Spotless] ( https://github.com/diffplug/spotless )
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ allprojects {
2424
2525 apply (plugin = " java" )
2626 configure<JavaPluginExtension > {
27- sourceCompatibility = JavaVersion .VERSION_21
28- targetCompatibility = JavaVersion .VERSION_21
27+ sourceCompatibility = JavaVersion .VERSION_25
28+ targetCompatibility = JavaVersion .VERSION_25
2929 }
3030
3131 apply (plugin = " com.diffplug.spotless" )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ plugins {
33}
44
55kotlin {
6- jvmToolchain(21 )
6+ jvmToolchain(25 )
77}
88
99// TODO disabling on Kotlin/Scala atm... too many false positives
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ truth = "1.4.4"
88mockito = " 5.19.0"
99# langs
1010scala = " 3.7.1"
11- kotlin = " 2.2.10 "
11+ kotlin = " 2.3.0 "
1212# plugins
13- spotless = " 7.2.1 "
13+ spotless = " 8.0.0 "
1414checkstyle = " 10.12.0"
1515spotbugs-plugin = " 6.2.5"
1616buildtimetracker = " 5.0.1"
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-9.0 .0-all.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.1 .0-all.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments