Dodałem kod wtyczki MVN w moim projekcie pom.xml.Nie znaleziono wtyczki dla prefiksu 'jetty' w bieżącym projekcie
<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>
Kiedy używać polecenia sudo mvn compile
i sudo mvn clean install
, nie mogę znaleźć żadnych błędów & zbudować pomyślnie, ale kiedy wpisz polecenie sudo mvn jetty:run
, dostaję błąd:
[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
Proszę zasugerować sposób na rozwiązanie. Dziękujemy
Spróbuj uruchomić wszystkie komendy 'mvn' bez sudo. –
Prawdopodobny duplikat [Miny Pluginów Missing Maven] (http://stackoverflow.com/questions/10426557/missing-maven-plugin-jetty) – cellepo