Skip to content

Commit

Permalink
mvn clean should also clean lesson jar files
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaars committed Nov 15, 2016
1 parent 44f5c60 commit b54ca61
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions webgoat-container/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,20 @@
<!--</dependency>-->
<!--</dependencies>-->
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>${project.basedir}/src/main/resources/plugin_lessons</directory>
<includes>
<include>**/*.jar</include>
<include>**/*.pom</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit b54ca61

Please sign in to comment.