On 22/08/2011 18:15, Kent Rosenkoetter wrote:
For a dependency declaration, you only declare the dependency itself and
an optional configuration mapping. Do not declare the artifacts of your
dependency. And make sure that "default" matches a configuration name in
your module.
If you declare a module named "MyLib" with configurations "runtime" and
"build", then to depend on it you would need:
<dependency name="MyLib" rev="latest.integration" conf="*->runtime"/>
The "*" matches configurations in the module that depends on MyLib. The
"runtime" matches a configuration in MyLib itself.
Kent
I am not getting this. I have a default configuration where compile time
dependencies go and I have a config configuration where configuration
files go. How do i declare a dependency so that each artifact gets
assigned to the correct conf?
If I write
<dependency name="module" rev="latest.integration" conf="*->default"/>
I just get everything going into the default conf. Not what I want.
On 8/22/11 9:47 AM, "teknokrat"<igor.apte...@nomura.com> wrote:
I'm really confused with Ivy's behaviour. I can't seem to get it to update
everything. I publish several artifacts to the repository using:
<publications>
<artifact/>
<artifact type="pom" ext="pom"/>
<artifact type="config" ext="jar" e:classifier="config"/>
</publications>
This works fine and I get module-1.0-SNAPSHOT.jar,
module-1.0-SNAPSHOT.pom and
module-1.0-SNAPSHOT-config.jar in the repository.
However, when I define my dependencies like so
<dependency name="module" rev="latest.integration" conf="config->default"
changing="true">
<artifact name="module" type="config" e:classifier="config" ext="jar"/>
</dependency>
Ivy never updates the config jar. I have used a sniffer and while Ivy
gets the
POM from the repository (which is Nexus) it never bothers to downloaded
the
updated module-1.0-SNAPSHOT-config.jar
what could possible be going on here??