gpt4 book ai didi

gradle - 在 gradle build.gradle 文件中 - 如何检查项目是否存在?

转载 作者:行者123 更新时间:2023-12-04 17:43:59 31 4
gpt4 key购买 nike

让我们在 build.gradle 文件中说我想做这样的事情:
ext.sharepointBuildDir = project(":MainProject:sharepoint").buildDir.path
但在某些配置中,该项目可能不存在。

如何检查“是否存在 gradle 项目”?

最佳答案

您可以使用 findProject方法,这是根据它的 description

Locates a project by path. If the path is relative, it is interpreted relative to this project.

Returns: The project with the given path. Returns null if no such project exists.


因此,您可以简单地按如下方式使用它:
if (findProject(':MainProject:sharepoint') != null) {
println 'project exists'
} else {
println 'project does not exist'
}

关于gradle - 在 gradle build.gradle 文件中 - 如何检查项目是否存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43125981/

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