Skip to content

Commit

Permalink
#504 mvn clean now zaps all the generated .js / js.map files
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Nov 15, 2013
1 parent bf2d9ad commit 28a9de2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Expand Up @@ -328,6 +328,23 @@
</pluginManagement>

<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<configuration>
<filesets>
<fileset>
<directory>${basedir}/src/main/webapp/app</directory>
<includes>
<include>**/*.js</include>
<include>**/*.js.map</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>

<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
Expand Down

0 comments on commit 28a9de2

Please sign in to comment.