group 'com.zeekling' version '1.0-SNAPSHOT' apply plugin: 'java' apply plugin: 'jacoco' sourceCompatibility = 1.8 repositories { mavenCentral() } dependencies { testImplementation group: 'junit', name: 'junit', version: '4.13.2' } test { testLogging { outputs.upToDateWhen { false } showStandardStreams = true events 'started', 'passed' } }