Guest User

Untitled

a guest
Apr 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <plugin>
  2. <artifactId>maven-clean-plugin</artifactId>
  3. <version>2.2</version>
  4. <executions>
  5. <execution>
  6. <id>auto-clean</id>
  7. <phase>install</phase>
  8. <goals>
  9. <goal>clean</goal>
  10. </goals>
  11. <configuration>
  12. <filesets>
  13. <fileset>
  14. <directory>${project.build.outputDirectory}</directory>
  15. <includes>
  16. <include>**/*.jar</include>
  17. </includes>
  18. <fileset>
  19. <filesets>
  20. </configuration>
  21. </execution>
  22. </executions>
  23. </plugin>
Add Comment
Please, Sign In to add comment