From e1eaed07cd48486cbfdda0acb3d5c1c3b47e5b13 Mon Sep 17 00:00:00 2001 From: mustafalasheen Date: Mon, 21 Apr 2025 00:31:41 +0200 Subject: [PATCH] Setup minimal Spring Boot application with Docker --- pom.xml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..b8f7512 --- /dev/null +++ b/pom.xml @@ -0,0 +1,33 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 3.2.0 + + + com.example + app + 1.0.0 + + + + org.springframework.boot + spring-boot-starter-web + + + + + app + + + org.springframework.boot + spring-boot-maven-plugin + + + + \ No newline at end of file