本文主要是介绍Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.1.1:generate,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
新建Maven工程报错:Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.1.1:generate
问题原因是没有跳过测试,解决方法有两种:
一:命令行
mvn clean package -Dmaven.test.skip=true
二:在pom文件中配置
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-archetype-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
其他类似的问题解决方法也大体如此,命令行很方便,配置pom文件需要根据具体问题来修改。
这篇关于Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.1.1:generate的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!