From 86e012c2d24345db5ac7d5248be1f60a3d0a09d7 Mon Sep 17 00:00:00 2001 From: Matas Date: Thu, 27 Jun 2024 11:57:54 -0500 Subject: [PATCH] misc: update vulnerable dependency pulled in transitively from Dokka (#1109) --- build.gradle.kts | 10 ++++++++++ 1 file changed, 10 insertions(+) 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") + } + } +}