Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sandwwraith committed Feb 16, 2024
2 parents 5b28d33 + 1116f5f commit 6e234b2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ kotlin.version.snapshot=1.9.255-SNAPSHOT

junit_version=4.12
jackson_version=2.10.0.pr1
dokka_version=1.8.10
dokka_version=1.9.10
native.deploy=
validator_version=0.13.2
knit_version=0.5.0-Beta
knit_version=0.5.0
# Only for tests
coroutines_version=1.6.4
kover_version=0.4.2
Expand Down
7 changes: 7 additions & 0 deletions gradle/dokka.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ def documentedSubprojects = ["kotlinx-serialization-core",
"kotlinx-serialization-properties",
"kotlinx-serialization-hocon",
"kotlinx-serialization-protobuf"]

subprojects {
if (!(name in documentedSubprojects)) return
apply plugin: 'org.jetbrains.dokka'
Expand Down Expand Up @@ -72,6 +73,12 @@ subprojects {
matchingRegex.set("org\\.intellij\\.lang\\.annotations(\$|\\.).*")
suppress.set(true)
}

sourceLink {
localDirectory.set(rootDir)
remoteUrl.set(new URL("https://github.com/Kotlin/kotlinx.serialization/tree/master"))
remoteLineSuffix.set("#L")
}
}
}
}
Expand Down

0 comments on commit 6e234b2

Please sign in to comment.