You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by dukehoops <ni...@gmail.com> on 2010/03/26 20:39:05 UTC

RE: quickstart POM has wrong artifactId for jetty maven plugin

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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org