使用pom文件从目标目录中删除或删除资源文件

时间:2013-09-05 13:26:16

标签: maven pom.xml

我在pom.xml中有两个配置文件,我在执行第一个配置文件时有一些资源文件已添加到目标资源目录:${project.build.outputDirectory}/resources中。我需要做的是在执行第二个配置文件期间删除这些资源文件。 有没有办法从目标目录中删除或删除现有文件?

6 个答案:

答案 0 :(得分:30)

我同意马修的观察,但我得到的印象是,原始海报询问如何在(正常)“执行”个人资料期间自动执行clean

您可以为Maven Clean插件定义plugin execution。它通常只绑定到clean,但通过定义插件执行,您可以将clean:cleanclean插件的clean目标绑定到lifecycle phase {{3} }} 你要。 Maven Clean Plugin的文档有an example如何执行此操作。该文档还有an example删除其他文件。合并这两个看起来像这样:

  <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>

答案 1 :(得分:30)

我得到了解决方案.. !!

<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

答案 2 :(得分:16)

mvn clean将删除target目录(以及其中的所有文件)。如果您只想删除target目录中的某些文件,请合并:

  • excludeDefaultDirectories阻止它删除整个目录,

  • filesets告诉它要删除的内容

参考:http://maven.apache.org/plugins/maven-clean-plugin/clean-mojo.html

答案 3 :(得分:7)

Solution with Apache Maven AntRun Plugin 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>

答案 4 :(得分:3)

感谢上述答案。最后我来了:

如果您想在目标文件夹中找到删除 某些 目录,则必须创建一些这样的构造。
例如,这只删除文件夹的所有内容:

  • 目标/解包
  • GEN-外部apklibs

excludeDefaultDirectories 允许n 删除完整目标文件夹
我用它在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>

答案 5 :(得分:3)

我只需要从输出目录中删除几个文件,以下工作正常。

<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任务列表是here

参考:http://maven.apache.org/plugins/maven-antrun-plugin/usage.html