ad 3) `configurations.compile.files` gives you all files of that
configuration (in the local Gradle cache). Often there is no need to copy
them into yet another directory. For example, you can include the files in a
zip straight from where they are. If, for some reason, you do need to copy
the files, you can do it like so:

    task copyLibs(type: Copy) {
        from configurations.compile
        into "/some/dir"
    }

A search in the forum (http://forums.gradle.org) might bring up additional
information.

--
Peter Niederwieser
Principal Engineer, Gradleware 
http://gradleware.com
Creator, Spock Framework 
http://spockframework.org
Twitter: @pniederw

--
View this message in context: 
http://gradle.1045684.n5.nabble.com/Moving-from-Ivy-to-Gradle-tp5436271p5436378.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