加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mvn-settings.xml 2.41 KB
一键复制 编辑 原始数据 按行查看 历史
sa 提交于 2020-04-25 23:12 . init jenkinsfile
<?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">
<localRepository>/opt/jk_ws/repository</localRepository>
<pluginGroups>
<pluginGroup>org.mortbay.jetty</pluginGroup>
</pluginGroups>
<proxies></proxies>
<servers><!-- distributionAcc: add here -->
<server>
<id>releases</id>
<username>demo_deploy</username>
<password>xxx</password>
</server>
<server>
<id>snapshots</id>
<username>demo_deploy</username>
<password>xxx</password>
</server>
</servers>
<mirrors>
<mirror>
<id>codehaus-bypass</id>
<name>Codehaus bypass mirror</name>
<url>http://repo1.maven.org/maven2</url>
<mirrorOf>codehaus</mirrorOf>
</mirror>
<mirror>
<!--aliyun mirror reponstory -->
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
<profiles>
<profile>
<activation><activeByDefault>true</activeByDefault></activation>
<repositories>
<repository>
<id>nexus</id>
<url>http://47.98.177.156:8082/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>nexus</id>
<url>http://47.98.177.156:8082/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
<!--<distributionManagement>
<repository>
<id>releases</id>
<name>Local Nexus Repository</name>
<url>http://192.168.1.99:8082/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Local Nexus Repository</name>
<url>http://192.168.1.99:8082/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement> -->
</profile>
</profiles>
</settings>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化