Skip to content

Commit da717b5

Browse files
committed
Enforce Jackson 2.15.3 for Dokka plugin
1 parent 6f3b642 commit da717b5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,15 @@ project('spring-integration-core') {
492492

493493
apply plugin: 'org.jetbrains.dokka'
494494

495+
// TODO until https://github.com/Kotlin/dokka/issues/3472
496+
configurations.matching { it.name.startsWith('dokka') }.configureEach {
497+
resolutionStrategy.eachDependency {
498+
if (requested.group.startsWith('com.fasterxml.jackson')) {
499+
useVersion('2.15.3')
500+
}
501+
}
502+
}
503+
495504
dependencies {
496505
api 'org.springframework:spring-aop'
497506
api 'org.springframework:spring-context'

0 commit comments

Comments
 (0)