23 lines
672 B
XML
23 lines
672 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
|
||
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0
|
||
|
|
https://maven.apache.org/xsd/settings-1.2.0.xsd">
|
||
|
|
<servers>
|
||
|
|
<server>
|
||
|
|
<id>nexus</id>
|
||
|
|
<username>admin</username>
|
||
|
|
<password>Gcsc!8932</password>
|
||
|
|
</server>
|
||
|
|
</servers>
|
||
|
|
|
||
|
|
<mirrors>
|
||
|
|
<mirror>
|
||
|
|
<id>nexus</id>
|
||
|
|
<name>GC Nexus Repository</name>
|
||
|
|
<url>https://nexus.gc-si.dev/repository/maven-public/</url>
|
||
|
|
<mirrorOf>*</mirrorOf>
|
||
|
|
</mirror>
|
||
|
|
</mirrors>
|
||
|
|
</settings>
|