gpt4 book ai didi

eclipse - 如何通过gradle在Eclipse项目中添加对类路径的具体引用?

转载 作者:行者123 更新时间:2023-12-03 03:39:23 24 4
gpt4 key购买 nike

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

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

Doc或“Gradle有效实现指南”这本书对建议没有多大帮助,因为
  //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
}

最佳答案

您可以通过创建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
}
}
}
}

关于eclipse - 如何通过gradle在Eclipse项目中添加对类路径的具体引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16009333/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com