Skip to content

Instantly share code, notes, and snippets.

@wmacgyver
Last active May 25, 2016 21:34
Show Gist options
  • Save wmacgyver/d96d1116a15f1701b7f9b014b9f49106 to your computer and use it in GitHub Desktop.
Save wmacgyver/d96d1116a15f1701b7f9b014b9f49106 to your computer and use it in GitHub Desktop.
build.gradle for standlone GORM
apply plugin: 'java'
apply plugin: 'groovy'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.6'
compile 'org.grails:grails-datastore-gorm-hibernate4:5.0.6.RELEASE'
compile 'org.springframework:spring-expression:4.1.7.RELEASE'
compile 'org.springframework:spring-aop:4.1.7.RELEASE'
compile 'com.h2database:h2:1.3.171'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment