Hi,

could somebody please explain the gradle dependency mechanism?

If I declare this inside project A:

dependencies {
   compile project(':B')
}

and then I declare this in project B:

dependencies {
   compile project(':C')
   runtime project(':D')
}

will the compile classpath for project A contain B and C, too? And how about the runtime classpath of A, will it contain B, C and D?

Cheers,
Matthias


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

   http://xircles.codehaus.org/manage_email


Reply via email to