You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by fg...@apache.org on 2010/04/12 20:11:10 UTC

svn commit: r933339 - /maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/EclipsePluginIT.java

Author: fgiust
Date: Mon Apr 12 18:11:10 2010
New Revision: 933339

URL: http://svn.apache.org/viewvc?rev=933339&view=rev
Log:
adding missing ITs for MECLIPSE-621, MECLIPSE-576, MECLIPSE-652

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/EclipsePluginIT.java

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/EclipsePluginIT.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/EclipsePluginIT.java?rev=933339&r1=933338&r2=933339&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/EclipsePluginIT.java (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/EclipsePluginIT.java Mon Apr 12 18:11:10 2010
@@ -682,6 +682,39 @@ public class EclipsePluginIT
         testProject( "project-57-MECLIPSE-368" );
     }
 
+    /**
+     * [MECLIPSE-621] mvn eclipse:eclipse fails or doesn't generate proper .classpath when specifying the same resource directory with different filtering rules
+     * 
+     * @throws Exception
+     */
+    public void testProject58()
+        throws Exception
+    {
+        testProject( "project-58-MECLIPSE-621" );
+    }
+
+    /**
+     * [MECLIPSE-576] Merge resource dirs shall pass gracefully
+     * 
+     * @throws Exception
+     */
+    public void testProject59()
+        throws Exception
+    {
+        testProject( "project-59-MECLIPSE-576" );
+    }
+
+    /**
+     * [MECLIPSE-652] Ability to map a webapp to the root context
+     * 
+     * @throws Exception
+     */
+    public void testProject60()
+        throws Exception
+    {
+        testProject( "project-60-MECLIPSE-652" );
+    }
+
     public void testJeeSimple()
         throws Exception
     {