You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':dependencies'.
> Could not resolve all dependencies for configuration ':testCompileClasspath'.
> Conflict found for the following module:
- org.bouncycastle:bcprov-jdk18on between versions 1.80 and 1.78
What is the bug?
Build is failing on Jar Hell.
How can one reproduce the bug?
./gradlew compileTestJava
What is the expected behavior?
No Jar Hell
Do you have any additional context?
Our build.gradle specifies version 1.8.0:
flow-framework/build.gradle
Line 180 in 88fe98e
The OpenSearch Version Catalog specifies 1.7.8:
https://github.com/opensearch-project/OpenSearch/blob/0ffed5e8b743a075f5d66c4fe6e9b8371eacfa14/gradle/libs.versions.toml#L61
Quick fix:
build.gradle
line above to get the version from the version catalog (${versions.bouncycastle}
)Better fix:
testImplementation
as this one appears to probably beThe text was updated successfully, but these errors were encountered: