We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c062de8 commit 9a38058Copy full SHA for 9a38058
buildSrc/src/main/java/com/google/firebase/gradle/plugins/DackkaPlugin.kt
@@ -174,7 +174,9 @@ abstract class DackkaPlugin : Plugin<Project> {
174
val classpath =
175
compileConfiguration.jars + project.javadocConfig.jars + project.files(bootClasspath)
176
177
- val sourceDirectories = sourceSets.flatMap { it.javaDirectories }
+ val sourceDirectories =
178
+ sourceSets.flatMap { it.javaDirectories } +
179
+ sourceSets.flatMap { it.kotlinDirectories }
180
181
val packageLists = fetchPackageLists(project)
182
val excludedFiles = projectSpecificSuppressedFiles(project)
0 commit comments