No plugin found for prefix 'jetty' in the current project and in the plugin groups


    如今Jetty的版本已经到9了,也早已经在Eclipse的门下了。因此有不少groupId,好比:org.eclipse.jetty、org.mortbay.jetty.这些均可以用的哦。apache

    我在使用MyEclipse结合maven操做jetty做为开发的服务器,这开开发比较方便。
服务器

    当我运行命令:
eclipse

    jetty:run
maven

    出现:ide

[ERROR] No plugin found for prefix 'jetty' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (F:\Java\maven\repository), central (http://repo.maven.apache.org/maven2)] -> [Help 1]网站

[ERROR] spa

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.插件

[ERROR] Re-run Maven using the -X switch to enable full debug logging.debug

[ERROR] code

[ERROR] For more information about the errors and possible solutions, please read the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException



    这样的问题,其实就是说,maven不知道这个插件在哪里,因此咱们须要配置或者加参数。


    解决:

    方法1:

    执行的时候是这样的:

        mvn org.mortbay.jetty:maven-jetty-plugin:run

    或:

        mvn org.eclipse.jetty:maven-jetty-plugin:run


    方法2:

    在maven的配置文件插件组上添加插件:

    <pluginGroups>

<pluginGroup>org.mortbay.jetty</pluginGroup> 

    </pluginGroups>

    或:

    <pluginGroups>

<pluginGroup>org.eclipse.jetty</pluginGroup> 

    </pluginGroups>


    这样就能够解决!






     本人我的网站:http://www.verysu.com 

    【欢迎各位浏览,若是你有什么好的工做请介绍,或者您是HR但愿您好好看看,谢谢!】

相关文章
相关标签/搜索