From c540964a4b95a9648f0675f43a959c7176a19a67 Mon Sep 17 00:00:00 2001 From: Jonathan Bisson Date: Sat, 30 Dec 2023 20:18:21 -0600 Subject: [PATCH] Update to 2023.3 --- CHANGELOG.md | 2 ++ build.gradle.kts | 6 ++---- gradle.properties | 6 +++--- gradle/libs.versions.toml | 8 ++++---- gradle/wrapper/gradle-wrapper.properties | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 307e90d..d021e4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ # File Permissions Plugin Changelog ## Unreleased +- Support for 2023.3 +- Updating dependencies ## 0.2.6 - 2023-04-10 - Support for 2023.1 diff --git a/build.gradle.kts b/build.gradle.kts index ec379bb..b8e5d62 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { alias(libs.plugins.changelog) // Gradle Changelog Plugin alias(libs.plugins.qodana) // Gradle Qodana Plugin alias(libs.plugins.kover) // Gradle Kover Plugin - id("com.github.ben-manes.versions") version "0.47.0" + id("com.github.ben-manes.versions") version "0.50.0" } group = properties("pluginGroup").get() @@ -45,9 +45,7 @@ changelog { // Configure Gradle Qodana Plugin - read more: https://github.com/JetBrains/gradle-qodana-plugin qodana { cachePath = provider { file(".qodana").canonicalPath } - reportPath = provider { file("build/reports/inspections").canonicalPath } - saveReport = true - showReport = environment("QODANA_SHOW_REPORT").map { it.toBoolean() }.getOrElse(false) + resultsPath = provider { file("build/qodana/results").canonicalPath } } // Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration diff --git a/gradle.properties b/gradle.properties index 1cb1bc5..7bbf6de 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,9 +3,9 @@ pluginGroup = net.bjonnh.intellij.filepermissionsplugin pluginName = File Permissions -pluginVersion = 0.2.7 +pluginVersion = 0.2.8 pluginSinceBuild = 222 -pluginUntilBuild = 232.* +pluginUntilBuild = 233.* # IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties platformType = IC @@ -17,7 +17,7 @@ platformPlugins = # Gradle Releases -> https://github.com/gradle/gradle/releases -gradleVersion = 8.2.1 +gradleVersion = 8.5 # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib kotlin.stdlib.default.dependency = false diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index c974082..642a88b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,10 +4,10 @@ annotations = "24.0.1" # plugins kotlin = "1.9.0" -changelog = "2.1.2" -gradleIntelliJPlugin = "1.15.0" -qodana = "0.1.13" -kover = "0.7.2" +changelog = "2.2.0" +gradleIntelliJPlugin = "1.16.1" +qodana = "2023.2.1" +kover = "0.7.5" [libraries] annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 84a0b92..a595206 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists