Skip to content

Instantly share code, notes, and snippets.

@pallocchi
Created June 27, 2015 06:36
Show Gist options
  • Save pallocchi/d30a74e018110b3ba3e4 to your computer and use it in GitHub Desktop.
Save pallocchi/d30a74e018110b3ba3e4 to your computer and use it in GitHub Desktop.
Example for Gradle basic dependency configuration
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.hibernate', name: 'hibernate-core', version: '3.6.7.Final'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment