gpt4 book ai didi

Gradle:将子模块的输出复制到其他子模块资源中

转载 作者:行者123 更新时间:2023-12-03 05:20:11 25 4
gpt4 key购买 nike

我有下一个项目结构。

\rootProj
|
+--\moduleA
| |
| +--\build
| |--build.gradle
| ...
|
+--\moduleB
|
+--\main
| |
| +--\resources
| ...
|
|-build.gradle
...
我正在寻找一种方法来放置 中的所有内容模块A\build 模块B\主\资源 .
有人可以帮我完成这项任务吗?
我在谷歌上搜索过,但一无所获——我是 Gradle 的新手,这可能是我无法以正确方式提问的原因。
提前致谢!

最佳答案

作为对我的问题的回答,我提出了下一个解决方案:

buildscript{
ext{
generatedResOutDir = file("$buildDir/generated-resources")
}
}

sourceSets {
main{
output.dir(generatedResOutDir, builtBy: 'copyRes')
}
}

task copyRes(type: Copy){
//for to be certain a directory
//we are going to copy from
dependsOn ':moduleA:build'

from project(':moduleA').buildDir
into '${generatedResOutDir}/static'
}
该解决方案的灵感来自 Gradle DSL SourceSetOutput doc.

关于Gradle:将子模块的输出复制到其他子模块资源中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63858392/

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