Skip to content

Commit a2c5116

Browse files
committed
Inline junit dependency version in build.gradle.kts and remove it from libs.versions.toml.
1 parent 13dee18 commit a2c5116

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
- Dependencies - upgrade `org.jetbrains.intellij.platform` to `2.14.0`
1111
- Update `group` property in `gradle.properties` and remove redundant `pluginGroup` configuration from `build.gradle.kts`
1212
- Update `version` property in `gradle.properties` and remove redundant `pluginVersion` configuration from `build.gradle.kts`
13+
- Inline `junit` dependency version in `build.gradle.kts` and remove it from `libs.versions.toml`.
14+
- Remove `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration.
1315

1416
### Removed
1517

16-
- Remove `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration.
1718
- Remove (empty) plugin and module dependency configurations from `build.gradle.kts` and `gradle.properties`.
1819
- Remove `opentest4j` dependency from `build.gradle.kts` and `libs.versions.toml`, redundant since IntelliJ Platform 251+
1920
- Remove `gradleVersion` property and wrapper configuration as Gradle Wrapper should be updated with `./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper`

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010

1111
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/version_catalogs.html
1212
dependencies {
13-
testImplementation(libs.junit)
13+
testImplementation("junit:junit:4.13.2")
1414

1515
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
1616
intellijPlatform {

gradle/libs.versions.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
[versions]
2-
# libraries
3-
junit = "4.13.2"
42

53
# plugins
64
changelog = "2.5.0"

0 commit comments

Comments
 (0)