Solucionado (ver solução)
Solucionado
(ver solução)
3
respostas

No plugin found for prefix 'jetty'

Olá Pessoal, tudo bem?

Eu estou com um erro ao executar o run, pois o Eclipse não carregou o Jetty.

Meu POM.XML:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>br.com.alura.maven</groupId>
    <artifactId>lojaweb</artifactId>
    <packaging>war</packaging>
    <version>1.0.0-SNAPSHOT</version>
    <name>lojaweb Maven Webapp</name>
    <url>http://maven.apache.org</url>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <finalName>lojaweb</finalName>
        <plugins>
            <plugin>
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <version>9.4.4-SNAPSHOT</version>
            </plugin>
        </plugins>
    </build>
</project>

Ao executar mvn jetty:run esta dando a seguinte msg:

> mvn jetty:run
[INFO] Scanning for projects...
[WARNING] The POM for org.eclipse.jetty:jetty-maven-plugin:jar:9.4.4-SNAPSHOT is missing, no dependency information available
[WARNING] Failed to retrieve plugin descriptor for org.eclipse.jetty:jetty-maven-plugin:9.4.4-SNAPSHOT: Plugin org.eclipse.jetty:jetty-maven-plugin:9.4.4-SNAPSHOT or one of its dependencies could not be resolved: Could not find artifact org.eclipse.jetty:jetty-maven-plugin:jar:9.4.4-SNAPSHOT
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (13 KB at 8.9 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (20 KB at 11.9 KB/sec)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.931 s
[INFO] Finished at: 2017-04-12T19:06:41-03:00
[INFO] Final Memory: 10M/205M
[INFO] ------------------------------------------------------------------------
[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 (C:\Users\renan.oliveira\.m2\repository), central (https://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

O que estou fazendo de errado???

3 respostas

Fala aí Renan, blz?

Cara aparentemente não tem nada errado.

tenta fazer a alternativa que ele sugeriu: mvn jetty:run -X

Para ver a stacktrace e ter uma ideia do que pode estar dando errado.

solução!

A versão do plugin 9.4.4-SNAPSHOT não está no repositório central, substitua por esta: 9.4.3.v20170317 no arquivo POM.xml e funcionará.

Artur,

Funcionou!!!

Estranho porque ele dá aquela versão do Jetty: http://www.eclipse.org/jetty/documentation/9.4.x/jetty-maven-plugin.html#jetty-run-goal

Mas obrigado mesmo!!!

Fernando, obrigado pela sua ajuda também! Foi essencial..

Abs's

Renan