Missing Maven Plugin Jetty

前端 未结 7 2229
小鲜肉
小鲜肉 2021-02-19 04:15

I am having trouble folowing this http://hrycan.com/2012/03/28/primefaces-lazy-loading-datatable-for-jsf2/

It says I should just run

mvn jetty:run
         


        
7条回答
  •  野性不改
    2021-02-19 05:02

    The instructions at (http://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html) say to put the version as ${project.version} which is wrong! Also, the older documentation has the groupId set to org.codehaus.mojo it should be set to org.eclipse.jetty.

    I added a real version from the jetty repo (http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-maven-plugin/) and changed the groupId.

    
      org.eclipse.jetty
      jetty-maven-plugin
      9.0.5.v20130815
    
    

提交回复
热议问题