解决Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.4:install (default-cli) on

这个问题困扰了我一小会儿,我想说的是,之前通过maven部署springboot的时候怎么也找不出问题出在哪里,于是我通过快速布置了一个Springboot项目之后,发现,还是会报错
解决Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.4:install (default-cli) on_第1张图片

于是我看了这个版本号之后,把它加进去就可以了
   <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
<version>2.5.3version>
            plugin>
        plugins>
    build>

你可能感兴趣的:(spring,boot,maven,spring,boot,java,bug)