gpt4 book ai didi

java - 如果某个文件已经存在,如何禁用 antrun?

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:16:56 24 4
gpt4 key购买 nike

如何禁用 maven-antrun-plugin当某个文件已经存在时执行?:

[...]
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<!-- do something really complex in order to create file.txt -->
</target>
</configuration>
</execution>
</executions>
</build>
[...]

执行需要一些时间,当 file.txt 已经存在时,我不想每次都重复执行。

最佳答案

检查该文件是否存在于您的独立 Ant 文件中。示例:

<target name="check-file">
<available file="foo.bar" property="fileExists" />
</target>

<target name="time-consuming" depends="check-file" unless="fileExists">
...
</target>

关于java - 如果某个文件已经存在,如何禁用 antrun?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5310976/

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