URL-3 Spring Boot skeletons for the service

This commit is contained in:
LenaGmbh
2025-12-16 17:58:35 +01:00
parent 9ecf26eee5
commit 23241f4af1
13 changed files with 213 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
plugins {
id 'java'
}
group 'me.lenajenichen'
version '0.0.1-SNAPSHOT'
springBoot {
mainClass = 'AnalyticsServiceApplication'
}
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()
}

View File

@@ -0,0 +1,13 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class AnalyticsServiceApplication {
public static void main(String[] args) {
SpringApplication.run(AnalyticsServiceApplication.class, args);
}
}