Skip to content

Commit

Permalink
Fix jarHell issue in plugin-cli tests
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks committed Oct 10, 2022
1 parent ce56966 commit fb77c70
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions distribution/tools/plugin-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,15 @@ apply plugin: 'opensearch.build'
archivesBaseName = 'opensearch-plugin-cli'

dependencies {
compileOnly project(":server")
compileOnly(project(":server")) {
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
}
compileOnly project(":libs:opensearch-cli")
api "org.bouncycastle:bcpg-fips:1.0.5.1"
api "org.bouncycastle:bc-fips:1.0.2.3"
testImplementation project(":test:framework")
testImplementation(project(":test:framework")) {
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
}
testImplementation 'com.google.jimfs:jimfs:1.2'
testRuntimeOnly 'com.google.guava:guava:31.1-jre'
}
Expand Down

0 comments on commit fb77c70

Please sign in to comment.