Skip to content

Commit 568071a

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 bb88a4e commit 568071a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

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

1919
dependencies {
2020
cordaProvided platform("net.corda:corda-api:$cordaApiVersion")
21-
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion"
21+
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion") {
22+
// this transitive dependency is not needed as it is shaded in the jackson module, but there is a bug in
23+
// the metadata: https://github.com/FasterXML/jackson-core/issues/999
24+
exclude group: "ch.randelshofer"
25+
}
2226
compileOnly "org.osgi:org.osgi.service.component.annotations"
2327
cordaProvided 'org.jetbrains.kotlin:kotlin-osgi-bundle'
2428
cordaProvided 'net.corda:corda-application'

0 commit comments

Comments
 (0)