#168
[Maven] Delete File/Folder
<plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>DeleteFolder</id> <phase>prepare-package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <delete dir="path/to/delete/" /> </tasks> </configuration> </execution> </executions> </plugin>
[Bash] Check script parameter (start|stop|clean) [Windows] Change login screen background
Comments are currently closed.