mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
45 lines
1.0 KiB
Groovy
45 lines
1.0 KiB
Groovy
apply plugin: "groovy"
|
|
apply plugin: "java"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
|
|
dependencies {
|
|
implementation 'org.codehaus.groovy:groovy:3.0.8'
|
|
testImplementation 'io.cucumber:cucumber-java:6.10.4'
|
|
testImplementation 'io.cucumber:cucumber-junit:6.10.4'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
}
|
|
|
|
configurations {
|
|
cucumberRuntime {
|
|
extendsFrom testImplementation
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|
|
|
|
task cucumber() {
|
|
dependsOn assemble, testClasses
|
|
doLast {
|
|
javaexec {
|
|
main = "io.cucumber.core.cli.Main"
|
|
classpath = configurations.cucumberRuntime + sourceSets.main.output + sourceSets.test.output
|
|
args = [
|
|
'--plugin', 'pretty',
|
|
'--plugin', 'html:target/cucumber-report.html',
|
|
'--glue', 'com.gildedrose',
|
|
'src/test/resources']
|
|
}
|
|
}
|
|
}
|