shelbycohen
09/11/2020, 6:41 PMapply plugin: 'org.jetbrains.dokka'
dokkaHtml.configure {
outputDirectory = new File("$rootDir/docs")
dokkaSourceSets {
configureEach {
includes.setFrom(files("$rootDir/README.md"))
jdkVersion.set(8)
noStdlibLink.set(false)
noJdkLink.set(false)
reportUndocumented.set(true)
skipEmptyPackages.set(true)
}
}
}
I have tried a lot of different paths to README.md and can’t seem to figure it out. Any suggestions?