From 1df19fd955eb951f5d31fb205963b2f4e794c039 Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Thu, 25 Jul 2024 11:56:13 +1000 Subject: Separate Docker Compose services for build, test, run Refactor Docker Compose setup to include distinct services for building, testing, and running the application. Use separate Dockerfiles and configurations for each phase to isolate concerns and improve workflow. Quiet down the maven logs and set log levels to WARN so there is less noise in the logs. Update README file with information on running the project. --- pom.xml | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index 55b3297..0422efd 100644 --- a/pom.xml +++ b/pom.xml @@ -64,6 +64,11 @@ spring-boot-starter-data-jpa + + org.postgresql + postgresql + + org.apache.commons commons-math3 @@ -73,7 +78,7 @@ com.h2database h2 - runtime + test @@ -83,7 +88,22 @@ org.springframework.boot spring-boot-maven-plugin + + org.apache.maven.plugins + maven-compiler-plugin + + false + + - + + + test + + test + + + + \ No newline at end of file -- cgit v1.2.3