#90 Javadoc generation fails via dokka-gradle-plug...
# dokka
u
#90 Javadoc generation fails via dokka-gradle-plugin (v0.9.9) [Kotlin/dokka] Issue created by codeprogression Given the closure ...
Copy code
gradle
dokka {
    moduleName = 'data'
    outputFormat = 'javadoc'
    outputDirectory = "$buildDir/docs/ktdoc"
    linkMapping {
        dir = "src/main/kotlin"
        url = "<https://internal/path/to/repo/src/main/kotlin>"
    }
    sourceDirs = files('src/main/kotlin')
}
... Receiving the following output when running `./gradlew dokka`:
Copy code
generation completed successfully
null:-1:-1: Tag @see cannot be used in inline documentation.  It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method.
null:-1:-1: Tag @see cannot be used in inline documentation.  It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method.
null:-1:-1: Tag @see cannot be used in inline documentation.  It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method.
null:-1:-1: Tag @see cannot be used in inline documentation.  It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method.
null:-1:-1: Tag @see cannot be used in inline documentation.  It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method.
null:-1:-1: Tag @see cannot be used in inline documentation.  It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method.
null:-1:-1: Tag @see cannot be used in inline documentation.  It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method.
null:-1:-1: Tag @see cannot be used in inline documentation.  It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method.
com.sun.tools.doclets.internal.toolkit.util.DocletAbortException: java.lang.StackOverflowError
• I have no
@see
tags defined • Not all html files are created (causing broken links). e.g,
index.html
is never created • When
outputFormat
is not specified, default html files are created correctly Let me know if you need any more information. Thanks!