mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
22 lines
310 B
Groovy
22 lines
310 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = 'https://repo.maven.apache.org/maven2'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
|
|
}
|
|
|
|
group = 'com.gildedrose'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|