diff --git a/CHANGELOG.md b/CHANGELOG.md index 7318019..021a78c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/build.gradle.kts b/build.gradle.kts index 7fb6625..7c82046 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 17f1812..39cbe3f 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,6 +1,4 @@ [versions] -# libraries -junit = "4.13.2" # plugins changelog = "2.5.0"