Inline junit dependency version in build.gradle.kts and remove it from libs.versions.toml.

This commit is contained in:
Jakub Chrzanowski
2026-04-13 16:59:16 +02:00
parent 3924430b5d
commit d8988053c6
3 changed files with 3 additions and 4 deletions

View File

@@ -10,10 +10,11 @@
- Dependencies - upgrade `org.jetbrains.intellij.platform` to `2.14.0`
- Update `group` property in `gradle.properties` and remove redundant `pluginGroup` configuration from `build.gradle.kts`
- Update `version` property in `gradle.properties` and remove redundant `pluginVersion` configuration from `build.gradle.kts`
- Inline `junit` dependency version in `build.gradle.kts` and remove it from `libs.versions.toml`.
- Remove `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration.
### Removed
- Remove `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration.
- Remove (empty) plugin and module dependency configurations from `build.gradle.kts` and `gradle.properties`.
- Remove `opentest4j` dependency from `build.gradle.kts` and `libs.versions.toml`, redundant since IntelliJ Platform 251+
- Remove `gradleVersion` property and wrapper configuration as Gradle Wrapper should be updated with `./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper`

View File

@@ -10,7 +10,7 @@ plugins {
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/version_catalogs.html
dependencies {
testImplementation(libs.junit)
testImplementation("junit:junit:4.13.2")
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
intellijPlatform {

View File

@@ -1,6 +1,4 @@
[versions]
# libraries
junit = "4.13.2"
# plugins
changelog = "2.5.0"