Ich habe in meinem Projekt pom.xml jetty mvn plugin code hinzugefügt.Kein Plugin für das Präfix "Jetty" im aktuellen Projekt gefunden
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.26</version>
<configuration>
<contextPath>/redkites</contextPath>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>deploy</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<daemon>true</daemon>
</configuration>
</execution>
</executions>
</plugin>
Wenn ich Befehle verwenden sudo mvn compile
und sudo mvn clean install
, ich habe keine Fehler finden & bauen erfolgreich, aber wenn ich den Befehl sudo mvn jetty:run
geben, ich erhalte eine Fehlermeldung:
[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 (/root/.m2/repository), central (http://repo.maven.apache.org/maven2)] -> [Help 1]
[ERROR]
[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.
[ERROR]
[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
Bitte vorschlagen ein Weg, es zu lösen. Danke
Versuchen Sie, alle 'mvn' Befehle ohne Sudo auszuführen. –
Mögliches Duplikat von [Missing Maven Plugin Jetty] (http://stackoverflow.com/questions/10426557/missing-maven-plugin-jetty) – cellepo