Ellen Spertus
09/03/2022, 7:02 PMpackage.md
files, regardless of what directories they appear in (the way all source code is included, regardless of directory). I tried:
tasks.withType<org.jetbrains.dokka.gradle.DokkaTask>().configureEach {
dokkaSourceSets {
named("main") {
includes.from("package.md")
}
}
}
but this only looks for package.md
in the root directory:
C:\Users\ellen\IdeaProjects\gradle-test\package.md (The system cannot find the file specified)
How would I make it look for files named package.md
in any src
directory?tapchicoma
09/05/2022, 12:56 PMIgnat Beresnev
09/05/2022, 1:05 PMEllen Spertus
09/06/2022, 2:46 PMincludes.from(fileTree(project.rootDir) {
include("src/**/package.md")
})
Thanks so much!