Author: djencks
Date: Tue May 12 21:56:15 2009
New Revision: 774108
URL: http://svn.apache.org/viewvc?rev=774108&view=rev
Log:
add a clean plugin fileset to wipe out *.log files in the basedir, such as
those added by maven-remote-resources-plugin
Modified:
portals/portals-pom/trunk/pom.xml
Modified: portals/portals-pom/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/portals/portals-pom/trunk/pom.xml?rev=774108&r1=774107&r2=774108&view=diff
==============================================================================
--- portals/portals-pom/trunk/pom.xml (original)
+++ portals/portals-pom/trunk/pom.xml Tue May 12 21:56:15 2009
@@ -114,6 +114,21 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <configuration>
+ <filesets>
+ <fileset>
+ <directory>${basedir}</directory>
+ <includes>
+ <include>*.log</include>
+ </includes>
+ <followSymlinks>false</followSymlinks>
+ </fileset>
+ </filesets>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>