我们可以删除maven2

时间:2016-07-26 07:39:12

标签: maven-2 pom.xml multi-module

<plugin>
    <artifactId>maven-clean-plugin</artifactId>
    <version>2.2</version>
    <executions>
      <execution>
        <id>auto-clean</id>
        <phase>install</phase>
        <goals>
          <goal>clean</goal>
        </goals>
        <configuration>
          <filesets>
            <fileset>
              <directory>${project.build.Directory}</directory>
              <includes>
                <include>**/*.jar</include>
              </includes>
            </fileset>
           </filesets>
         </configuration>
      </execution>
    </executions>
  </plugin>

我正在使用这个插件删除目标文件夹,该目标文件夹在构建后进入可执行jar模块,不应该来。

在构建过程中是否还有其他方法可以摆脱这种类型的东西。通常它不会出现。

在pom中我已经从这么多不同的模块添加了这么多资源。

0 个答案:

没有答案