From e1c7205e483f5f75df5c33f4320cae34aa9c21e5 Mon Sep 17 00:00:00 2001 From: Jeremy Mailen Date: Sat, 13 Jul 2024 23:54:16 -0700 Subject: [PATCH] Update gradle and readme --- README.md | 10 +++++----- build.gradle.kts | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3be775a..9d3a644 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Available on the Gradle Plugins Portal: https://plugins.gradle.org/plugin/org.jm ```kotlin plugins { - id("org.jmailen.kotlinter") version "4.4.0" + id("org.jmailen.kotlinter") version "4.4.1" } ``` @@ -31,7 +31,7 @@ plugins { ```groovy plugins { - id "org.jmailen.kotlinter" version "4.4.0" + id "org.jmailen.kotlinter" version "4.4.1" } ``` @@ -45,7 +45,7 @@ Root `build.gradle.kts` ```kotlin plugins { - id("org.jmailen.kotlinter") version "4.4.0" apply false + id("org.jmailen.kotlinter") version "4.4.1" apply false } ``` @@ -65,7 +65,7 @@ Root `build.gradle` ```groovy plugins { - id 'org.jmailen.kotlinter' version "4.4.0" apply false + id 'org.jmailen.kotlinter' version "4.4.1" apply false } ``` @@ -319,7 +319,7 @@ Alternatively, if you have a custom build convention plugin that utilizes kotlin ```kotlin dependencies { implementation(platform("com.pinterest.ktlint:ktlint-bom:1.2.1")) - implementation("org.jmailen.gradle:kotlinter-gradle:4.4.0") + implementation("org.jmailen.gradle:kotlinter-gradle:4.4.1") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index cd3c111..168a959 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -96,7 +96,7 @@ tasks { } wrapper { - gradleVersion = "8.5" + gradleVersion = "8.9" } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 1af9e09..09523c0 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME