Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试将 ant 脚本迁移到 gradle,但到目前为止还没有找到 gradle 与 ant 的对应物,<buildnumber/>它是构建过程中使用的自动递增数字。
<buildnumber/>
Gradle 没有对应的<buildnumber/>,但您始终可以使用 Ant 任务。
如果有其他像我这样的菜鸟不知道如何执行 ant 目标并访问它们的属性,这里有一个例子:
jar.doFirst { ant.buildnumber() manifest { attributes{ 'Implementation-Version': ant.antProject.properties['build.number'] ) } }