Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ buildscript {
repositories {
mavenCentral()
}

dependencies {
classpath(platform("com.fasterxml.jackson:jackson-bom:2.22.1"))
}
}

// Align Dokka's build-only dependencies with versions containing upstream security fixes.
allprojects {
pluginManager.withPlugin("org.jetbrains.dokka") {
dependencies {
add("dokkaHtmlGeneratorRuntime", platform("com.fasterxml.jackson:jackson-bom:2.22.1"))
add("dokkaHtmlGeneratorRuntime", "org.jsoup:jsoup:1.23.1")
}
}
}

// Configure binary compatibility validator
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jacoco = "0.8.11"

# Build and tooling
kotlin = "2.1.20"
dokka = "2.0.0"
dokka = "2.2.0"
mavenPublishGradlePlugin = "0.31.0"
dependencyAnalysis = "2.13.0"
binaryCompatibilityValidator = "0.17.0"
Expand Down
Loading