| apply from:'../gradle/maven-central-build.gradle' |
| |
| group = 'org.grails' |
| version = "1.1.0.RELEASE" |
| sourceCompatibility = 1.6 |
| targetCompatibility = 1.6 |
| |
| repositories { |
| |
| mavenCentral() |
| maven { url "http://repo.spring.io/libs-milestone" } |
| mavenLocal() |
| } |
| |
| dependencies { |
| def springBootVersion = '1.1.1.RELEASE' |
| compile "org.springframework.boot:spring-boot-cli:$springBootVersion", { |
| exclude group:'org.codehaus.groovy', module:'groovy' |
| } |
| compile 'org.codehaus.groovy:groovy-all:2.3.2' |
| compile "org.springframework.boot:spring-boot-autoconfigure:$springBootVersion" |
| compile "org.grails:grails-datastore-gorm-hibernate4:3.1.1.RELEASE" |
| |
| testCompile "org.spockframework:spock-core:0.7-groovy-2.0" |
| testRuntime "com.h2database:h2:1.3.173" |
| } |
| |
| |
| |
| |
| |