1.私有库地址 http://jks.funenc.com:8081/
2.新建私有库地址



填写名称
3.复制私有库地址 并配置pom.xml
<distributionManagement>
<repository>
<!--和私有库名称保持一致-->
<id>training_system</id>
<name>training_system</name>
<!--私有仓库地址-->
<url>http://jks.funenc.com:8081/repository/training_system/</url>
</repository>
</distributionManagement>
4.配置maven settings.xml
<servers>
<server>
<id>training_system</id>
<username>用户</username>
<password>密码</password>
</server>
</servers>
5.上传
