Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 164 Bytes

gradle-copy-file.md

File metadata and controls

9 lines (7 loc) · 164 Bytes

title: Gradle: Copying files tags: gradle, gradle-copy

The gradle Copy task helps here.

	task someTask(type:Copy) {
		from: 'some/dir'
		into: 'other/dir'
	}