vertx3-eventbus-client

WebJar for vertx3-eventbus-client

License

License

Categories

Categories

CLI User Interface EventBus Application Layer Libs Messaging
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

vertx3-eventbus-client
Last Version

Last Version

3.9.4
Release Date

Release Date

Type

Type

jar
Description

Description

vertx3-eventbus-client
WebJar for vertx3-eventbus-client
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/vert-x3/vertx-stack

Download vertx3-eventbus-client

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/vertx3-eventbus-client/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>vertx3-eventbus-client</artifactId>
    <version>3.9.4</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/vertx3-eventbus-client/
implementation 'org.webjars.npm:vertx3-eventbus-client:3.9.4'
// https://jarcasting.com/artifacts/org.webjars.npm/vertx3-eventbus-client/
implementation ("org.webjars.npm:vertx3-eventbus-client:3.9.4")
'org.webjars.npm:vertx3-eventbus-client:jar:3.9.4'
<dependency org="org.webjars.npm" name="vertx3-eventbus-client" rev="3.9.4">
  <artifact name="vertx3-eventbus-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='vertx3-eventbus-client', version='3.9.4')
)
libraryDependencies += "org.webjars.npm" % "vertx3-eventbus-client" % "3.9.4"
[org.webjars.npm/vertx3-eventbus-client "3.9.4"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : sockjs-client jar [1.1.5,2)

Project Modules

There are no modules declared in this project.

vertx-stack

Build Status

The Vert.x stack : Vert.x + the endorsed modules

Maven

This project provides pre-configured Maven poms for using in your projects, allowing you to consume the Vert.x stack easily.

Dependency chain (Maven depchain)

This artifact io.vertx:stack-depchain is a POM projects can import to get the dependencies it needs for running the base stack:

<dependency>
  <groupId>io.vertx</groupId>
  <artifactId>vertx-stack-depchain</artifactId>
  <version>3.5.1</version>
  <type>pom</type>
</dependency>

Bills of Materials (Maven BOM)

A BOM is a also a POM you can import in your project. It will not add dependencies to your POM, instead it will set the correct versions to use. Therefore it should be used with explicit dependencies:

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-stack-depchain</artifactId>
      <version>3.5.1</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

  <dependencies>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-core</artifactId>
    </dependency>
    ...
  </dependencies>

Docker

To build docker images, you need docker1.3+ and run mvn clean install -Pdocker It builds the 2 main images :

  • vert.x3 base - the base image provisionning the vert.x stack (vertx/vertx3)
  • vert.x3 executable - an image providing the vert.x command (vertx/vertx3-executable)

All images have a readme file containing their documentation and build instructions.

Examples of docker image usages are in https://github.com/vert-x3/vertx-examples/tree/master/docker-examples

Pushing Docker image to Docker Hub

The images can be pushed to Docker Hub. Before, be sure you are in the vertx organisation on docker hub (https://hub.docker.com/u/vertx/). Then, add your credentials into ~/.m2/settings.xml:

<server>
  <id>docker-hub</id>
  <username>username</username>
  <password>password</password>
  <configuration>
    <email>email</email>
  </configuration>
</server>

Once done, in the vertx-docker-base-image and vertx-docker-executable project just launch:

mvn docker:push

WARNING: This is going to take a while.....

Adding a new module to the stack

  1. Add it to vertx-dependencies (open the project, add it to the pom.xml, install, commit and push)
  2. Add it to stack-depchain/pom.xml (open the project, add the dependency, without the version (inherited from vertx-dependencies))
  3. Add it in the stack manager:
  • Open ./stack-manager/src/main/descriptor/vertx-stack.json
  • Add the dependency. If the dependency must be embedded in the min distribution, set included to true. So forget to use the \${version}.
  • Open ./stack-manager/src/main/descriptor/vertx-stack-full.json
  • Add the dependency. If the dependency must be embedded in the full distribution, set included to true. So forget to use the \${version}.
  1. Add it to the doc distribution:
  • Open ./stack-docs/pom.xml
  • Add the docs dependency (the using <classifier>docs</classifier> and <type>zip</type>)
  • Add the source dependency (the <classifier>sources</classifier>)
  • Add the copy instruction for the ant execution:
<copy todir="${project.build.directory}/docs/vertx-hawkular-metrics/">
    <fileset dir="${project.build.directory}/work/vertx-hawkular-metrics-docs-zip"/>
</copy>
  • Save the pom.xml file
  1. Build (mvn clean install from the root).
  2. Make it polyglot (unless the module is not polyglot, e.g. a cluster manager)
  • Kotlin: in vertx-lang-kotlin, edit vertx-lang-kotlin/pom.xml
    • Add an optional dependency to the POM
    • Update the list in the maven-dependency-plugin config
  • Groovy (only in Vert.x 3): in vertx-lang-groovy, edit pom.xml
    • Add an optional dependency to the POM
    • Update the list in the maven-dependency-plugin config
  • RxJava2: in vertx-rx, edit rx-java2/pom.xml
    • Add an optional dependency to the POM
    • Update the list in the maven-dependency-plugin config
  • RxJava: in vertx-rx, edit rx-java/pom.xml
    • Add an optional dependency to the POM
    • Update the list in the maven-dependency-plugin config
  1. Add it to the website in vertx-web-site:
  • Edit the docs summary page src/site/docs/index.html, use Tech Preview label
  1. Add it to the starter website in vertx-starter:
  • Edit the stack definition file src/main/resources/starter.json
    • Add the module details in one of the categories (web, data, ...etc)
    • Exclude the module from versions that did not have it (exclusions)
org.webjars.npm

Eclipse Vert.x

Versions

Version
3.9.4
3.9.3
3.9.1
3.9.0
3.8.5
3.8.4
3.8.3
3.8.2
3.8.1
3.8.0
3.7.1
3.7.0
3.6.2
3.6.0
3.5.4
3.5.3
3.5.1
3.5.0
3.4.2
3.4.1
3.4.0
3.3.3
3.3.2
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.0-1