我是靠谱客的博主 安静小松鼠,最近开发中收集的这篇文章主要介绍Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.1.0:exe问题解决,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

解决:Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.0.0:exec (default-cli) on project spring_aop: Command execution failed.的问题
pom加上以下插件即可:

<build>
     <plugins>
         <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>exec-maven-plugin</artifactId>
             <version>1.6.0</version>
             <executions>
                 <execution>
                     <goals>
                         <goal>java</goal>
                     </goals>
                 </execution>
             </executions>
             <configuration>
                 <classpathScope>test</classpathScope>
             </configuration>
         </plugin>
     </plugins>
</build>

最后

以上就是安静小松鼠为你收集整理的Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.1.0:exe问题解决的全部内容,希望文章能够帮你解决Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.1.0:exe问题解决所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部