I am trying to add vert.x in a maven project, but it seems like it is not in the central repository. Am I wrong?
If it is available from Maven, what are the dependency coordinates? Thanks.
|
|
We haven't uploaded vert.x into Maven Central yet, but it is near the top of the TODO list. I'll update this post when it's done. [UPDATE] The next release is imminent and will feature a Gradle-based build and Mavenised modular components, amongst other things. The Maven co-ordinates will be: "org.vert-x:vertx-%stuff%:%version%". (Note the dash: The project doesn't currently own the org.vertx domain, so Maven wouldn't let us use it.) [UPDATE2] vert.x 1.2.1.final was released into Maven Central, with coordinates as above. In Gradle for example:
See http://github.com/vert-x for examples of how we're using Gradle to build modules. |
|||||
|
|
If there are no vert.x artifacts in public Maven repos you can distribute the library with your project using a local (project based) repo using:
After that, you only need to recreate a Maven repo structure (groupId, artifactId, version) in /lib/repository. This approach will prevents you the need to install the vert.x dependency in each environment you want to compile the project. |
|||
|
|
|
I couldn't see a "pom.xml" file in the vert.x source code rep, or a Maven artifact in Maven Central, so I think you are out of luck ... for now. You could always download the vert.x sources, do a local build, slap together a minimal POM file (with your own invented group/id/version) and install it into your local repo. That will tide you over until the developers complete the Maven-ization and publication. |
|||
|
|