MVN

org.rribbit : rribbit

Maven & Gradle

Apr 17, 2023

RRiBbit · RRiBbit is an Open Source Java application framework that eliminates dependencies and simplifies code structure. It can be used as an Event Bus, but improves upon this by being compatible with existing code and allowing bidirectional communication between components. It also supports Remoting, so that you can use Event Buses that run on other machines, complete with failover, loadbalancing and SSL/TLS support.

<dependency>
    <groupId>org.rribbit</groupId>
    <artifactId>rribbit</artifactId>
    <version>7.1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.rribbit : rribbit to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 7.1.0

All Versions

Choose a version of org.rribbit : rribbit to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
7.1.x
rribbit-7.1.0
7.0.x
rribbit-7.0.0
6.0.x
rribbit-6.0.0
5.0.x
rribbit-5.0.0
4.0.x
rribbit-4.0.0
3.2.x
rribbit-3.2.0
3.1.x
rribbit-3.1.0
3.0.x
rribbit-3.0.0
2.7.x
rribbit-2.7.0
2.6.x
rribbit-2.6.0
2.5.x
rribbit-2.5.0
2.4.x
rribbit-2.4.0

How to add a dependency to Maven

Add the following org.rribbit : rribbit maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.rribbit</groupId>
    <artifactId>rribbit</artifactId>
    <version>7.1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.rribbit : rribbit gradle dependency to your build.gradle file:

implementation 'org.rribbit:rribbit:7.1.0'

Gradle Kotlin DSL: Add the following org.rribbit : rribbit gradle kotlin dependency to your build.gradle.kts file:

implementation("org.rribbit:rribbit:7.1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.rribbit : rribbit sbt scala dependency to your build.sbt file:

libraryDependencies += "org.rribbit" % "rribbit" % "7.1.0"

Advertisement