You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2010/10/30 11:41:34 UTC

svn commit: r1029010 - /james/server/trunk/pom.xml

Author: norman
Date: Sat Oct 30 09:41:34 2010
New Revision: 1029010

URL: http://svn.apache.org/viewvc?rev=1029010&view=rev
Log:
Make sure the bin directory get deleted on build (JAMES-1094)

Modified:
    james/server/trunk/pom.xml

Modified: james/server/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/pom.xml?rev=1029010&r1=1029009&r2=1029010&view=diff
==============================================================================
--- james/server/trunk/pom.xml (original)
+++ james/server/trunk/pom.xml Sat Oct 30 09:41:34 2010
@@ -140,6 +140,21 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-clean-plugin</artifactId>
+        <version>2.4.1</version>
+        <configuration>
+          <filesets>
+            <fileset>
+              <!-- just delete the bin directory -->
+              <directory>bin</directory>
+              <followSymlinks>false</followSymlinks>
+            </fileset>
+          </filesets>
+        </configuration>
+      </plugin>
+      
     </plugins>
   </build>
   



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org