plugins { id 'java' } group 'fh.fd.ci' version '1.0-SNAPSHOT' repositories { mavenCentral() jcenter() } subprojects { apply plugin: 'java' compileJava {options.encoding = "UTF-8"} compileTestJava {options.encoding = "UTF-8"} sourceCompatibility = JavaVersion.VERSION_11 repositories { mavenCentral() jcenter() } dependencies { compileOnly 'org.projectlombok:lombok:1.18.16' annotationProcessor 'org.projectlombok:lombok:1.18.16' testImplementation('org.junit.jupiter:junit-jupiter:5.7.0') testImplementation('org.mockito:mockito-core:3.7.0') testImplementation('org.hamcrest:hamcrest-core:2.2') testCompileOnly 'org.projectlombok:lombok:1.18.16' testAnnotationProcessor 'org.projectlombok:lombok:1.18.16' } test { useJUnitPlatform() } }