OpenAI-J/api/build.gradle

31 lines
674 B
Groovy
Raw Normal View History

apply plugin: 'java-library'
2020-10-04 20:57:57 -05:00
apply plugin: 'com.jfrog.bintray'
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
}
}
}