1
0
Fork 0
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:
Gregor Santner 2020-12-09 00:57:31 +01:00
parent fa7e37ccba
commit 6fbd399a4b
No known key found for this signature in database
GPG key ID: 161767F3E5A5E6CF
8 changed files with 221 additions and 74 deletions

View file

@ -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) {