Skip to content

Instantly share code, notes, and snippets.

@siosio
Created May 26, 2012 12:39
Show Gist options
  • Save siosio/2793807 to your computer and use it in GitHub Desktop.
Save siosio/2793807 to your computer and use it in GitHub Desktop.
apply plugin: 'java'
defaultTasks 'build'
sourceSets {
main {
java {
srcDir 'main/java'
}
}
test {
java {
srcDir 'test/java'
}
}
}
dependencies {
testCompile fileTree(dir: './test/lib', includes: ['*.jar'])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment