it seems that under `buildSrc` the lambda passed o...
# dokka
e
it seems that under
buildSrc
the lambda passed on each
dokkaSourceSets
doesnt get executed
Copy code
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)
    }
g
Have you solved this? I’m having the same exact problem 🤔