gpt4 book ai didi

gradle - 在 readme.md 文件中显示 gradle 属性

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

我有一个带有 gradle.properties 文件的 gradle 项目。其中一个属性显示了我项目的当前版本,我想将此属性包含在 github 上项目的 README.md 中。我怎样才能做到这一点?

最佳答案

Gradle Copy 任务能够提供这样的功能。只需使用其 expand方法来指定要插入的值。当然,您需要在项目中的某处定义一个模板:

task copy(type: Copy) {
from 'src/templates'
into "$buildDir"
include 'projectinfo.html.template'
rename { file -> 'projectinfo.html' }
expand(project: project, title: 'ProjectInfo', generated: new Date())
}

我从 post of Mr. Hakis Blog 中获取了这个示例.

此功能基于 Groovy SimpleTemplateEngine .当然,您可以简单地使用此类或任何其他模板引擎在您自己的构建脚本中实现所需的功能。

关于gradle - 在 readme.md 文件中显示 gradle 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56076310/

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