Skip to content

Commit

Permalink
Merge branch '2.1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Sep 13, 2012
2 parents 6e5a465 + 59ba880 commit a2ff2d2
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions grails-plugin-testing/build.gradle
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,15 +12,40 @@ dependencies {
project(':grails-test'), project(':grails-test'),
project(':grails-hibernate') project(':grails-hibernate')



// Datastore APIs // Datastore APIs
compile("org.grails:grails-datastore-gorm:$datastoreVersion") { compile("org.grails:grails-datastore-gorm:$datastoreVersion") {
transitive = false transitive = false
exclude group: 'org.grails', module:'grails-bootstrap'
exclude group: 'org.grails', module:'grails-core'
exclude group: 'org.grails', module:'grails-test'
exclude group: 'org.slf4j', module:'jcl-over-slf4j'
exclude group: 'org.slf4j', module:'jul-to-slf4j'
exclude group: 'org.slf4j', module:'slf4j-api'
exclude group: 'org.slf4j', module:'slf4j-simple'

} }
compile("org.grails:grails-datastore-core:$datastoreVersion") { compile("org.grails:grails-datastore-core:$datastoreVersion") {
transitive = false exclude group: 'org.springframework', module:'spring-core'
exclude group: 'org.springframework', module:'spring-context'
exclude group: 'org.springframework', module:'spring-web'
exclude group: 'org.springframework', module:'spring-beans'
exclude group: 'org.springframework', module:'spring-tx'
exclude group: 'org.slf4j', module:'jcl-over-slf4j'
exclude group: 'org.slf4j', module:'jul-to-slf4j'
exclude group: 'org.slf4j', module:'slf4j-api'
exclude group: 'org.slf4j', module:'slf4j-simple'
exclude group: 'org.grails', module:'grails-bootstrap'
exclude group: 'org.grails', module:'grails-core'
exclude group: 'org.grails', module:'grails-test'
exclude group: 'commons-collections', module:'commons-collections'
exclude group: 'commons-lang', module:'commons-lang'
exclude group: 'javassit', module:'javassist'
exclude group: 'java-persistence', module:'persistence-api'
exclude group: 'javassist', module: 'javassist'
} }
compile("org.grails:grails-datastore-simple:$datastoreVersion") { compile("org.grails:grails-datastore-simple:$datastoreVersion") {
transitive = false exclude group: 'org.grails', module:'grails-datastore-core'
} }


compile("org.springframework:spring-test:${springVersion}") { compile("org.springframework:spring-test:${springVersion}") {
Expand Down

0 comments on commit a2ff2d2

Please sign in to comment.