resilient/.forgejo/workflows/ci-settings.xml
root 8783a61994 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
2025-06-24 07:33:04 +01:00

30 lines
867 B
XML

<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>