Remove opentest4j dependency from build.gradle.kts and libs.versions.toml, redundant since IntelliJ Platform 251+

This commit is contained in:
Jakub Chrzanowski
2026-04-13 09:30:13 +02:00
parent d201397233
commit 751695bbbe
3 changed files with 1 additions and 3 deletions

View File

@@ -13,6 +13,7 @@
### Removed
- Remove `opentest4j` dependency from `build.gradle.kts` and `libs.versions.toml`, redundant since IntelliJ Platform 251+
- Remove redundant Kotlin JVM toolchain configuration from `build.gradle.kts`
- Remove redundant `intellijPlatform.pluginConfiguration.ideaVersion.sinceBuild` configuration from `build.gradle.kts`
- Remove redundant `pluginSinceBuild` property from `gradle.properties`

View File

@@ -13,7 +13,6 @@ plugins {
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/version_catalogs.html
dependencies {
testImplementation(libs.junit)
testImplementation(libs.opentest4j)
// 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,7 +1,6 @@
[versions]
# libraries
junit = "4.13.2"
opentest4j = "1.3.0"
# plugins
changelog = "2.5.0"
@@ -11,7 +10,6 @@ qodana = "2025.3.2"
[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
opentest4j = { group = "org.opentest4j", name = "opentest4j", version.ref = "opentest4j" }
[plugins]
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }