| version = "1.0.0.BUILD-SNAPSHOT" |
| |
| configurations { |
| grails |
| } |
| |
| dependencies { |
| compile "org.springframework:spring-orm:$springVersion", { |
| exclude group:'org.springframework', module:'spring-jdbc' |
| exclude group:'org.springframework', module:'spring-core' |
| } |
| compile "org.springframework:spring-jdbc:$springVersion", { |
| exclude group:'org.springframework', module:'spring-tx' |
| exclude group:'org.springframework', module:'spring-core' |
| exclude group:'org.springframework', module:'spring-beans' |
| } |
| compile "org.springframework:spring-tx:$springVersion", { |
| exclude group:'org.springframework', module:'spring-core' |
| exclude group:'org.springframework', module:'spring-beans' |
| } |
| compile project(":grails-datastore-core") |
| grails("org.grails:grails-core:$grailsVersion") |
| grails("org.grails:grails-bootstrap:$grailsVersion") { |
| transitive = false |
| } |
| } |
| |
| sourceSets { |
| main { |
| compileClasspath += files(configurations.grails) |
| } |
| test { |
| compileClasspath += files(configurations.grails) |
| } |
| } |