I have the following structure:

subproject A dependencies:
 -- huge list of third party dependencies

subproject B dependencies:
  -- Couple of external deps
  -- project A

I want to get a hold of all the external dependencies only for each project. 
Currently when using this:

  task ideLibs(type: Sync) {
    from configurations.compile
    into "libs"
  }

It'll copy all the dependencies transitively. So project B ends up with all 
external deps + project A artifacts + its external deps. I'd like it to only 
have the external libs included, to end up with:

subprojectA/libs/: lots of jars
subprojectB/libs: couple of external dep jars (without anything that's in A)

Additionally, how do I refer to all the IDE source jars to copy those too?


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

    http://xircles.codehaus.org/manage_email


Reply via email to