tp1/carApp/build-SNAPSHOT.gradle

21 lines
359 B
Groovy
Raw Normal View History

2025-01-21 14:24:26 +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"
}
}