Skip to content

Commit

Permalink
Fix possible IntelliJ dependency issue (#6918)
Browse files Browse the repository at this point in the history
The updated build scripts may cause dependency resolution issues in IntelliJ, but somehow not on the command line. However, the change is reasonable.
  • Loading branch information
snazy committed May 26, 2023
1 parent d61abec commit be1fa11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compatibility/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies {
implementation(platform(libs.jackson.bom))
implementation("com.fasterxml.jackson.core:jackson-annotations")

implementation(platform(libs.junit.bom))
api(platform(libs.junit.bom))
api("org.junit.jupiter:junit-jupiter-api")
compileOnly("org.junit.jupiter:junit-jupiter-engine")

Expand Down
2 changes: 1 addition & 1 deletion testing/multi-env-test-engine/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extra["maven.name"] = "Nessie - Multi-Environment Test Engine"
dependencies {
api(libs.slf4j.api)

implementation(platform(libs.junit.bom))
api(platform(libs.junit.bom))
api("org.junit.jupiter:junit-jupiter-api")
compileOnly("org.junit.jupiter:junit-jupiter-engine")
implementation("org.junit.platform:junit-platform-launcher")
Expand Down

0 comments on commit be1fa11

Please sign in to comment.