diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..200e56a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +image: maven:3.9.1-eclipse-temurin-17 + +cache: + paths: + - .m2/repository + +stages: + - build + - test + +build: + stage: build + script: + - echo "Maven Build started..." + - "mvn compile" + +test: + stage: test + script: + - echo "Maven Test started..." + - "mvn test"