mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
29 lines
797 B
Groovy
29 lines
797 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
testImplementation 'com.approvaltests:approvaltests:9.3.0'
|
|
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.17.2'
|
|
compile group: 'io.cucumber', name: 'cucumber-java', version: '6.7.0'
|
|
testCompile group: 'io.cucumber', name: 'cucumber-junit', version: '6.7.0'
|
|
}
|
|
|
|
group = 'com.gildedrose'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
test {
|
|
testLogging {
|
|
events "passed", "skipped", "failed", "standardOut", "standardError"
|
|
}
|
|
useJUnitPlatform()
|
|
}
|