mirror of https://github.com/apache/maven.git
o remove debug output
o we don't need any but the super pom now for getting the initial repositories git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@571919 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c0ce98d89a
commit
42807d7765
|
@ -105,7 +105,7 @@ public class DefaultBuildExtensionScanner
|
|||
|
||||
try
|
||||
{
|
||||
List originalRemoteRepositories = getInitialRemoteRepositories( localRepository, globalProfileManager );
|
||||
List originalRemoteRepositories = getInitialRemoteRepositories();
|
||||
|
||||
getLogger().debug( "Pre-scanning POM lineage of: " + pom + " for build extensions." );
|
||||
|
||||
|
@ -342,7 +342,7 @@ public class DefaultBuildExtensionScanner
|
|||
return lineage;
|
||||
}
|
||||
|
||||
private List getInitialRemoteRepositories( ArtifactRepository localRepository, ProfileManager globalProfileManager )
|
||||
private List getInitialRemoteRepositories()
|
||||
throws ExtensionScanningException
|
||||
{
|
||||
MavenProject superProject;
|
||||
|
@ -358,8 +358,6 @@ public class DefaultBuildExtensionScanner
|
|||
+ e.getMessage(), e );
|
||||
}
|
||||
|
||||
System.out.println( "superProject = " + superProject );
|
||||
|
||||
return superProject.getRemoteArtifactRepositories();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue