[ 
https://jira.codehaus.org/browse/MANT-63?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Osipov closed MANT-63.
------------------------------

    Resolution: Won't Fix

Please refer to 
https://cwiki.apache.org/confluence/display/MAVEN/The+Great+JIRA+Cleanup+of+2014
 if you're wondering why this issue was closed out.

> get phase uses snapshot repo for non-snapshot dependencies
> ----------------------------------------------------------
>
>                 Key: MANT-63
>                 URL: https://jira.codehaus.org/browse/MANT-63
>             Project: Maven Ant Plugin
>          Issue Type: Bug
>    Affects Versions: 2.3
>            Reporter: SebbASF
>
> Create dummy Maven project using mvn archetype:generate
> mvn ant:ant
> Generated script contains the following, which is correct:
> {code}
> <get src="http://repo1.maven.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar"; 
>      dest="${maven.repo.local}/junit/junit/3.8.1/junit-3.8.1.jar" 
>      usetimestamp="false" 
>      ignoreerrors="true"/>
> {code}
> Now add the following to the POM:
> {code}
> <parent>
>   <groupId>org.apache</groupId>
>   <artifactId>apache</artifactId>
>   <version>9</version>
> </parent>
> {code}
> mvn ant:ant
> now generates:
> {code}
>     <get 
> src="http://repository.apache.org/snapshots/junit/junit/3.8.1/junit-3.8.1.jar";
>  
>          dest="${maven.repo.local}/junit/junit/3.8.1/junit-3.8.1.jar" 
>          usetimestamp="false" 
>          ignoreerrors="true"/>
>     <get 
> src="http://repo1.maven.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar"; 
>          dest="${maven.repo.local}/junit/junit/3.8.1/junit-3.8.1.jar" 
>          usetimestamp="false" 
>          ignoreerrors="true"/>
> {code}
> which means that the script will generate an error for the download.
> The generated script should only generate one download, based on whether the 
> version is a SNAPSHOT or not.



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)

Reply via email to