26 lines
454 B
Groovy
26 lines
454 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'jacoco'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'eirb.pg203.Main'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.json:json:20240303'
|
|
testImplementation(platform('org.junit:junit-bom:5.11.2'))
|
|
testImplementation('org.junit.jupiter:junit-jupiter')
|
|
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
} |