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.
33 lines
628 B
33 lines
628 B
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'fh.fd.ci'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
|
|
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'
|
|
|
|
testCompileOnly 'org.projectlombok:lombok:1.18.16'
|
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'
|
|
}
|
|
}
|