https://github.com/arakelian/more-commons
Small, useful Java utilities not found in Guava or Apache Commons
https://github.com/arakelian/more-commons
java java-11 java-8 utlity
Last synced: about 2 months ago
JSON representation
Small, useful Java utilities not found in Guava or Apache Commons
- Host: GitHub
- URL: https://github.com/arakelian/more-commons
- Owner: arakelian
- License: apache-2.0
- Created: 2017-11-25T04:19:37.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-04-24T03:39:54.000Z (about 2 years ago)
- Last Synced: 2025-01-20T13:23:29.606Z (4 months ago)
- Topics: java, java-11, java-8, utlity
- Language: Java
- Homepage:
- Size: 521 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# more-commons
[](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.arakelian%22%20AND%20a%3A%22more-commons%22)
[](https://github.com/arakelian/more-commons/actions/workflows/ci.yml)Small utility classes useful in a variety of projects. Philosophically, this library is intended to
augment what is available in Guava or Apache Commons, which we assume is linked into most projects.
We make every attempt to avoid reinventing the wheel.## Requirements
* Versions < 4.0.0 require Java 8+
* Version 4+ require Java 11+## Installation
The library is available on [Maven Central](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.arakelian%22%20AND%20a%3A%22more-commons%22).
### Maven
Add the following to your `pom.xml`:
```xml
central
Central Repository
http://repo.maven.apache.org/maven2
true
...
com.arakelian
more-commons
4.0.1
compile```
### Gradle
Add the following to your `build.gradle`:
```groovy
repositories {
mavenCentral()
}dependencies {
compile 'com.arakelian:more-commons:4.0.1'
}
```## Licence
Apache Version 2.0