Not sure why I never had compiling issues and others did, but I see no reason not to update this.
14 lines
357 B
Groovy
14 lines
357 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: "com.vanniktech.maven.publish"
|
|
|
|
dependencies {
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.9.0'
|
|
compileOnly 'org.projectlombok:lombok:1.18.24'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.24'
|
|
}
|
|
|
|
compileJava {
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
}
|