Skip to content

Instantly share code, notes, and snippets.

@squarepegsys
Created December 2, 2014 19:12
Show Gist options
  • Save squarepegsys/00ead89f6ecf836072f8 to your computer and use it in GitHub Desktop.
Save squarepegsys/00ead89f6ecf836072f8 to your computer and use it in GitHub Desktop.
Gradle and Groovy
sourceSets {
main {
groovy {
// override the default locations, rather than adding additional ones
srcDirs = ['src/main/groovy', 'src/main/java']
}
java {
srcDirs = [] // don't compile Java code twice
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment