An open API service indexing awesome lists of open source software.

https://github.com/mouse0w0/eventbus

Event bus implementation for Java
https://github.com/mouse0w0/eventbus

Last synced: 4 months ago
JSON representation

Event bus implementation for Java

Awesome Lists containing this project

README

        

# eventbus

[![Maven Central](https://img.shields.io/maven-central/v/com.github.mouse0w0/eventbus.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.mouse0w0%22%20AND%20a:%22eventbus%22)

Event bus implementation for Java.

## How to use it

### Maven

Add the dependency

```xml

com.github.mouse0w0
eventbus
4.0.0

```
### Gradle

Step 1. Add the Central repository to your build file

Add it in your root build.gradle at the end of repositories:

```gradle
repositories {
mavenCentral()
}
```

Step 2. Add the dependency
```gradle
dependencies {
implementation 'com.github.mouse0w0:eventbus:4.0.0'
}
```