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

https://github.com/medavox/utils

reusable functionality for common tasks
https://github.com/medavox/utils

Last synced: about 1 month ago
JSON representation

reusable functionality for common tasks

Awesome Lists containing this project

README

        

# Utils
Useful, reusable functionality for common tasks in Java.

# Usage

To use code from this repository in your gradle-enabled project, just add this as a jitpack dependency to your build.gradle:

```gradle
...

dependencies {
compile 'com.github.medavox:utils:v0.11'
}

...
```

you'll also need to enable the jitpack repository:

```gradle
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
```

For more info on Jitpack, see .