You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to run the application using "mvn jetty:run" but got this 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 (/home/geraldo/.m2/repository), central (https://repo.maven.apache.org/maven2)] -> [Help 1]
I am using openjdk-8 and maven 3 on Debian Jessie.
I resolved it by editing the gameoflife-web/pom.xml to replace
<groupId>org.mortbay.jetty</groupId>
with
<groupId>org.eclipse.jetty</groupId>
I also had to add org.eclipse.jetty as new pluginGroup in my Maven settings.xml.
The maven target executed after that.
PS I opened an issue even though I resolved it in case someone else hit the same problem.
The text was updated successfully, but these errors were encountered:
I tried to run the application using "mvn jetty:run" but got this error:
I am using openjdk-8 and maven 3 on Debian Jessie.
I resolved it by editing the gameoflife-web/pom.xml to replace
with
I also had to add org.eclipse.jetty as new pluginGroup in my Maven settings.xml.
The maven target executed after that.
PS I opened an issue even though I resolved it in case someone else hit the same problem.
The text was updated successfully, but these errors were encountered: