2.0.0
Deftils provides new collection types and utility classes. To put it in short, it's only for your own Quality of Life.
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.
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")
}