mirror of https://github.com/apache/maven.git
o get rid of debug information
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@727637 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
854a44adf0
commit
cce3456998
|
@ -53,7 +53,6 @@ public class PomConstructionTest
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
File pom = new File( testDirectory, "micromailer/micromailer-1.0.3.pom" );
|
File pom = new File( testDirectory, "micromailer/micromailer-1.0.3.pom" );
|
||||||
System.out.println( pom.exists());
|
|
||||||
PomArtifactResolver resolver = artifactResolver( "micromailer" );
|
PomArtifactResolver resolver = artifactResolver( "micromailer" );
|
||||||
PomClassicDomainModel model = projectBuilder.buildModel( pom, null, resolver );
|
PomClassicDomainModel model = projectBuilder.buildModel( pom, null, resolver );
|
||||||
// This should be 2
|
// This should be 2
|
||||||
|
@ -93,7 +92,6 @@ public class PomConstructionTest
|
||||||
{
|
{
|
||||||
int i = fileName.indexOf( ".pom" );
|
int i = fileName.indexOf( ".pom" );
|
||||||
String id = fileName.substring( 0, i );
|
String id = fileName.substring( 0, i );
|
||||||
System.out.println( id );
|
|
||||||
artifacts.put( id, file );
|
artifacts.put( id, file );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -108,7 +106,6 @@ public class PomConstructionTest
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
String id = artifact.getArtifactId() + "-" + artifact.getVersion();
|
String id = artifact.getArtifactId() + "-" + artifact.getVersion();
|
||||||
System.out.println( id );
|
|
||||||
artifact.setFile( artifacts.get( id ) );
|
artifact.setFile( artifacts.get( id ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue