Skip to content

Commit 6e234b2

Browse files
committed
Merge remote-tracking branch 'origin/master' into dev
2 parents 5b28d33 + 1116f5f commit 6e234b2

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ kotlin.version.snapshot=1.9.255-SNAPSHOT
1313

1414
junit_version=4.12
1515
jackson_version=2.10.0.pr1
16-
dokka_version=1.8.10
16+
dokka_version=1.9.10
1717
native.deploy=
1818
validator_version=0.13.2
19-
knit_version=0.5.0-Beta
19+
knit_version=0.5.0
2020
# Only for tests
2121
coroutines_version=1.6.4
2222
kover_version=0.4.2

gradle/dokka.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ def documentedSubprojects = ["kotlinx-serialization-core",
1212
"kotlinx-serialization-properties",
1313
"kotlinx-serialization-hocon",
1414
"kotlinx-serialization-protobuf"]
15+
1516
subprojects {
1617
if (!(name in documentedSubprojects)) return
1718
apply plugin: 'org.jetbrains.dokka'
@@ -72,6 +73,12 @@ subprojects {
7273
matchingRegex.set("org\\.intellij\\.lang\\.annotations(\$|\\.).*")
7374
suppress.set(true)
7475
}
76+
77+
sourceLink {
78+
localDirectory.set(rootDir)
79+
remoteUrl.set(new URL("https://github.com/Kotlin/kotlinx.serialization/tree/master"))
80+
remoteLineSuffix.set("#L")
81+
}
7582
}
7683
}
7784
}

0 commit comments

Comments
 (0)