OpenAI-J/example/build.gradle
Theo Kanning 68e75010fd
Gradle 8.0 deprecation fix (#60)
Switched to the new method of setting the main class.
2023-01-02 15:40:27 -06:00

10 lines
167 B
Groovy

apply plugin: 'java'
apply plugin: 'application'
application {
mainClass.set('example.OpenAiApiExample')
}
dependencies {
implementation project(":client")
}