Ininite loop in MavenMetaDataSource
-----------------------------------
Key: MNG-3682
URL: http://jira.codehaus.org/browse/MNG-3682
Project: Maven 2
Issue Type: Bug
Affects Versions: 2.x
Reporter: Tomasz Wysocki
Priority: Minor
The do-while loop in MavenMetadataSource can run forever when
ProjectBuildingException occurs after project relocation.
Suggested fix:
Change
catch ( ProjectBuildingException e )
{
handleInvalidOrMissingMavenPOM( artifact, e );
}
to
catch ( ProjectBuildingException e )
{
handleInvalidOrMissingMavenPOM( artifact, e );
project = null;
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira