Skip to content

Instantly share code, notes, and snippets.

@saltnlight5
Created September 27, 2012 15:56
Show Gist options
  • Save saltnlight5/3794782 to your computer and use it in GitHub Desktop.
Save saltnlight5/3794782 to your computer and use it in GitHub Desktop.
Gradle Build Exmaples
apply plugin: 'java'
repositories { mavenCentral() }
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.1'
compile group: 'com.google.guava', name: 'guava', version: '13.0.1'
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
testCompile group: 'junit', name: 'junit-dep', version: '4.10'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment