Exclude the class from jackson jar (#93052)
in #92984 we override a file in jackson jar, but we rely on gradle internals which might change at any point. This fixes this by excluding a element from a jar and allowing a new class to be added
This commit is contained in:
parent
f60d614dc0
commit
8f37934a76
|
@ -26,6 +26,9 @@ tasks.named("dependencyLicenses").configure {
|
|||
}
|
||||
|
||||
shadowJar {
|
||||
exclude { element ->
|
||||
element.file == null && element.path.endsWith("FilteringParserDelegate.class")
|
||||
}
|
||||
manifest {
|
||||
attributes 'Multi-Release' : 'true'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue