From eb855ffb3e22b9692105aedcafddf7d44a989df0 Mon Sep 17 00:00:00 2001
From: Dimitrios Giannopoulos <dimit.giannopoulos@upnet.gr>
Date: Tue, 13 Feb 2024 13:36:15 +0000
Subject: [PATCH] feat: removed skipTests, fixed version

---
 ci-templates/build.yml             | 2 +-
 ci-templates/build_unprotected.yml | 2 +-
 ci-templates/default.yml           | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ci-templates/build.yml b/ci-templates/build.yml
index bd5d893..4d10538 100644
--- a/ci-templates/build.yml
+++ b/ci-templates/build.yml
@@ -3,7 +3,7 @@
   stage: build
   image: maven:3.9.5-ibm-semeru-17-focal
   script:
-    - mvn deploy -s ci_settings.xml -DskipTests -Dversion=$APP_VERSION
+    - mvn deploy -s ci_settings.xml -Dversion=$APP_VERSION
   artifacts:
     paths:
       - target/
diff --git a/ci-templates/build_unprotected.yml b/ci-templates/build_unprotected.yml
index 369d8d9..a5c8669 100644
--- a/ci-templates/build_unprotected.yml
+++ b/ci-templates/build_unprotected.yml
@@ -3,7 +3,7 @@
   stage: build
   image: maven:3.9.5-ibm-semeru-17-focal
   script:
-    - mvn install -s ci_settings.xml -DskipTests
+    - mvn install -s ci_settings.xml
   artifacts:
     paths:
       - target/
diff --git a/ci-templates/default.yml b/ci-templates/default.yml
index 8b0f900..95386c2 100644
--- a/ci-templates/default.yml
+++ b/ci-templates/default.yml
@@ -7,7 +7,7 @@ stages:
 
 .default:
   variables:
-    DEFAULT_VERSION: "1.2.0-SNAPSHOT"
+    DEFAULT_VERSION: "1.0.0-SNAPSHOT"
   before_script:
     - |
       if [ "$CI_COMMIT_REF_NAME" = "main" ] && [ -n "$CI_COMMIT_TAG" ]; then
-- 
GitLab