You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by "Nicolas Lalevée (JIRA)" <ji...@apache.org> on 2010/10/21 18:48:16 UTC

[jira] Resolved: (IVY-1240) Only the last dependency descriptor is taken into account on the same module

     [ https://issues.apache.org/jira/browse/IVY-1240?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nicolas Lalevée resolved IVY-1240.
----------------------------------

       Resolution: Fixed
    Fix Version/s: trunk
         Assignee: Nicolas Lalevée

> Only the last dependency descriptor is taken into account on the same module
> ----------------------------------------------------------------------------
>
>                 Key: IVY-1240
>                 URL: https://issues.apache.org/jira/browse/IVY-1240
>             Project: Ivy
>          Issue Type: Bug
>    Affects Versions: 2.2.0
>            Reporter: Nicolas Lalevée
>            Assignee: Nicolas Lalevée
>             Fix For: trunk
>
>
> In some of our project we had:
> {code:xml}
> <dependency org="org" name="mymodule" rev="1.0" conf="compile,runtime->conf1" />
> <dependency org="org" name="mymodule" rev="1.0" conf="compile,runtime->conf2" />
> <dependency org="org" name="mymodule" rev="1.0" conf="compile,runtime->conf3" />
> {code}
> When resolving dependencies with the conf "*", the resulting "compile" conf report did contain dependencies of the conf1, conf2 and conf3 of mymodule. But the resulting "runtime" conf report, contained only the configuration of conf3 of mymodule.
> Changing the dependency into the following one fixed it:
> {code:xml}
> <dependency org="org" name="mymodule" rev="1.0" conf="compile,runtime->conf1,conf2,conf3" />
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.