From de6eb4b21c468ebc9192e24904f6cc23f2477dda Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Sun, 11 May 2014 09:38:13 +0200 Subject: [PATCH] Tell Gradle to download javadoc when creating the classpath for eclipse. --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 9f58f5f4b..100e6dd7e 100644 --- a/build.gradle +++ b/build.gradle @@ -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 ->