maven deploy出现marven-deploy-plugin相关错误

在做mmall项目时,执行deploy阶段出现问题:  


maven deploy出现marven-deploy-plugin相关错误_第1张图片

这个是是由于在pom文件中,没有对该plugin进行配置

加入以下即可解决

<plugin>
  <groupId>org.apache.maven.pluginsgroupId>
  <artifactId>maven-deploy-pluginartifactId>
  <version>2.7version>
  <configuration>
    <skip>trueskip>
  configuration>
plugin>

你可能感兴趣的:(maven deploy出现marven-deploy-plugin相关错误)