You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
plugins { id 'java' }
group 'fh.fd.ci' version '1.0-SNAPSHOT'
repositories { mavenCentral() jcenter() }
subprojects {
apply plugin: 'java' 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() } }
|