mirror of
https://github.com/gsantner/dandelion
synced 2025-09-09 02:09:41 +02:00
Update gsantner/opoc libs/utils
This commit is contained in:
parent
fa7e37ccba
commit
6fbd399a4b
8 changed files with 221 additions and 74 deletions
11
build.gradle
11
build.gradle
|
@ -13,8 +13,8 @@ import java.text.SimpleDateFormat
|
|||
|
||||
buildscript {
|
||||
ext {
|
||||
version_gradle_tools = "3.6.1"
|
||||
version_plugin_kotlin = "1.3.71"
|
||||
version_gradle_tools = "3.6.3"
|
||||
version_plugin_kotlin = "1.3.72"
|
||||
enable_plugin_kotlin = false
|
||||
|
||||
version_compileSdk = 28
|
||||
|
@ -59,6 +59,13 @@ allprojects {
|
|||
tasks.matching { task -> task.name.matches('.*generate.*Resources') }.all {
|
||||
task -> task.dependsOn copyRepoFiles
|
||||
}
|
||||
|
||||
tasks.matching {it instanceof Test}.all { // Enable unit test output, html+xml output
|
||||
testLogging.events "passed", "skipped", "failed", "standardOut", "standardError"
|
||||
testLogging.showStandardStreams = true
|
||||
reports.junitXml.enabled = true
|
||||
reports.html.enabled = true
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue