diff --git a/build.gradle.kts b/build.gradle.kts index da9ffca7c..22c3915dd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -153,3 +153,13 @@ apiValidation { ), ) } + +// FIXME We are getting a vulnerable dependency pulled in transitively through Dokka +// https://github.com/Kotlin/dokka/issues/3194 +allprojects { + configurations.all { + resolutionStrategy { + force("com.fasterxml.woodstox:woodstox-core:6.4.0") + } + } +}