From 1715a143c7df02256f82320a3a0ae41f8bbf7979 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Mon, 7 Oct 2024 12:33:57 +0400 Subject: [PATCH] chore(deps): update and replace intelliJ platform plugin Updated the IntelliJ plugin to `intelliJPlatform` version `2.1.0` and removed the outdated `gradleIntelliJPlugin`. This change ensures compatibility with the latest features and fixes provided by the IntelliJ platform. --- gradle/libs.versions.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d2f621d9..b1ce360c 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,9 +3,9 @@ junit = "4.13.2" # plugins +intelliJPlatform = "2.1.0" kotlin = "2.0.20" changelog = "2.1.2" -gradleIntelliJPlugin = "1.17.4" kover = "0.8.3" qodana = "2024.2.3" @@ -14,7 +14,7 @@ junit = { group = "junit", name = "junit", version.ref = "junit" } [plugins] changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" } -gradleIntelliJPlugin = { id = "org.jetbrains.intellij", version.ref = "gradleIntelliJPlugin" } +intelliJPlatform = { id = "org.jetbrains.intellij.platform", version.ref = "intelliJPlatform" } kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" } qodana = { id = "org.jetbrains.qodana", version.ref = "qodana" }