tp2/panier/build-SNAPSHOT.gradle

21 lines
359 B
Groovy
Raw Permalink Normal View History

2025-01-23 11:45:13 +01:00
plugins {
id 'java'
}
repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
testImplementation(platform('org.junit:junit-bom:5.10.0-SNAPSHOT'))
testImplementation('org.junit.jupiter:junit-jupiter')
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}