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:
parent
4867f27e8f
commit
8783a61994
1 changed files with 30 additions and 0 deletions
30
.forgejo/workflows/ci-settings.xml
Normal file
30
.forgejo/workflows/ci-settings.xml
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue