From a4585d4897ffe7eb08f7d657bed36f41ef73e2be Mon Sep 17 00:00:00 2001
From: Gorka Benguria <gorka.benguria@tecnalia.com>
Date: Wed, 15 Mar 2023 11:12:41 +0100
Subject: [PATCH] adds maven config

---
 maven/192.168.56.40.nip.io/.settings.xml | 60 ++++++++++++++++++++++++
 1 file changed, 60 insertions(+)
 create mode 100644 maven/192.168.56.40.nip.io/.settings.xml

diff --git a/maven/192.168.56.40.nip.io/.settings.xml b/maven/192.168.56.40.nip.io/.settings.xml
new file mode 100644
index 0000000..932f70f
--- /dev/null
+++ b/maven/192.168.56.40.nip.io/.settings.xml
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
+
+  <pluginGroups></pluginGroups>
+  <proxies></proxies>
+  <servers></servers>
+  <mirrors></mirrors>
+  <profiles><profile>
+      <id>local-proxy</id>
+      <repositories>
+        <repository>
+          <id>local-proxy</id>
+          <name>Local Internal repo</name>
+          <url>http://192.168.56.40.nip.io:8090/repository/internal/</url>
+          <layout>default</layout>
+          <snapshots>
+            <enabled>false</enabled>
+          </snapshots>
+        </repository>
+       
+        <repository>
+          <id>local-proxy-snapshots</id>
+          <name>Local Internal repo snapshots</name>
+          <url>http://192.168.56.40.nip.io:8090/repository/snapshots/</url>
+          <layout>default</layout>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+      </repositories>
+   
+      <pluginRepositories>
+        <pluginRepository>
+          <id>local-proxy</id>
+          <name>Local Internal repo</name>
+          <url>http://192.168.56.40.nip.io:8090/repository/internal/</url>
+          <layout>default</layout>
+          <snapshots>
+            <enabled>false</enabled>
+          </snapshots>
+        </pluginRepository>
+   
+        <pluginRepository>
+          <id>local-proxy-snapshots</id>
+          <name>Local Internal repo snapshots</name>
+          <url>http://192.168.56.40.nip.io:8090/repository/snapshots/</url>
+          <layout>default</layout>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </pluginRepository>
+      </pluginRepositories>
+    </profile>
+  </profiles>
+  <activeProfiles>
+    <activeProfile>local-proxy</activeProfile>
+  </activeProfiles>
+</settings>
\ No newline at end of file
-- 
GitLab