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

it2022-12-27  77

还有时候后边是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>

2、使用Junit test测试

最新回复(0)