You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by xi...@apache.org on 2011/04/29 01:04:24 UTC

svn commit: r1097653 - /geronimo/server/trunk/pom.xml

Author: xiaming
Date: Thu Apr 28 23:04:24 2011
New Revision: 1097653

URL: http://svn.apache.org/viewvc?rev=1097653&view=rev
Log:
GERONIMO-5762 clean dirty files during build, though it's not an ideal solution, patch provided by Shenghao Fang

Modified:
    geronimo/server/trunk/pom.xml

Modified: geronimo/server/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/pom.xml?rev=1097653&r1=1097652&r2=1097653&view=diff
==============================================================================
--- geronimo/server/trunk/pom.xml (original)
+++ geronimo/server/trunk/pom.xml Thu Apr 28 23:04:24 2011
@@ -2207,6 +2207,24 @@ only found in cxf
             </plugins>
         </pluginManagement>
         <plugins>
+        
+            <plugin>
+                <artifactId>maven-clean-plugin</artifactId>
+                <inherited>false</inherited>
+                <configuration>
+                    <filesets>
+                        <fileset>
+                            <directory>${basedir}</directory>
+                            <includes>
+                                <include>*.log</include>
+                                <include>var/**</include>
+                            </includes>
+                            <followSymlinks>false</followSymlinks>
+                        </fileset>
+                    </filesets>
+                </configuration>
+            </plugin>
+            
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-enforcer-plugin</artifactId>