o Fixed compilation error on JDK 1.5+ due to method clash

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@995466 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2010-09-09 15:35:57 +00:00
parent bd5218cbae
commit b2577e5ac3
1 changed files with 3 additions and 2 deletions

View File

@ -187,7 +187,7 @@ public class ResolveTransitiveMojo
dependency.getVersion(), dependency.getType(),
dependency.getClassifier() );
getLog().info( "[MAVEN-CORE-IT-LOG] Resolving " + getId( artifact ) );
getLog().info( "[MAVEN-CORE-IT-LOG] Resolving " + ResolveTransitiveMojo.this.getId( artifact ) );
artifacts.add( artifact );
}
@ -204,7 +204,8 @@ public class ResolveTransitiveMojo
if ( artifact.getFile() != null )
{
props.setProperty( getId( artifact ), artifact.getFile().getPath() );
props.setProperty( ResolveTransitiveMojo.this.getId( artifact ),
artifact.getFile().getPath() );
}
getLog().info( "[MAVEN-CORE-IT-LOG] " + artifact.getFile() );