19 lines
277 B
Groovy
Raw Normal View History

2025-01-26 22:08:49 +01:00
plugins {
id 'java'
}
group = 'fr.nabil'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}