Skip to content

vndly/java-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

License

Java Utils

A collection of Java utility classes.

Installation

Maven

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>

Gradle

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'