Skip to content

Small, useful Java utilities not found in Guava or Apache Commons

License

Notifications You must be signed in to change notification settings

arakelian/more-commons

Repository files navigation

more-commons

version CI

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.

Maven

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>

Gradle

Add the following to your build.gradle:

repositories {
  mavenCentral()
}

dependencies {
  compile 'com.arakelian:more-commons:4.0.1'
}

Licence

Apache Version 2.0

About

Small, useful Java utilities not found in Guava or Apache Commons

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages