Skip to content

Commit

Permalink
Fix vulnerable dependency pulled in transitively from Dokka
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Jun 26, 2024
1 parent 041d5c8 commit 2673dbb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ allprojects {
)
}
}

// Enables running `./gradlew allDeps` to get a comprehensive list of dependencies for every subproject
tasks.register<DependencyReportTask>("allDeps") { }
}

project.afterEvaluate {
Expand Down Expand Up @@ -145,3 +148,13 @@ val lintPaths = listOf(
)

configureLinting(lintPaths)

// 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")
}
}
}

0 comments on commit 2673dbb

Please sign in to comment.