gpt4 book ai didi

gradle - 了解Gradle分布

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

Gradle documentation的第7.3.4章中,谈到了分发:

We also add a distribution, that gets shipped to the client:



还提供了源代码:
task dist(type: Zip) {
dependsOn spiJar
from 'src/dist'
into('libs') {
from spiJar.archivePath
from configurations.runtime
}
}

artifacts {
archives dist
}

因此,我尝试将其添加到构建脚本中,但由于以下原因无法正常工作:

A problem occurred evaluating project ':MP'. Could not find property 'spiJar' on task ':MP:dist'.



您能否概括地说使用分发真正有用的地方?

最佳答案

此特定示例演示了如何将独立的Java应用程序作为Zip文件提供。要运行该示例,您必须获取其完整源代码,该源代码包含在samples下载的gradle-all目录中。

关于gradle - 了解Gradle分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26553177/

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