From e9882ee547416bcfbce6d62bbb55a8acee43fd1f Mon Sep 17 00:00:00 2001 From: Jan Zickermann <jan.zickermann@dataport.de> Date: Tue, 10 Dec 2024 14:03:49 +0100 Subject: [PATCH] #2 OZG-7121 pipeline: Package jar instead of just compile --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5e9c774..a1075e1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,10 +22,10 @@ stages: - test - publish -build: +package: stage: build script: - - mvn clean compile $MAVEN_CLI_OPTS + - mvn clean package -DskipTests=true $MAVEN_CLI_OPTS artifacts: paths: - target/*.jar -- GitLab