mirror of https://github.com/apache/maven.git
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:
parent
bd5218cbae
commit
b2577e5ac3
|
@ -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() );
|
||||
|
|
Loading…
Reference in New Issue