vert-x / vertx-maven

Vert.x 2.x is deprecated - use instead
https://github.com/vert-x3/vertx-maven-starter
Other
22 stars 31 forks source link

Updated to work with Vert.x 2.1M2 #17

Closed fjordansilva closed 10 years ago

fjordansilva commented 10 years ago

Forked from 2.0.1-final (not including latests changes for Vert.x 2.1M3). This changes allows to use the Maven plugin with Vert.x 2.1M2. Current plugin version (2.0.1-final) uses 2.1M1 and if the project uses 2.1M2 it throws errors on execution (classes not found: CaseInsensitiveMultiMap for example)

purplefox commented 10 years ago

I already updated the current archetype to work with latest snapshots and made several other changes in the past few days...

fjordansilva commented 10 years ago

Yes, that's right but ... I can't find a version that works with 2.1M2 (the version of my project)

purplefox commented 10 years ago

If you want to change the version of Vert.x that the plugin uses you can just set the dependency section in the pom.xml of your project, like this:

https://github.com/vert-x/vertx-maven/blob/master/archetype/src/main/resources/archetype-resources/pom.xml#L126

fjordansilva commented 10 years ago

That's right. It works.

Thank you very much