rmn190
rmn190

Reputation: 611

how can I config jetty version with maven-jetty-plugin?

I want to run a webapp with Jetty-6.1.25, but how can I config the version number of jetty with maven-jetty-plugin?

Upvotes: 0

Views: 76

Answers (1)

jesse mcconnell
jesse mcconnell

Reputation: 7182

add a <version>6.1.25</version> element as a sibling of the to the maven-jetty-plugin...I have to note that we have released jetty 9 at this point though, with updated coordinates of org.eclipse.jetty:jetty-maven-plugin

Upvotes: 3

Related Questions