×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
1
 
0
Language: Java
Posted by: Juan F. Ruiz
Added: May 3, 2022 9:22 PM
Views: 14
Tags: java maven
  1. <build>
  2.         <plugins>
  3.             <plugin>
  4.             <!--Snippet init -->
  5.                 <groupId>org.apache.maven.plugins</groupId>
  6.                 <artifactId>maven-clean-plugin</artifactId>
  7.                 <version>3.2.0</version>
  8.                 <executions>
  9.                     <execution>
  10.                         <id>auto-clean</id>
  11.                         <phase>initialize</phase>
  12.                         <goals>
  13.                             <goal>clean</goal>
  14.                         </goals>
  15.                     </execution>
  16.                 </executions>
  17.                   <!--Snippet end -->                
  18.             </plugin>
  19.         </plugins>
  20.     </build>