https://github.com/mouse0w0/observable
Observable classes implementation for Java
https://github.com/mouse0w0/observable
Last synced: 4 months ago
JSON representation
Observable classes implementation for Java
- Host: GitHub
- URL: https://github.com/mouse0w0/observable
- Owner: mouse0w0
- License: apache-2.0
- Created: 2019-05-21T15:22:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T13:58:47.000Z (over 2 years ago)
- Last Synced: 2025-01-01T00:32:15.684Z (5 months ago)
- Language: Java
- Homepage:
- Size: 230 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# observable
[](https://search.maven.org/search?q=g:%22com.github.mouse0w0%22%20AND%20a:%22observable%22)
Observable classes implementation for Java.
## How to use it
### Maven
Add the dependency
```xml
com.github.mouse0w0
observable
1.4.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:observable:1.4.0'
}
```