user
07/15/2016, 6:52 PMgradle
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`:
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!