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
- Host: GitHub
- URL: https://github.com/mouse0w0/eventbus
- Owner: mouse0w0
- License: bsd-3-clause
- Created: 2018-09-10T15:31:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-21T08:42:56.000Z (7 months ago)
- Last Synced: 2025-01-31T17:11:36.719Z (5 months ago)
- Language: Java
- Homepage:
- Size: 204 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eventbus
[](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```
### GradleStep 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'
}
```