如何在IDEA中下载Gradle项目的依赖项源码?
看来,eclipse插件使用以下机制来做到这一点:
apply plugin: 'java' apply plugin: 'eclipse' eclipse { classpath { downloadSources=true } }
但我无法find想法插件的相应选项。 我错过了什么?
这里是build.gradle文件:
apply plugin: 'groovy' apply plugin: 'idea' repositories { mavenCentral() mavenRepo name: "Grails", url: "http://repo.grails.org/grails/repo/" } dependencies { groovy 'org.codehaus.groovy:groovy-all:2.0.4' compile 'org.slf4j:slf4j-log4j12:1.6.6', 'postgresql:postgresql:9.1-901.jdbc4', 'net.sourceforge.nekohtml:nekohtml:1.9.16' ['core', 'hibernate', 'plugin-datasource', 'plugin-domain-class'].each { plugin -> compile "org.grails:grails-$plugin:2.1.0" } } idea { module { downloadJavadoc = true downloadSources = true } } // Fat Jar Option (http://docs.codehaus.org/display/GRADLE/Cookbook#Cookbook-Creatingafatjar) jar { from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } } task wrapper(type: Wrapper) { gradleVersion = '1.0' }
我有以下configuration的问题:
主意{ 模块{ //如果你讨厌浏览Javadoc downloadJavadoc = false //和爱阅读来源:) downloadSources = true } } 储存库{ mavenLocal() mavenCentral() }
当删除mavenLocal()
源被下载并附加。
我注意到,当你已经有一个jar下载然后它的来源,而不是在更改build.gradle后下载。
从我的主目录中删除.m2并调用gradle帮助。