maven clean插件使用進階


maven clean插件使用進階

參考

Maven clean 插件

Maven刪除外部文件

查看命令幫助

mvn clean:help

mvn clean:help -Ddetail=true -Dgoal=clean

跳過clean和刪除指定的文件夾

<properties>
    <!-- 
		方式一:跳過clean
		3.0.0以前的版本屬性是clean.skip,之后的屬性是maven.clean.skip
	-->
    <!--<maven.clean.skip>true</maven.clean.skip>-->
</properties>
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-clean-plugin</artifactId>
            <version>3.1.0</version>
            <configuration>
                <!-- 方式二:跳過clean -->
                <skip>true</skip>
                
                <filesets>
                    <!-- 刪除文件夾generated -->
                    <fileset>
                        <directory>src/main/generated</directory>
                    </fileset>
                    <!-- 刪除mozq文件夾中符合條件的,但是不會刪除mozq文件夾 -->
                    <fileset>
                            <directory>src/main/mozq</directory>
                            <includes>
                                <include>*.txt</include>
                            </includes>
                        </fileset>
                </filesets>
            </configuration>
        </plugin>
    </plugins>
</build>
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ demo-01 ---
[INFO] Deleting D:\00\mozq_pro1\shiro\demo-01\src\main\generated (includes = [], excludes = [])
[INFO] Deleting D:\00\mozq_pro1\shiro\demo-01\src\main\mozq (includes = [*.txt], excludes = [])
[INFO] ------------------------------------------------------------------------

幫助

Maven Clean Plugin
  The Maven Clean Plugin is a plugin that removes files generated at build-time
  in a project's directory.

clean:clean
  Goal which cleans the build.
  This attempts to clean a project's working directory of the files that were
  generated at build-time. By default, it discovers and deletes the directories
  configured in project.build.directory, project.build.outputDirectory,
  project.build.testOutputDirectory, and project.reporting.outputDirectory.

  Files outside the default may also be included in the deletion by configuring
  the filesets tag.

  Available parameters:

    excludeDefaultDirectories (Default: false)
      Disables the deletion of the default output directories configured for a
      project. If set to true, only the files/directories selected via the
      parameter filesets will be deleted.
      Expression: ${clean.excludeDefaultDirectories}

    failOnError (Default: true)
      Indicates whether the build will continue even if there are clean errors.
      Expression: ${maven.clean.failOnError}

    filesets
      The list of file sets to delete, in addition to the default directories.
      For example:
      <filesets>
        <fileset>
          <directory>src/main/generated</directory>
          <followSymlinks>false</followSymlinks>
          <useDefaultExcludes>true</useDefaultExcludes>
          <includes>
            <include>*.java</include>
          </includes>
          <excludes>
            <exclude>Template*</exclude>
          </excludes>
        </fileset>
      </filesets>

    followSymLinks (Default: false)
      Sets whether the plugin should follow symbolic links while deleting files
      from the default output directories of the project. Not following symlinks
      requires more IO operations and heap memory, regardless whether symlinks
      are actually present. So projects with a huge output directory that
      knowingly does not contain symlinks can improve performance by setting
      this parameter to true.
      Expression: ${clean.followSymLinks}

    retryOnError (Default: true)
      Indicates whether the plugin should undertake additional attempts (after a
      short delay) to delete a file if the first attempt failed. This is meant
      to help deleting files that are temporarily locked by third-party tools
      like virus scanners or search indexing.
      Expression: ${maven.clean.retryOnError}

    skip (Default: false)
      Disables the plugin execution.
      Expression: ${clean.skip}

    verbose
      Sets whether the plugin runs in verbose mode. As of plugin version 2.3,
      the default value is derived from Maven's global debug flag (compare
      command line switch -X).
      Expression: ${clean.verbose}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM