Added settings file for maven repo

This will be used in the pipeline to fetch dependencies from a local nexus, instead of remote maven repo
This commit is contained in:
root 2025-06-24 07:33:04 +01:00
parent 4867f27e8f
commit 8783a61994

View file

@ -0,0 +1,30 @@
<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
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://repo.oguerreiro.com/repository/maven-public/</url>
</mirror>
</mirrors>
<servers>
<server>
<id>nexus</id>
<username>default</username>
<password>default#123!</password>
</server>
<server>
<id>maven-releases</id>
<username>default</username>
<password>default#123!</password>
</server>
<server>
<id>maven-snapshots</id>
<username>default</username>
<password>default#123!</password>
</server>
</servers>
</settings>