I am using Gradle 2.0. What should I write in build.gradle so that the javadocs and sources are also downloaded along with the jars?
build.gradle
In addition to previous question, here is Gradle Kotlin DSL version:
plugins { id("idea") } idea { module { isDownloadJavadoc = true isDownloadSources = true } }