mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-05 07:57:59 +01:00
Log individual JUnit test results
This commit is contained in:
parent
221a6622f3
commit
dfc5c49f56
@ -11,8 +11,8 @@ val baseExtension = extensions.create<EssentialsBaseExtension>("essentials", pro
|
|||||||
|
|
||||||
val checkstyleVersion = "8.36.2"
|
val checkstyleVersion = "8.36.2"
|
||||||
val spigotVersion = "1.20.4-R0.1-SNAPSHOT"
|
val spigotVersion = "1.20.4-R0.1-SNAPSHOT"
|
||||||
val junit5Version = "5.7.0"
|
val junit5Version = "5.10.2"
|
||||||
val mockitoVersion = "3.2.0"
|
val mockitoVersion = "3.12.4"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation("org.junit.jupiter", "junit-jupiter", junit5Version)
|
testImplementation("org.junit.jupiter", "junit-jupiter", junit5Version)
|
||||||
@ -26,6 +26,12 @@ dependencies {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.test {
|
||||||
|
testLogging {
|
||||||
|
events("PASSED", "SKIPPED", "FAILED")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
if (baseExtension.injectBukkitApi.get()) {
|
if (baseExtension.injectBukkitApi.get()) {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
Loading…
Reference in New Issue
Block a user