mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
22 lines
402 B
Groovy
22 lines
402 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.6.2'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
|
|
}
|
|
|
|
group = 'com.gildedrose'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|