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.
- Versions < 4.0.0 require Java 8+
- Version 4+ require Java 11+
The library is available on Maven Central.
Add the following to your pom.xml
:
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
...
<dependency>
<groupId>com.arakelian</groupId>
<artifactId>more-commons</artifactId>
<version>4.0.1</version>
<scope>compile</scope>
</dependency>
Add the following to your build.gradle
:
repositories {
mavenCentral()
}
dependencies {
compile 'com.arakelian:more-commons:4.0.1'
}
Apache Version 2.0