Hi,
is there anything in Ivy that forbids/discourages double declarations like
this? (A short test indicates, that Ivy seems ok with that.)
...
<dependencies>
<dependency org="com.acme" name="module" rev="1.0.0" conf="compile"/>
<dependency org="com.acme" name="module" rev="1.0.0" conf="runtime"/>
<dependency org="com.acme" name="module" rev="1.0.0" conf="runtime"/>
<dependency org="com.acme" name="module" rev="1.0.1" conf="runtime"/>
</dependencies>
...
Background: I'd like to generate some dependencies at build time and don't want
to dive into the details of merging a possibly existing declaration with the
generated ones.
Best Regards,
Tim Enderling