You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/10/14 14:53:34 UTC

svn commit: r704520 - in /maven/core-integration-testing/trunk/core-it-suite/src/test: java/org/apache/maven/it/MavenITBootstrapTest.java java/org/apache/maven/it/MavenITmng0469Test.java resources/bootstrap/pom.xml

Author: bentmann
Date: Tue Oct 14 05:53:33 2008
New Revision: 704520

URL: http://svn.apache.org/viewvc?rev=704520&view=rev
Log:
o Fixed bootstrapping

Modified:
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITBootstrapTest.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0469Test.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/bootstrap/pom.xml

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITBootstrapTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITBootstrapTest.java?rev=704520&r1=704519&r2=704520&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITBootstrapTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITBootstrapTest.java Tue Oct 14 05:53:33 2008
@@ -43,7 +43,7 @@
 
         Verifier verifier = new Verifier( testDir.getAbsolutePath() );
         verifier.setAutoclean( false );
-        verifier.executeGoal( "compile" );
+        verifier.executeGoal( "test-compile" );
         verifier.verifyErrorFreeLog();
         verifier.resetStreams();
     }

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0469Test.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0469Test.java?rev=704520&r1=704519&r2=704520&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0469Test.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0469Test.java Tue Oct 14 05:53:33 2008
@@ -42,7 +42,7 @@
     /**
      * Test that <reporting> configuration also affects build plugins unless <build> configuration is also given.
      */
-    public void testMNG0469()
+    public void testitMNG0469()
         throws Exception
     {
         File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-0469" );

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/bootstrap/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/bootstrap/pom.xml?rev=704520&r1=704519&r2=704520&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/bootstrap/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/bootstrap/pom.xml Tue Oct 14 05:53:33 2008
@@ -66,6 +66,7 @@
   <properties>
     <itPluginVersion>2.1-SNAPSHOT</itPluginVersion>
     <stubPluginVersion>0.1-stub-SNAPSHOT</stubPluginVersion>
+    <maven.test.skip>true</maven.test.skip>
   </properties>
 
   <dependencies>