Skip to content

Instantly share code, notes, and snippets.

@SlyDen
Created November 4, 2014 13:48
Show Gist options
  • Save SlyDen/5a88677349bdbc19d6e3 to your computer and use it in GitHub Desktop.
Save SlyDen/5a88677349bdbc19d6e3 to your computer and use it in GitHub Desktop.
Gradle task to generate java project source dirs
task createSourceDirs << {
sourceSets.all { set ->
set.allSource.srcDirs.each {it.mkdirs()}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment