FWIW, this is happening because <version/> is omitted in generated pom.xml
<plugin/> tag. To fix:

change

                        <plugin>
                                <groupId>org.mortbay.jetty</groupId>
                                <artifactId>maven-jetty-plugin</artifactId>
                        </plugin>

to 

                        <plugin>
                                <groupId>org.mortbay.jetty</groupId>
                                <artifactId>maven-jetty-plugin</artifactId>
                                <version>${jetty.version}</version>
                        </plugin>



TahitianGabriel wrote:
> 
> Had the same behavior when lauching maven in command line (OK within
> eclipse). Just add the jetty plugin with the version you want in your
> pom.xml :
> 
> <plugin>
>       <groupId>org.mortbay.jetty</groupId>
>       <artifactId>maven-jetty-plugin</artifactId>
>       <version>6.1.4</version>
> </plugin>
> 
> 
> 


-----
----------------
Nikita Tovstoles
vside.com
----------------

-- 
View this message in context: 
http://old.nabble.com/quickstart-POM-has-wrong-artifactId-for-jetty-maven-plugin-tp27555192p28047057.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to