Hi,

I'm in a situation where I need to depend on the same dependency
twice in different configurations, once including its transitive
dependencies, and once excluding them. However, Gradle seems
to overwrite the transitive flag, even when I declare it for
different configurations:

configurations {
   custom
}

dependencies {
   custom('...') {
      transitive = false
   }
   compile('...') {
      transitive = true
   }
}

now `gradle dependencies` lists no transitive dependencies for either
configuration.

Why is that?


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to