Appassembler does not create correct relative paths for snapshot dependencies
-----------------------------------------------------------------------------
Key: MAPPASM-70
URL: http://jira.codehaus.org/browse/MAPPASM-70
Project: Mojo AppAssembler Plugin
Issue Type: Bug
Affects Versions: 1.0-beta-2
Environment: All
Reporter: Kaare Nilsen
Fix For: 1.0
When using snapshot dependencies the relative path for the dep is wrong. As
shown in the example below :
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>2.5.6-20080930.010034-59</version>
<relativePath>org/springframework/spring-orm/2.5.6-20080930.010034-59/spring-orm-2.5.6-20080930.010034-59.jar</relativePath>
</dependency>
This should be :
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>2.5.6-SNAPSHOT</version>
<relativePath>org/springframework/spring-orm/2.5.6-SNAPSHOT/spring-orm-2.5.6-20080930.010034-59.jar</relativePath>
</dependency>
Well.. from a release point of view we never should allow snapshot deps anyway,
but it kind a ruins it during development, so i guess we need to fix it :)
--
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
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email