看來,eclipse插件使用下面的機制來做到這一點:如何在IDEA中下載Gradle項目的依賴項源?
apply plugin: 'java'
apply plugin: 'eclipse'
eclipse {
classpath {
downloadSources=true
}
}
,但我找不到這個想法插件對應的一個選項。我錯過了什麼?
這裏的的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'
}
你的問題回答了我在Eclipse中如何做到這一點的問題。謝謝! – qwertzguy
Gradle包裝的用戶,看到這個答案:https://stackoverflow.com/a/46596203/924597 – Shorn
@Shorn不,https://stackoverflow.com/a/46596203/924597只涉及_Gradle_來源,但不是來源該項目的編譯依賴項。 – jschreiner