Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

Here's some previous answers on this topic:

The simplest solution is to add the transitive attribute to the dependency:

<dependency org="foo" name="bar" revision="3.0" transitive="false"/>

If you're using a Maven repository like Nexus, then a better solution is to use a configuration mapping

<dependency org="foo" name="bar" revision="3.0" conf="default->master"/>

Configurations in ivy are tough to understand, initially, but well worth the effort. I hope the following links help:

Here's some previous answers on this topic:

The simplest solution is to add the transitive attribute to the dependency:

<dependency org="foo" name="bar" revision="3.0" transitive="false"/>

If you're using a Maven repository like Nexus, then a better solution is to use a configuration mapping

<dependency org="foo" name="bar" revision="3.0" conf="default->master"/>

Configurations in ivy are tough to understand, initially, but well worth the effort. I hope the following links help:

Here's some previous answers on this topic:

The simplest solution is to add the transitive attribute to the dependency:

<dependency org="foo" name="bar" revision="3.0" transitive="false"/>

If you're using a Maven repository like Nexus, then a better solution is to use a configuration mapping

<dependency org="foo" name="bar" revision="3.0" conf="default->master"/>

Configurations in ivy are tough to understand, initially, but well worth the effort. I hope the following links help:

Source Link
Mark O'Connor
  • 77.1k
  • 10
  • 143
  • 187

Here's some previous answers on this topic:

The simplest solution is to add the transitive attribute to the dependency:

<dependency org="foo" name="bar" revision="3.0" transitive="false"/>

If you're using a Maven repository like Nexus, then a better solution is to use a configuration mapping

<dependency org="foo" name="bar" revision="3.0" conf="default->master"/>

Configurations in ivy are tough to understand, initially, but well worth the effort. I hope the following links help: