1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-30 17:20:20 +02:00

Patch/Bug fix for ContextMenuMouseListener Actions (#161)

* Should fix the issue associated with copy/paste.
* Fix build gradle, and also create junit.
This commit is contained in:
X
2023-12-09 08:19:36 -05:00
committed by GitHub
parent 658241970d
commit 2e5ef70fbd
6 changed files with 368 additions and 25 deletions

View File

@@ -135,12 +135,14 @@ tasks.withType<AbstractArchiveTask>().configureEach {
isReproducibleFileOrder = true
}
println("Build directory: ${file(layout.buildDirectory)}")
tasks.jacocoTestReport {
dependsOn(tasks.test) // tests are required to run before generating the report
reports {
xml.required.set(false)
csv.required.set(false)
html.outputLocation.set(file("${layout.buildDirectory}/jacocoHtml"))
html.outputLocation.set(file("${file(layout.buildDirectory)}/jacocoHtml"))
}
}