23 lines
358 B
Groovy
23 lines
358 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'me.lenajenichen'
|
|
version '0.0.1-SNAPSHOT'
|
|
|
|
springBoot {
|
|
mainClass = 'RedirectServiceApplication'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |