Intellij Idea 2017.1: Turn off Gradle import source / javadocs
已回答
How do you turn off the import of source and javadocs with gradle dependencies? Our artifactory server is performing horrendously (hours) on failing requests for these files. Regular found dependencies work fine.
请先登录再写评论。
See http://stackoverflow.com/questions/12718753/how-to-download-dependency-sources-for-gradle-project-in-idea:
idea {module {
downloadJavadoc = false
downloadSources = false
}
}