我在 pom.xml 中有两个配置文件,并且我有一些资源文件已添加到目标资源目录中:${project.build.outputDirectory}/resources
在执行第一个配置文件期间。我需要做的是在执行第二个配置文件期间删除这些资源文件。有没有办法从目标目录中删除或删除现有文件?
6 回答
我确实同意 Matthew 的观察,但我的印象是原始发帖人在询问如何clean
在(正常)“执行”配置文件期间自动执行。
您可以为 Maven Clean 插件定义插件执行。它通常只绑定到clean
,但通过定义插件执行,您可以绑定clean:clean
(这是插件的clean
目标clean
)到您想要的任何生命周期阶段。Maven Clean Plugin 的文档中有一个如何执行此操作的示例。该文档还有一个删除其他文件的示例。合并两者看起来像这样:
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>auto-clean</id>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<filesets>
<fileset>
<directory>some/relative/path</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
我得到了解决方案..!!
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete>
<fileset dir="${project.build.outputDirectory}/resources" includes="*.xml" />
</delete>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
供参考 - http://maven.apache.org/guides/mini/guide-building-for-different-environments.html
mvn clean
将删除target
目录(以及其中的所有文件)。如果您只想从target
目录中删除某些文件,请使用以下组合:
excludeDefaultDirectories
阻止它删除整个目录,并且filesets
告诉它要删除什么
参考:http ://maven.apache.org/plugins/maven-clean-plugin/clean-mojo.html
使用Apache Maven AntRun 插件 1.8的解决方案:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<delete
dir="${project.build.outputDirectory}/resources"
includeemptydirs="true"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
我只需要从输出目录中删除几个文件,以下对我来说很好。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete file="${project.build.outputDirectory}/appContextLocal.xml" />
<delete
file="${project.build.outputDirectory}/appContextServer.xml" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
我还认为您可以在此处运行任何 ant 命令来替换您在两者之间需要的任何任务,<tasks> .... </tasks>
并且它将起作用。
您可以执行的 ant 任务列表在这里
参考:http ://maven.apache.org/plugins/maven-antrun-plugin/usage.html
感谢以上答案。最后我来到了类似的东西:
如果你只想删除目标文件夹中的 一些目录,你必须创建一些这样的结构。
例如,这仅删除文件夹的所有内容:
- 目标/解包
- gen-external-apklibs
excludeDefaultDirectories允许不删除完整的目标文件夹。
在 lint 分析之前,我用它来清理目标文件夹。
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>Deleting all unnecessary files before lint analysis</id>
<phase>verify</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>target/unpack</directory>
<followSymlinks>false</followSymlinks>
<excludes>
<exclude>*</exclude>
</excludes>
</fileset>
<fileset>
<directory>gen-external-apklibs</directory>
<followSymlinks>false</followSymlinks>
<excludes>
<exclude>*</exclude>
</excludes>
</fileset>
</filesets>
<verbose>true</verbose>
</configuration>
</plugin>