A collection of Java utility classes.
Add the following code to your pom.xml:
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>And the dependency:
<dependency>
    <groupId>com.github.mauriciotogneri</groupId>
    <artifactId>java-utils</artifactId>
    <version>3.4.0</version>
</dependency>Add the following code to your root build.gradle:
allprojects
{
    repositories
    {
        maven
        {
            url 'https://jitpack.io'
        }
    }
}Add the following code to your module build.gradle:
implementation 'com.github.mauriciotogneri:java-utils:3.4.0'