in case someone need it, i've done it this way

task copyToLib(dependsOn: configurations.default.buildArtifacts, type: Copy)
{
    into "$buildDir/output/lib"
    from configurations.default
    from configurations.default.allArtifactFiles
}
then call my task like this
defaultTasks: 'copyToLib'

without declaring the defaultTasks line gradle does not execute my task. I
don't know why
may someone can explain!!!

--
View this message in context: 
http://gradle.1045684.n5.nabble.com/question-about-dependencies-management-tp4256801p4258784.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