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

svn commit: r675629 - /maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3052DepRepoAggregationTest.java

Author: jdcasey
Date: Thu Jul 10 09:08:34 2008
New Revision: 675629

URL: http://svn.apache.org/viewvc?rev=675629&view=rev
Log:
cut down on noise in the output.

Modified:
    maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3052DepRepoAggregationTest.java

Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3052DepRepoAggregationTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3052DepRepoAggregationTest.java?rev=675629&r1=675628&r2=675629&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3052DepRepoAggregationTest.java (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3052DepRepoAggregationTest.java Thu Jul 10 09:08:34 2008
@@ -87,7 +87,6 @@
 
         // First, build the two levels of dependencies that will be resolved.
 
-        System.out.println( "Building transitive dependency: " + foo);
         // This one is a transitive dependency, and will be deployed to a
         // repository that is NOT listed in the main project's POM (wombat).
         verifier = new Verifier( foo.getAbsolutePath() );
@@ -96,7 +95,6 @@
         verifier.verifyErrorFreeLog();
         verifier.resetStreams();
 
-        System.out.println( "Building direct dependency: " + bar);
         // This one is a direct dependency that will be deployed to a repository
         // that IS listed in the main project's POM (wombat). It lists its own
         // repository entry that should enable resolution of the transitive
@@ -111,10 +109,8 @@
         File artifact = new File( artifactPath );
 
         File dir = artifact.getParentFile().getParentFile().getParentFile();
-        System.out.println( "Deleting: " + dir + " (from local repository).");
         FileUtils.deleteDirectory( dir );
 
-        System.out.println( "Building consumer: " + wombat);
         // This is the main project, which lists a repository where the bar
         // project (above) was deployed. It should be able to use the
         // repositories declared in the bar POM to find the transitive dependency
@@ -154,7 +150,5 @@
         {
             IOUtil.close( writer );
         }
-
-        System.out.println( "Rewrote POM: " + pomFile + "\n\nReplaced: @testDir@\nwith: " + testDir.getAbsolutePath() );
     }
 }