You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by vs...@apache.org on 2009/04/29 23:42:21 UTC

svn commit: r769950 - /incubator/shindig/branches/1.0.x-incubating/java/samples/pom.xml

Author: vsiveton
Date: Wed Apr 29 21:42:21 2009
New Revision: 769950

URL: http://svn.apache.org/viewvc?rev=769950&view=rev
Log:
o be sure to remove derby files when calling mvn clean

Modified:
    incubator/shindig/branches/1.0.x-incubating/java/samples/pom.xml

Modified: incubator/shindig/branches/1.0.x-incubating/java/samples/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/branches/1.0.x-incubating/java/samples/pom.xml?rev=769950&r1=769949&r2=769950&view=diff
==============================================================================
--- incubator/shindig/branches/1.0.x-incubating/java/samples/pom.xml (original)
+++ incubator/shindig/branches/1.0.x-incubating/java/samples/pom.xml Wed Apr 29 21:42:21 2009
@@ -53,6 +53,25 @@
         </includes>
       </resource>
     </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-clean-plugin</artifactId>
+        <configuration>
+          <filesets>
+            <fileset>
+              <directory>${basedir}</directory>
+              <includes>
+                <include>create.sql</include>
+                <include>derby.log</include>
+                <include>drop.sql</include>
+              </includes>
+              <followSymlinks>false</followSymlinks>
+            </fileset>
+          </filesets>
+        </configuration>
+      </plugin>
+    </plugins>
   </build>
   <dependencies>
     <!-- project dependencies -->