File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212- Update ` version ` property in ` gradle.properties ` and remove redundant ` pluginVersion ` configuration from ` build.gradle.kts `
1313- Inline ` junit ` dependency version in ` build.gradle.kts ` and remove it from ` libs.versions.toml ` .
1414- Remove ` platformVersion ` property and inline its value in ` build.gradle.kts ` for cleaner configuration.
15+ - Remove ` libs.versions.toml ` and inline plugin versions in build scripts for simpler configuration.
1516
1617### Removed
1718
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import org.jetbrains.changelog.markdownToHTML
33import org.jetbrains.intellij.platform.gradle.TestFrameworkType
44
55plugins {
6- alias(libs.plugins .kotlin) // Kotlin support
7- alias(libs.plugins.intelliJPlatform) // IntelliJ Platform Gradle Plugin
8- alias(libs.plugins .changelog) // Gradle Changelog Plugin
6+ id( " org.jetbrains .kotlin.jvm " )
7+ id( " org.jetbrains.intellij.platform " )
8+ id( " org.jetbrains .changelog" )
99}
1010
1111// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/version_catalogs.html
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,6 +2,13 @@ import org.jetbrains.intellij.platform.gradle.extensions.intellijPlatform
22
33rootProject.name = " IntelliJ Platform Plugin Template"
44
5+ pluginManagement {
6+ plugins {
7+ id(" org.jetbrains.kotlin.jvm" ) version " 2.1.20"
8+ id(" org.jetbrains.changelog" ) version " 2.5.0"
9+ }
10+ }
11+
512plugins {
613 id(" org.gradle.toolchains.foojay-resolver-convention" ) version " 1.0.0"
714 id(" org.jetbrains.intellij.platform.settings" ) version " 2.14.0"
You can’t perform that action at this time.
0 commit comments