Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion x-pack/plugin/security/cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ dependencies {
}
testRuntimeOnly "com.google.guava:guava:${versions.jimfs_guava}"
testImplementation project(":test:framework")
testImplementation(testArtifact(project(xpackModule('core'))))}
testImplementation(testArtifact(project(xpackModule('core')))) {
// BC and BC-FIPS together causes "Jar Hell" failures in JUnit
exclude group: 'org.bouncycastle', module: 'bc-fips'
exclude group: 'org.bouncycastle', module: 'bcpg-fips'
}
}


tasks.named("dependencyLicenses").configure {
mapping from: /bc.*/, to: 'bouncycastle'
Expand Down