Skip to content

Instantly share code, notes, and snippets.

@mrhaki
Created February 29, 2016 20:12
Show Gist options
  • Save mrhaki/d8c686213d5c0fe58f9a to your computer and use it in GitHub Desktop.
Save mrhaki/d8c686213d5c0fe58f9a to your computer and use it in GitHub Desktop.
Small build.gradle sample file for creating tasks and testing with Spcok
apply plugin: 'groovy'
apply plugin: 'idea'
repositories {
jcenter()
}
dependencies {
compile gradleApi()
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
}
}
test {
testLogging {
showStandardStreams = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment