Fix: Support other color configs than the bundled one

This commit is contained in:
Raimund58
2025-03-28 09:29:04 +00:00
committed by Laurent Clouet
parent 617e1c1a90
commit d0d2c99ba9
5 changed files with 162 additions and 1 deletions

View File

@@ -47,6 +47,8 @@ dependencies {
implementation 'com.squareup.okhttp3:okhttp-urlconnection:4.12.+'
implementation 'org.slf4j:slf4j-nop:1.7.36'
implementation 'commons-io:commons-io:2.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.+'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
application {
@@ -70,3 +72,13 @@ pmd {
ruleSetFiles = files("rulesets/java-sheepit.xml")
ruleSets = []
}
tasks.named('test', Test) {
useJUnitPlatform()
maxHeapSize = '1G'
testLogging {
events "passed"
}
}