Ellen Spertus
09/03/2022, 1:00 AMpackage.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?
(If package.md
isn't a good name, please let me know a better one. I'm not planning on using modules.)Vadim Mishenev
09/05/2022, 2:46 PMincludes.from(fileTree(project.rootDir) {
include("src/**/package.md")
})
Ellen Spertus
09/06/2022, 2:45 PM