Answers for "how to copy multiple files using gradle task"

0

how to copy multiple files using gradle task

task copyFiles (type: Copy, dependsOn: otherTask) { 
   with copySpec({ 
      from "${buildDir}/wrapper-linux-${jswArc}-${jswVersion}/bin/wrapper"
      into "$felix_tree/bin" 
      
      from "${buildDir}/wrapper-linux-${jswArc}-${jswVersion}/bin/wrapper"
      into "$felix_tree/bin" 
   }) 
   ... 
}
Posted by: Guest on September-15-2021

Code answers related to "how to copy multiple files using gradle task"

Browse Popular Code Answers by Language