Gradle Copy Task Type

From NovaOrdis Knowledge Base
Revision as of 06:29, 28 March 2021 by Ovidiu (talk | contribs) (→‎Overview)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

External

Internal

Overview

Used by the Java plugin processResources and processTestResources tasks.

Example

task('copySrcDir', type: Copy) {
  from(file('srcDir'))
  into(buildDir)
}