Hello! I have 2 modules in my project, each with d...
# dokka
j
Hello! I have 2 modules in my project, each with dokka-1.4.0 configured in the same way as follows:
Copy code
tasks.named("dokkaGfm").configure {

        dokkaSourceSets {
            configureEach {
                skipDeprecated.set(true)
                jdkVersion.set(8)
                skipEmptyPackages.set(true)
                reportUndocumented.set(true)
                displayName.set("JVM")
            }
        }
}
For one of the project, the documentation is generated successfully, but for the other one, I’m getting the following:
Copy code
./gradlew dokkaGfm

> Task :dokkaGfm
Dokka 1.4.* is an alpha project
Initializing plugins
Creating documentation models
Exiting Generation: Nothing to document


> Task :Mxxon:dokkaGfm
Dokka 1.4.* is an alpha project
Initializing plugins
Creating documentation models
Exiting Generation: Nothing to document


Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See <https://docs.gradle.org/6.6.1/userguide/command_line_interface.html#sec:command_line_warnings>

BUILD SUCCESSFUL in 5s