OpenAI-J/client/build.gradle
Theo Kanning ed2f1152e8
Add more tests and run them before each merge (#10)
These tests are very basic sanity checks
2022-04-28 14:49:54 -05:00

22 lines
533 B
Groovy

apply plugin: 'java-library'
apply plugin: "com.vanniktech.maven.publish"
dependencies {
api project(":api")
api 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
implementation 'com.squareup.retrofit2:converter-jackson:2.9.0'
testImplementation(platform('org.junit:junit-bom:5.8.2'))
testImplementation('org.junit.jupiter:junit-jupiter')
}
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
test {
useJUnitPlatform()
}