OpenAI-J/api/build.gradle
Theo Kanning 1600841a58
Update lombok to 1.18.24 (#42)
Not sure why I never had compiling issues and others did, but I see no reason not to update this.
2022-12-04 12:55:17 -06:00

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'
}