mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
26 lines
586 B
Groovy
26 lines
586 B
Groovy
allprojects {
|
|
apply(plugin: 'java')
|
|
apply(plugin: 'jacoco')
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
}
|
|
|
|
test {
|
|
finalizedBy jacocoTestReport // report is always generated after tests run
|
|
}
|
|
jacocoTestReport {
|
|
dependsOn test // tests are required to run before generating the report
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.11.3')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
} |