1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-11 14:17:08 +02:00

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

View file

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