Select Git revision
Forked from
LABOUREL Arnaud / M1 INFO FSI TP Template
Source project has a limited visibility.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
build.gradle 637 B
plugins {
id 'java'
id 'application'
id 'jacoco'
}
group 'fr.univ_amu'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation('org.mockito:mockito-core:5.0.0')
}
test {
finalizedBy jacocoTestReport
}
jacocoTestReport {
dependsOn test // tests are required to run before generating the report
reports {
xml.required = true
}
}
test {
useJUnitPlatform()
}