Skip to content

Commit

Permalink
Added explicit junit dependency
Browse files Browse the repository at this point in the history
243 does not have it in IDE distribution
  • Loading branch information
hurricup committed Nov 13, 2024
1 parent bcff569 commit eeb1e75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ allprojects {
}
jetbrainsRuntime()
}
testImplementation("junit:junit:4.13.2")
testImplementation("org.opentest4j:opentest4j:1.3.0")
}

Expand Down
4 changes: 3 additions & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ dependencies {
":plugin:plenv",
).forEach {
testFixturesCompileOnly(project(it))
}
}
testFixturesCompileOnly("junit:junit:4.13.2")

intellijPlatform {
val platformVersionProvider: Provider<String> by rootProject.extra
create("IU", platformVersionProvider.get(), useInstaller = properties("useInstaller").get().toBoolean())
Expand Down

0 comments on commit eeb1e75

Please sign in to comment.