mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
28 lines
544 B
Groovy
28 lines
544 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()
|
|
}
|
|
|
|
task texttest(type: JavaExec) {
|
|
main = "com.gildedrose.TexttestFixture"
|
|
classpath = sourceSets.test.runtimeClasspath
|
|
args "30"
|
|
}
|