designPattern/build.gradle

24 lines
386 B
Groovy
Raw Normal View History

2020-02-23 14:01:09 +00:00
group 'com.zeekling'
version '1.0-SNAPSHOT'
apply plugin: 'java'
2022-07-10 16:10:27 +00:00
apply plugin: 'jacoco'
2020-02-23 14:01:09 +00:00
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
2022-07-10 16:10:27 +00:00
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}
test {
testLogging {
outputs.upToDateWhen { false }
showStandardStreams = true
events 'started', 'passed'
}
2020-02-23 14:01:09 +00:00
}