Skip to content

Instantly share code, notes, and snippets.

@kprasad99
Created August 4, 2020 08:12
Show Gist options
  • Save kprasad99/f58a6562d0389750a4fd4ecde51e9407 to your computer and use it in GitHub Desktop.
Save kprasad99/f58a6562d0389750a4fd4ecde51e9407 to your computer and use it in GitHub Desktop.
Copy libs and dependency to directory in Gradle

Solution-1

Using two tasks to copy dependencies and subproject jars

task appLibs(type: Copy) {
    def jars=[]
    subprojects.each {
        jars+=it.libsDir
    }
    from jars
    into 'build/dist'
}

task depLibs(type: Copy) {
    into "build/dist"
    from subprojects.collect { it.configurations.compile }
}

Solution-2

Single task

task appLibs(type: Copy) {

    into 'build/dist'
    def jars=[]
    subprojects.each {
        jars+=it.libsDir
    }
    from jars
    from subprojects.collect { it.configurations.compile }
    exclude '*-sources.jar'

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment