Skip to content

Commit

Permalink
Upgrade Gradle and Kotlin versions
Browse files Browse the repository at this point in the history
Updated Gradle to version 8.10 and Kotlin to 2.0.20 in the configuration files. This change ensures compatibility with the latest features and improvements.
  • Loading branch information
Denis Timakov committed Aug 23, 2024
1 parent de6fbba commit d1aa3b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ jobs:
- name: Build with Gradle
uses: gradle/gradle-build-action@v3
with:
gradle-version: 8.9
gradle-version: 8.10
arguments: build
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
plugins {
idea
id("com.github.ben-manes.versions") version "0.51.0"
kotlin("jvm") version "2.0.10"
kotlin("jvm") version "2.0.20"
}

group = "ru.timakden"
Expand Down Expand Up @@ -41,7 +41,7 @@ tasks {
useJUnitPlatform()
}
wrapper {
gradleVersion = "8.9"
gradleVersion = "8.10"
}
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit d1aa3b2

Please sign in to comment.