10 lines
215 B
Groovy
10 lines
215 B
Groovy
apply plugin : 'groovy'
|
|
|
|
dependencies {
|
|
implementation 'org.codehaus.groovy:groovy:2.4.12'
|
|
|
|
testImplementation 'org.spockframework:spock-core:1.0-groovy-2.4', {
|
|
exclude module : 'groovy-all'
|
|
}
|
|
}
|