Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
cleaning temp index directories in clean phase for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mareknovotny committed Apr 29, 2013
1 parent 99a5d0a commit 6ef9c42
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 13 deletions.
13 changes: 13 additions & 0 deletions examples/blog/blog-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,19 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>./blogindexes/</directory>
<includes>
<include>**</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
28 changes: 15 additions & 13 deletions examples/dvdstore/dvdstore-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,19 +175,21 @@
</testResource>
</testResources>

<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<filesets>
<fileset>
<directory>${basedir}/dvdindexes</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>./dvdindexes/</directory>
<includes>
<include>**</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
Expand Down

0 comments on commit 6ef9c42

Please sign in to comment.