dima-weather/build.gradle

21 lines
381 B
Groovy

plugins {
id 'java'
}
group = 'io.tswf.got'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.mockito:mockito-core:5.18.0'
implementation 'org.json:json:20250517'
}
test {
useJUnitPlatform()
}