hi,

To get round this problem, i currently do the following:

subprojects {
  //task("${project.name}_jar").destinationDir = file(distDir)
  
  task('libs').doLast { task -> 
    task.project.task('libs').archiveNames.each {archiveName ->
       ant.copy(file: task.project."$archiveName".archivePath, todir:
distDir, overwrite:true)
    }
  }
}
-- 
View this message in context: 
http://www.nabble.com/inter-project-artifact-resolving-tp18379446p18380662.html
Sent from the gradle-user mailing list archive at Nabble.com.


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

    http://xircles.codehaus.org/manage_email


Reply via email to