Skip to content

Commit

Permalink
chore: Support IC-2024.2+
Browse files Browse the repository at this point in the history
Signed-off-by: Stephane Bouchet <[email protected]>
  • Loading branch information
sbouchet authored and adietish committed Oct 22, 2024
1 parent 6953839 commit 5ac9b2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dependencies {
testImplementation(libs.junit.jupiter)
testImplementation(libs.junit.platform.launcher)
testImplementation(libs.assertj.core)
testImplementation(libs.mockito.inline)
testImplementation(libs.mockito.core)

testRuntimeOnly(libs.junit.jupiter.engine)
}
Expand All @@ -94,7 +94,7 @@ val platformTests by intellijPlatformTesting.testIde.registering {
description = "Runs the platform tests."
group = "verification"
outputs.upToDateWhen { false }
shouldRunAfter(tasks["test"])
mustRunAfter(tasks["test"])
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# libraries
junit = "4.13.2"
assertj-core = "3.22.0"
mockito-inline = "4.5.1"
mockito-core = "5.14.2"
junit-platform = "1.10.3"
junit-jupiter = "5.10.3"
gson = "2.10.1"
Expand All @@ -15,7 +15,7 @@ gradleIntelliJPlugin = "2.1.0"
[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
assertj-core = { group = "org.assertj", name = "assertj-core", version.ref = "assertj-core" }
mockito-inline = { group = "org.mockito", name = "mockito-inline", version.ref = "mockito-inline" }
mockito-core = { group = "org.mockito", name = "mockito-core", version.ref = "mockito-core" }
junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher", version.ref = "junit-platform" }
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junit-jupiter" }
junit-jupiter-engine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junit-jupiter" }
Expand Down

0 comments on commit 5ac9b2c

Please sign in to comment.