Configure Gradle javadoc task

Run with `gradle javadoc` and see output in `build/docs/javadoc'.
This commit is contained in:
Chris Beams 2014-12-27 14:02:59 +01:00
parent 68724da3ac
commit 4845f2bd00
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73
1 changed files with 9 additions and 0 deletions

View File

@ -65,3 +65,12 @@ dependencies {
testCompile "junit:junit:${junitVersion}"
testCompile "org.springframework:spring-test:${springVersion}"
}
javadoc {
options.author = true
options.header = project.name
options.links(
"http://docs.oracle.com/javase/8/docs/api/",
"http://netty.io/4.0/api/"
)
}