Skip to content

Instantly share code, notes, and snippets.

@damienstanton
Created November 14, 2017 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damienstanton/fb7c608e9883d57da34d4238b0ecaabf to your computer and use it in GitHub Desktop.
Save damienstanton/fb7c608e9883d57da34d4238b0ecaabf to your computer and use it in GitHub Desktop.
minimal gradle file
// just Java 8 and JUnit
apply plugin: 'java'
sourceCompatibility = 1.8
version = '0.1.0'
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.12'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment