[ 
http://jira.codehaus.org/browse/MNG-3682?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

John Casey updated MNG-3682:
----------------------------

    Fix Version/s: 2.0.10

need to review the status of this issue before we push forward on the RCs, 
since I think you're referring to code that I added for the 2.0.10 release 
process (then subsequently it got ported to 2.0.x main branch and 2.1/trunk).

> 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
>             Fix For: 2.0.10
>
>
> 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

        

Reply via email to