当前位置:   article > 正文

Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.0.0:exec (default-cli) on project

failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.2.0:exec

还有时候后边是1.5.0:exec
idea中测试类运行main方法报该错误提示信息。网上说是IDEA2020的兼容问题。
解决方法
1、
idea设置:去掉勾选
在这里插入图片描述
第一个配置是maven项目每次增加坐标都会去下载,添加了之后如果已经下载过的坐标就不会去下载了,从本地找。Maven用的jdk版本1.8.-DarchetypeCatalog=interal
在这里插入图片描述

添加如下配置,有时候不加也可以。

<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>
                    <!--                    <mainClass>com.itheima.test.MybatisTest</mainClass>-->
                </configuration>
            </plugin>
        </plugins>
    </build>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

2、使用Junit test测试
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/805905
推荐阅读
相关标签
  

闽ICP备14008679号