- Easy Configs:
- Json
- TOML
- YAML
- Properties
- Easy Databases:
- SQLite
- MariaDB
- MongoDB
- Object Converter
- Better JsonObject and JsonArray
<repositories>
<repository>
<id>eztxm-repo</id>
<url>https://repo.eztxm.de/maven/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>de.eztxm</groupId>
<artifactId>ezlib-all</artifactId>
<version>1.0-ALPHA10</version>
</dependency>
</dependencies>
eztxm-all
can be replaced by any module name.
Groovy:
repositories {
maven {
url 'https://repo.eztxm.de/maven/'
}
}
dependencies {
implementation 'de.eztxm:ezlib-all:1.0-ALPHA10'
}
Kotlin:
repositories {
maven("https://repo.eztxm.de/maven/")
}
dependencies {
implementation("de.eztxm:ezlib-all:1.0-ALPHA10")
}
eztxm-all
can be replaced by any module name.
- GSON-Handler by @ezTxmMC