1. 程式人生 > >No plugin found for prefix 'jetty' in the current project and in the plugin groups

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

從意思來看,在本地倉庫有jetty的jar包,專案卻找不到,但是我明明在web的pom檔案中添加了jar

   <plugin>
                <groupId>org.mortbay.jetty</groupId>
                <artifactId>maven-jetty-plugin</artifactId>
                <version>6.1.26</version>
                <configuration>
                    <connectors>
                        <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
                            <port>8090</port>
                        </connector>
                    </connectors>
                </configuration>
            </plugin>

而且通過查詢資並沒有配置錯誤,

最後發現是啟動的路徑是demo,也就是整個專案,而demo對應的pom檔案中並沒有這個外掛,這個外掛在demo-web中,所以我修改了啟動方式,從demo-web啟動,果然問題解決