Skip to content

Instantly share code, notes, and snippets.

@peas
Created August 7, 2010 23:25
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 peas/513314 to your computer and use it in GitHub Desktop.
Save peas/513314 to your computer and use it in GitHub Desktop.
apply plugin: 'java'
apply plugin: 'eclipse'
apply id: 'nome-projeto'
version = '0.1-SNAPSHOT'
repositories {
mavenCentral()
mavenRepo urls: 'https://repository.jboss.org/nexus/content/groups/public/'
}
dependencies {
compile group: 'org.hibernate', name: 'hibernate-core', version: '3.6.0.Beta2'
testCompile group: 'junit', name: 'junit', version: '4.+'
lib = "$projectDir/lib"
compile files(fileTree(dir: lib as File, includes: ['*.jar']))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment