Skip to content
Merged
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
4 changes: 3 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,9 @@ tasks.withType<AbstractDokkaLeafTask>().configureEach {

failOnWarning.set(true)
dokkaSourceSets.configureEach {
kotlin.sourceSets.commonTest.get().kotlin.srcDirs.forEach { samples.from(it) }
val testSourceSet = kotlin.sourceSets.named("${name.dropLast(4)}Test")
samples.from(testSourceSet.map { it.kotlin.srcDirs })

// reportUndocumented.set(true) // much noisy output about `hashCode` and serializer encoders, decoders etc
skipDeprecated.set(true)
// Enum members and undocumented toString()
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ versionSuffix=SNAPSHOT
tzdbVersion=2025b

defaultKotlinVersion=2.1.0
dokkaVersion=1.9.20
dokkaVersion=2.0.0
serializationVersion=1.6.2
benchmarksVersion=0.7.2
bcvVersion=0.17.0
Expand Down