Gradle 食谱“创建源和资源目录”对于其他插件
我可以在食谱中看到以下内容,
task "create-dirs" << {
sourceSets.all*.java.srcDirs*.each { it.mkdirs() }
sourceSets.all*.resources.srcDirs*.each { it.mkdirs() }
}
我如何为网络插件列出相同的内容
I can see following in cookbook
task "create-dirs" << {
sourceSets.all*.java.srcDirs*.each { it.mkdirs() }
sourceSets.all*.resources.srcDirs*.each { it.mkdirs() }
}
how can i list same for web plugin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 gradle 2.1 中,它看起来像这样(认为这也适用于 gradle 1.0)
我是如何想到这一点的
In gradle 2.1, it'll look something like this ( think this also applies to gradle 1.0)
How I figured this out
在 Gradle 0.9.1 中,war 插件仅添加一个目录,该目录是在约定对象中定义的,而不是源集的一部分。
因此,您发布的原始任务可以扩展为:
In Gradle 0.9.1 the war plugin only adds a single directory, which is defined in the convention object and not part of a source set.
So the original task you posted could be expanded to this: