Skip to content

Commit

Permalink
Get mvn clean to delete node_modules
Browse files Browse the repository at this point in the history
To fix issue eclipse#97 mvn clean now deletes node_modules so that when there is
a version update it will refresh all the node modules
  • Loading branch information
iainduncani committed Nov 4, 2016
1 parent 9ee3241 commit 5984bc5
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion web-application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,19 @@
<workingDirectory>src/main/static</workingDirectory>
</configuration>
</plugin>

<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<filesets>
<fileset>
<directory>src/main/static/node_modules</directory>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>

</build>

<profiles>
Expand Down

0 comments on commit 5984bc5

Please sign in to comment.