Deftu / Deftils

Java/Kotlin core library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Deftils]

Simple core JVM library.

Latest release

2.0.0

Why should I use it?

Deftils provides new collection types and utility classes. To put it in short, it's only for your own Quality of Life.

How long until deprecated objects will be removed?

Once a class or method has been deprecated, a label will be added indicating when it was deprecated in the version timeline. The feature will most likely be removed within the next 3-5 updates.

Adding Deftils to your project.

Deftils' group is xyz.deftu.deftils, it's artifact name is Deftils and the version can be found at the top of this document.

Maven
<repositories>
    <repository>
        <id>maven-central-1</id>
        <name>MavenCentral</name>
        <url>https://s01.oss.sonatype.org/repositories/releases/</url>
    </repository>
</repositories>

<dependency>
    <groupId>xyz.deftu.deftils</groupId>
    <artifactId>Deftils</artifactId>
    <version>VERSION</version>
</dependency>
Gradle
repositories {
    mavenCentral()
    maven {
        url = "https://s01.oss.sonatype.org/repositories/releases/"
    }
}

dependencies {
    api("xyz.deftu.deftils:Deftils:VERSION")
}

About

Java/Kotlin core library.

License:GNU Lesser General Public License v2.1


Languages

Language:Java 100.0%