forked from grails/grails-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (28 loc) · 1.12 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
dependencies {
compile "org.springframework:spring-tx:${springVersion}"
// Testing
compile "org.codehaus.groovy:groovy-test:$groovyVersion", {
transitive = false
exclude group:'junit', module: 'junit'
exclude group:'org.codehaus.groovy', module: 'groovy'
exclude group:'org.hamcrest', module: 'hamcrest-core'
}
compile "junit:junit:${junitVersion}", {
exclude group:'org.hamcrest', module: 'hamcrest-core'
}
compile("org.spockframework:spock-core:${spockVersion}") {
transitive = false
exclude group:'junit', module: 'junit-dep'
exclude group:'org.codehaus.groovy', module: 'groovy-all'
}
provided project(":grails-plugin-converters"), project(":grails-plugin-mimetypes")
provided project(":grails-web")
// command line requirements
provided "jline:jline:$jlineVersion"
provided "org.fusesource.jansi:jansi:$jansiVersion"
// Ant
provided "org.apache.ant:ant:${antVersion}"
provided "org.apache.ant:ant-junit:${antVersion}"
// needed for Spock
compile "org.objenesis:objenesis:${objenesisVersion}"
}