Created
November 4, 2014 13:48
-
-
Save SlyDen/5a88677349bdbc19d6e3 to your computer and use it in GitHub Desktop.
Gradle task to generate java project source dirs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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