diff --git a/CHANGELOG.md b/CHANGELOG.md index 28d5046..a072ddb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,9 @@ ## [Unreleased] -### Added - -- Use IntelliJ Platform Gradle Plugin `2.0` - ### Changed -- Dependencies - upgrade `org.jetbrains.intellij.platform` to `2.0.0-beta6` +- Migrate to [IntelliJ Platform Gradle Plugin 2.0](https://blog.jetbrains.com/platform/2024/07/intellij-platform-gradle-plugin-2-0/). ## [1.14.2] - 2024-07-12 diff --git a/build.gradle.kts b/build.gradle.kts index ae988ee..0413275 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -102,7 +102,7 @@ intellijPlatform { channels = providers.gradleProperty("pluginVersion").map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) } } - verifyPlugin { + pluginVerification { ides { recommended() } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index b184621..f08c985 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ junit = "4.13.2" # plugins changelog = "2.2.0" -intelliJPlatform = "2.0.0-rc2" +intelliJPlatform = "2.0.0" kotlin = "1.9.24" kover = "0.8.1" qodana = "2024.1.5"