当IntelliJ打开build.gradle
文件时,它将生成一个IntelliJ项目,其中Gradle依赖项已解决并添加到项目范围。这对于“编译”源集和“测试”源集非常有用,但是我无法使其适用于自定义源集。
我想让IntelliJ解析我的componentTest
源集的依赖关系。如何告诉IntelliJ解决这些依赖关系并将它们添加到范围?
dependencies {
// main source set, "compile" scope in IntelliJ
compile(group: 'com.google.guava', name: 'guava', version: '18.0')
// test source set, "test" scope in IntelliJ
testCompile(group: 'junit', name: 'junit', version: '4.11')
// my custom source set, not added to any scope in IntelliJ
componentTestCompile(group: 'org.springframework', name: 'spring', version: '3.0.7')
}
详细信息: IntelliJ 13.1.2,Gradle 1.11
答案 0 :(得分:18)
Gradle用户指南 - http://www.gradle.org/docs/current/userguide/idea_plugin.html和http://www.gradle.org/docs/current/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.html
中对此进行了描述您需要添加以下内容:
idea {
module {
scopes.TEST.plus += [ configurations.componentTestCompile ]
}
}
到您的build.gradle
文件。