原因:没有这样的属性:类的sourceSets:org.gradle.api.plugins.Convention
我运行 Gradle Cookbook 中的代码片段,
apply plugin: 'java'
task "create-dirs" << {
convention.sourceSets.all*.java.srcDirs*.each { it.mkdirs() }
convention.sourceSets.all*.resources.srcDirs*.each { it.mkdirs() }
}
当我运行时,我收到以下错误
Cause: No such property: sourceSets for class: org.gradle.api.plugins.Convention
我正在使用 Gradle 0.9-rc-3
i have run a code snippet from Gradle Cookbook
apply plugin: 'java'
task "create-dirs" << {
convention.sourceSets.all*.java.srcDirs*.each { it.mkdirs() }
convention.sourceSets.all*.resources.srcDirs*.each { it.mkdirs() }
}
when i run i am getting following error
Cause: No such property: sourceSets for class: org.gradle.api.plugins.Convention
i am using Gradle 0.9-rc-3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在该属性已全部删除,因此您可以这样做:
The property all has been removed now ,So you can do it as:
好吧,抱歉。我明白了,
一定是这样
Ok sorry. i got it
it must be