Skip to content

Instantly share code, notes, and snippets.

@raphaelbauer
Created January 21, 2012 19:34
Show Gist options
  • Save raphaelbauer/1653678 to your computer and use it in GitHub Desktop.
Save raphaelbauer/1653678 to your computer and use it in GitHub Desktop.
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<filesets>
<fileset>
<directory>../YOUR_DEPLOYMENT_DIRECTORY</directory>
<includes>
<directory>gwt-unitCache/**</directory>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
<executions>
<execution>
<id>gwt-unitCache</id>
<phase>install</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment