elect
02/04/2021, 11:57 AMbuildSrc
the lambda passed on each dokkaSourceSets
doesnt get executed
dokkaHtml {
val f = File("$rootDir/src/main/kotlin")
println(f)
dokkaSourceSets.configureEach {
println("in")
println(sourceLinks)
sourceLink {
localDirectory.set(f)
println(localDirectory)
remoteUrl.set(URL("<https://github.com/kotlin-graphics/kotlin-unsigned/tree/master/src/main/kotlin>"))
remoteLineSuffix.set("#L")
}
}
// finalizedBy(netlifyBadge)
}
gammax
02/10/2021, 1:20 PM