gpt4 book ai didi

Maven 删除外部文件

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

我正在使用 Eclipse/maven 插件。
我想删除具有绝对路径的外部文件,我有以下示例,但它声称仅删除驻留在项目中的相关文件

<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<filesets>
<fileset>
<directory>some/relative/path</directory>
<includes>
<include>**/*.tmp</include>
<include>**/*.log</include>
</includes>
<excludes>
<exclude>**/important.log</exclude>
<exclude>**/another-important.log</exclude>
</excludes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>

最佳答案

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<followSymLinks>false</followSymLinks>
<filesets>
<fileset>
<directory>D:\apache-tomcat-6.0.24\webapps\cat360-web-1.0.0</directory>
</fileset>
</filesets>
</configuration>
</plugin>

关于Maven 删除外部文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10265109/

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