GildedRose-Refactoring-Kata/Java/build.gradle
Gasan Guseinov 1f8bcf777b updated kata
2021-04-18 14:18:16 +02:00

25 lines
564 B
Groovy

plugins {
id 'java'
id "io.freefair.lombok" version "6.0.0-m2"
}
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'
testImplementation 'com.approvaltests:approvaltests:5.0.0'
implementation 'org.mockito:mockito-core:3.9.0'
}
group = 'com.gildedrose'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
test {
useJUnitPlatform()
}