RoomPicker/api/build.gradle
2024-02-15 00:33:08 +07:00

18 lines
299 B
Groovy

plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'io.swagger.core.v3:swagger-annotations:2.2.20'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}