flyfish-framework/settings.xml

105 lines
3.6 KiB
XML
Raw Normal View History

2022-03-31 23:51:35 +00:00
<?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">
<mirrors>
<mirror>
<id>mirror</id>
<mirrorOf>!rdc-releases,!rdc-snapshots</mirrorOf>
<name>mirror</name>
<url>https://maven.aliyun.com/repository/public/</url>
</mirror>
</mirrors>
<servers>
<server>
<id>flyfish-releases</id>
<username>admin</username>
<password>YJXR19950501..</password>
</server>
<server>
<id>flyfish-snapshots</id>
<username>admin</username>
<password>YJXR19950501..</password>
</server>
<server>
<id>ossrh</id>
<username>wybaby168</username>
<password>Yjxr19950501..</password>
</server>
<server>
<id>rdc-releases</id>
<username>vsUeq1</username>
<password>qATkD3fND4</password>
</server>
<server>
<id>rdc-snapshots</id>
<username>vsUeq1</username>
<password>qATkD3fND4</password>
</server>
</servers>
<profiles>
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>rdc-releases</id>
<url>https://repo.rdc.aliyun.com/repository/118156-release-Sw8aZv/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>rdc-snapshots</id>
<url>https://repo.rdc.aliyun.com/repository/118156-snapshot-jRK1Jp/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>rdc-releases</id>
<url>https://repo.rdc.aliyun.com/repository/118156-release-Sw8aZv/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>rdc-snapshots</id>
<url>https://repo.rdc.aliyun.com/repository/118156-snapshot-jRK1Jp/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<profile>
<id>ossrh</id>
<properties>
<!-- 由于我电脑安装的是gpg2不存在gpg命令所以需要指定执行gpg2否则会报错 -->
<gpg.executable>gpg</gpg.executable>
<gpg.passphrase>19680823www</gpg.passphrase>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
</settings>