Skip to content

Instantly share code, notes, and snippets.

@sebersole
Created September 4, 2013 15:33
Show Gist options
  • Select an option

  • Save sebersole/6438726 to your computer and use it in GitHub Desktop.

Select an option

Save sebersole/6438726 to your computer and use it in GitHub Desktop.
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
repositories {
mavenCentral()
mavenRepo name: 'jboss-nexus', url: "http://repository.jboss.org/nexus/content/groups/public/"
}
group = 'org.ajug.jpa21'
version = '1.0.0-SNAPSHOT'
dependencies {
compile 'org.hibernate:hibernate-entitymanager:4.3.0-SNAPSHOT'
compile 'org.javassist:javassist:3.18.1-Beta1'
compile 'joda-time:joda-time:2.3'
testCompile 'junit:junit:4.11'
testRuntime 'postgresql:postgresql:9.1-901.jdbc4'
testRuntime 'log4j:log4j:1.2.17'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment