2020-10-04 18:09:48 -05:00
|
|
|
apply plugin: 'java-library'
|
2020-10-04 20:57:57 -05:00
|
|
|
apply plugin: 'com.jfrog.bintray'
|
2020-10-04 18:09:48 -05:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.12'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.12'
|
2020-10-04 20:57:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
|
|
|
libraryVersion = '0.1.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
version = libraryVersion
|
|
|
|
group = 'com.theokanning.openai-gpt3-java'
|
|
|
|
|
|
|
|
bintray {
|
|
|
|
user = System.getenv("BINTRAY_USER")
|
|
|
|
key = System.getenv("BINTRAY_KEY")
|
|
|
|
|
|
|
|
configurations = ['archives']
|
|
|
|
pkg {
|
|
|
|
repo = 'openai-gpt3-java'
|
|
|
|
name = 'api'
|
|
|
|
vcsUrl = 'https://github.com/TheoKanning/openai-java.git'
|
|
|
|
licenses = ["MIT"]
|
|
|
|
publish = true
|
|
|
|
version {
|
|
|
|
name = libraryVersion
|
|
|
|
}
|
|
|
|
}
|
2020-10-04 18:09:48 -05:00
|
|
|
}
|