Skip to content

Instantly share code, notes, and snippets.

@trnl
Created January 18, 2013 04:04
Show Gist options
  • Save trnl/4562257 to your computer and use it in GitHub Desktop.
Save trnl/4562257 to your computer and use it in GitHub Desktop.
Create default folders tree in Gradle project
task "create-dirs" << {
sourceSets.all{
it.allSource.srcDirs*.mkdirs()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment