From 73ac9c924c944c45cd6a1e0143214522cf6085f4 Mon Sep 17 00:00:00 2001
From: Dimitrios Giannopoulos <dimit.giannopoulos@upnet.gr>
Date: Thu, 7 Dec 2023 14:41:01 +0000
Subject: [PATCH] added config for maven registry

---
 ci_settings.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 ci_settings.xml

diff --git a/ci_settings.xml b/ci_settings.xml
new file mode 100644
index 0000000..69ad06e
--- /dev/null
+++ b/ci_settings.xml
@@ -0,0 +1,16 @@
+<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
+  <servers>
+    <server>
+      <id>gitlab-maven</id>
+      <configuration>
+        <httpHeaders>
+          <property>
+            <name>Job-Token</name>
+            <value>${CI_JOB_TOKEN}</value>
+          </property>
+        </httpHeaders>
+      </configuration>
+    </server>
+  </servers>
+</settings>
-- 
GitLab