Skip to content
Snippets Groups Projects
Commit c3c100f5 authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

removed javadoc build task

parent e5232536
No related branches found
No related tags found
2 merge requests!577Production Release | nshmp-haz,!564Command line and lib updates
...@@ -47,7 +47,6 @@ configurations { ...@@ -47,7 +47,6 @@ configurations {
apply from: "${projectDir}/gradle/dependencies.gradle" apply from: "${projectDir}/gradle/dependencies.gradle"
apply from: "${projectDir}/gradle/ext.gradle" apply from: "${projectDir}/gradle/ext.gradle"
apply from: "${projectDir}/gradle/jar.gradle" apply from: "${projectDir}/gradle/jar.gradle"
apply from: "${projectDir}/gradle/javadoc.gradle"
apply from: "${projectDir}/gradle/repositories.gradle" apply from: "${projectDir}/gradle/repositories.gradle"
sourceCompatibility = JavaVersion.VERSION_11 sourceCompatibility = JavaVersion.VERSION_11
......
/*
* JavaDoc config
*/
javadoc {
options.setUse(true)
options.author(true)
options.version(true)
options.windowTitle(projectName)
options.docTitle(docTitle)
options.encoding('UTF-8')
options.docEncoding('UTF-8')
options.charSet('UTF-8')
options.bottom(docFooter)
options.addStringOption('Xdoclint:none', '-quiet')
options.links(
'https://docs.oracle.com/javase/8/docs/api/',
'https://google.github.io/guava/releases/23.0/api/docs/',
'https://google.github.io/gson/apidocs/')
include 'gov/usgs/earthquake/nshmp/**'
exclude 'gov/usgs/earthquake/nshmp/www/**'
exclude 'gov/usgs/earthquake/nshmp/aws/**'
exclude 'gov/usgs/earthquake/nshmp/etc/**'
exclude 'gov/usgs/earthquake/nshmp/internal/**'
exclude '**/Scratch*'
doLast {
if (docOut) {
delete docOut
copy {
from 'build/docs/javadoc'
into docOut
}
copy {
from 'etc/resources/docs'
into docOut + '/resources'
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment