Fix: Support other color configs than the bundled one
This commit is contained in:
committed by
Laurent Clouet
parent
617e1c1a90
commit
d0d2c99ba9
12
build.gradle
12
build.gradle
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user