Files
2025-12-16 17:58:35 +01:00

23 lines
369 B
Groovy

plugins {
id 'java'
}
group 'me.lenajenichen'
version '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
springBoot {
mainClass = 'shortener.ShortenerServiceApplication'
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}