进入springcloud开源项目pig根目录,用mvn clean install -Dmaven.test.skip=true命令对项目进行打包,出现如下错误:
image.png
寻找错误出现原因,是之前开发其他项目时maven的settings.xml配置文件里面配置的镜像地址为私服的地址,导致资源访问不通。
解决方法,将settings.xml的镜像配置为阿里云镜像即可顺利打包,settings.xml的配置为
<?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">
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
</servers>
<mirrors>
<mirror>
<id>aliyun</id>
<name>aliyun Maven</name>
<mirrorOf>*</mirrorOf>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
</mirrors>
<profiles>
</profiles>
<activeProfiles>
</activeProfiles>
</settings>
重新运行打包命令,打包成功
image.png
网友评论