Skip to content

Commit 12f231b

Browse files
committed
Remove libs.versions.toml and inline plugin versions in build scripts for simplified dependency management.
1 parent a2c5116 commit 12f231b

4 files changed

Lines changed: 11 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
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

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import org.jetbrains.changelog.markdownToHTML
33
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
44

55
plugins {
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

gradle/libs.versions.toml

Lines changed: 0 additions & 13 deletions
This file was deleted.

settings.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ import org.jetbrains.intellij.platform.gradle.extensions.intellijPlatform
22

33
rootProject.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+
512
plugins {
613
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
714
id("org.jetbrains.intellij.platform.settings") version "2.14.0"

0 commit comments

Comments
 (0)