本文主要是介绍Java - 异常 - no plugin found for prefix 'tomcat 7' in the current project and in the plugin groups,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
方法1、pom加
<plugin><groupId>org.apache.tomcat.maven</groupId><artifactId>tomcat7-maven-plugin</artifactId><version>2.2</version>
</plugin>
有时无法启动。
方法2、maven的settings.xml文件加上
<pluginGroups>
<pluginGroup>org.apache.tomcat.maven</pluginGroup>
</pluginGroups>
成功运行。
https://blog.csdn.net/simon_cy/article/details/81810660
这篇关于Java - 异常 - no plugin found for prefix 'tomcat 7' in the current project and in the plugin groups的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!