You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by ja...@apache.org on 2012/05/31 17:52:26 UTC

svn commit: r1344784 - /rave/trunk/rave-integration-tests/pom.xml

Author: jasha
Date: Thu May 31 15:52:26 2012
New Revision: 1344784

URL: http://svn.apache.org/viewvc?rev=1344784&view=rev
Log:
RAVE-610 database must be removed before strting the tests

Modified:
    rave/trunk/rave-integration-tests/pom.xml

Modified: rave/trunk/rave-integration-tests/pom.xml
URL: http://svn.apache.org/viewvc/rave/trunk/rave-integration-tests/pom.xml?rev=1344784&r1=1344783&r2=1344784&view=diff
==============================================================================
--- rave/trunk/rave-integration-tests/pom.xml (original)
+++ rave/trunk/rave-integration-tests/pom.xml Thu May 31 15:52:26 2012
@@ -229,6 +229,26 @@
                 <defaultGoal>integration-test</defaultGoal>
                 <plugins>
                     <plugin>
+                        <artifactId>maven-antrun-plugin</artifactId>
+                        <version>1.7</version>
+                        <executions>
+                            <execution>
+                                <phase>initialize</phase>
+                                <goals>
+                                    <goal>run</goal>
+                                </goals>
+                                <configuration>
+                                    <target>
+                                        <delete>
+                                            <fileset dir="/tmp" includes="rave_db*"/>
+                                        </delete>
+                                    </target>
+                                </configuration>
+                                <inherited>false</inherited>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
                         <groupId>org.codehaus.cargo</groupId>
                         <artifactId>cargo-maven2-plugin</artifactId>
                         <version>${cargo.version}</version>