Skip to content
This repository was archived by the owner on Apr 25, 2024. It is now read-only.

Ynverxe/blue

Repository files navigation

Blue

A set of collections and utilities for Java.

Import into your project

Maven

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
<dependency>
    <groupId>com.github.ynverxe.blue</groupId>
    <artifactId>MODULE</artifactId>
    <version>VERSION</version>
</dependency>

Gradle

repositories {
    mavenCentral()
    maven("https://jitpack.io")
}

dependencies {
    implementation("com.github.ynverxe.blue:MODULE:VERSION")    
}