Tell Gradle to download javadoc

when creating the classpath for eclipse.
This commit is contained in:
Florian Schmaus 2014-05-11 09:38:13 +02:00
parent 90ea9ba2fc
commit de6eb4b21c
1 changed files with 6 additions and 0 deletions

View File

@ -37,6 +37,12 @@ allprojects {
// 4.0.0-SNAPSHOT-2014-05-01 becomes 4.0.0.SNAPSHOT-2014-05-01
'Bundle-Version': version.replaceFirst("-", "."))
}
eclipse {
classpath {
downloadJavadoc = true
}
}
}
gradle.taskGraph.whenReady { taskGraph ->