1

我在文档中看到的所有示例都非常常见,这些示例说明了如何通过 build.gradle 文件向 Eclipse 项目类路径添加条目。他们什么也没说如何添加条目:

<classpathentry exported="true", kind="con" path="GROOVY_SUPPORT"/>

Doc或“Gradle Effective Implementation Guide”一书对建议毫无用处,因为

  //closure executed after .classpath content is loaded from existing file
  //and after gradle build information is merged
  whenMerged { classpath ->
    //you can tinker with the Classpath here
  }
4

1 回答 1

5

您可以通过创建org.gradle.plugins.ide.eclipse.model.Container的实例来添加另一个类路径条目:

eclipse {
    classpath {
        file {
            whenMerged { classpath ->
                def groovySupportContainer = new org.gradle.plugins.ide.eclipse.model.Container('GROOVY_SUPPORT')
                groovySupportContainer.exported = true
                classpath.entries << groovySupportContainer
            }
        }
    }
}
于 2013-04-15T11:17:21.790 回答