Release tests failing intermittently due to test interactions.

git-svn-id: https://svn.apache.org/repos/asf/continuum/trunk@1677518 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/continuum-webapp-test/src/test/testng/org/apache/continuum/web/test/MvnProjectBuilderReleaseTest.java b/continuum-webapp-test/src/test/testng/org/apache/continuum/web/test/MvnProjectBuilderReleaseTest.java
index 081300f..8350a01 100644
--- a/continuum-webapp-test/src/test/testng/org/apache/continuum/web/test/MvnProjectBuilderReleaseTest.java
+++ b/continuum-webapp-test/src/test/testng/org/apache/continuum/web/test/MvnProjectBuilderReleaseTest.java
@@ -19,6 +19,7 @@
  * under the License.
  */
 
+import org.testng.annotations.AfterClass;
 import org.testng.annotations.BeforeClass;
 import org.testng.annotations.BeforeMethod;
 import org.testng.annotations.Test;
@@ -93,4 +94,9 @@
 
         assertReleasePhaseSuccess();
     }
+
+    @AfterClass
+    public void removeProject() {
+        removeProjectGroup( projectGroupName, false );
+    }
 }