mirror of
https://github.com/wahyd4/afterpay-creditcard.git
synced 2026-08-08 21:06:52 +10:00
29 lines
477 B
Groovy
29 lines
477 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'jacoco'
|
|
}
|
|
|
|
group 'com.github.wahyd4'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.0'
|
|
}
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
|
|
} |