Skip to content

Commit 86c23ea

Browse files
author
Dries Samyn
committed
Exclude ch.randelshofer:fastdoubleparser as it is not needed as a transitive dependency and is not a valid OSGi bundle.
1 parent 568071a commit 86c23ea

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

testing/cpbs/sandbox-security-manager-one/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ cordapp {
1717
}
1818

1919
dependencies {
20-
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion"
20+
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+
}
2125

2226
cordaProvided platform("net.corda:corda-api:$cordaApiVersion")
2327
compileOnly "org.osgi:org.osgi.service.component.annotations"

0 commit comments

Comments
 (0)