From 75776505d2ea43f920d64d41357b4faa7b2958a2 Mon Sep 17 00:00:00 2001 From: DanielS Date: Wed, 19 Aug 2026 00:11:33 +0200 Subject: [PATCH] build(maven): add pom.xml with spring boot and testcontainers dependencies --- pom.xml | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..aa44d75 --- /dev/null +++ b/pom.xml @@ -0,0 +1,81 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 3.2.3 + + + + com.caspos + smartseat-backend + 0.0.1-SNAPSHOT + smartseat-backend + SmartSeat Gastro Reservation Backend + + + 21 + + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-web + + + org.postgresql + postgresql + runtime + + + org.flywaydb + flyway-core + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.testcontainers + junit-jupiter + test + + + org.testcontainers + postgresql + test + + + + + + + org.testcontainers + testcontainers-bom + 1.19.7 + pom + import + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + +