Skip to content

Latest commit

 

History

History
61 lines (44 loc) · 1.59 KB

README.md

File metadata and controls

61 lines (44 loc) · 1.59 KB

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