URL-3 Spring Boot skeletons for the service
This commit is contained in:
23
services/redirect-service/build.gradle
Normal file
23
services/redirect-service/build.gradle
Normal file
@@ -0,0 +1,23 @@
|
||||
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()
|
||||
}
|
||||
Reference in New Issue
Block a user