21 lines
328 B
Groovy
21 lines
328 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'io.freefair.lombok' version '8.12.1'
|
|
}
|
|
|
|
group = 'be.seeseemelk'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|