Massively improved Javadoc coverage to prepare for Javadoc site.

This commit is contained in:
Andrew Steinborn
2018-08-25 00:29:22 -04:00
parent 4fb415c845
commit 7ee56d9f5f
49 changed files with 214 additions and 79 deletions

View File

@@ -48,6 +48,21 @@ artifacts {
archives sourcesJar
}
javadoc {
options.encoding = 'UTF-8'
options.charSet = 'UTF-8'
options.links(
'http://www.slf4j.org/apidocs/',
'https://google.github.io/guava/releases/25.1-jre/api/docs/',
'https://google.github.io/guice/api-docs/4.2/javadoc/',
'https://jd.kyori.net/text/1.12-1.6.4/',
'https://docs.oracle.com/javase/8/docs/api/'
)
// Disable the crazy super-strict doclint tool in Java 8
options.addStringOption('Xdoclint:none', '-quiet')
}
publishing {
publications {
mavenJava(MavenPublication) {