We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ch.randelshofer:fastdoubleparser
1 parent 568071a commit 86c23eaCopy full SHA for 86c23ea
testing/cpbs/sandbox-security-manager-one/build.gradle
@@ -17,7 +17,11 @@ cordapp {
17
}
18
19
dependencies {
20
- implementation "com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion"
+ implementation("com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion") {
21
+ // this transitive dependency is not needed as it is shaded in the jackson module, but there is a bug in
22
+ // the metadata: https://github.com/FasterXML/jackson-core/issues/999
23
+ exclude group: "ch.randelshofer"
24
+ }
25
26
cordaProvided platform("net.corda:corda-api:$cordaApiVersion")
27
compileOnly "org.osgi:org.osgi.service.component.annotations"
0 commit comments