Skip to content
/ ezLib Public

The Java library that simplifies and enhances various aspects of application development.

License

Notifications You must be signed in to change notification settings

ezTxmMC/ezLib

Repository files navigation

ezLib - Your simplified Java library

GitHub Release GitHub milestone details GitHub watchers GitHub Repo stars GitHub forks

Features

  • Easy Configs:
    • Json
    • TOML
    • YAML
    • Properties
  • Easy Databases:
    • SQLite
    • MariaDB
    • MongoDB
  • Object Converter
  • Better JsonObject and JsonArray

Dependency

Maven

<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.

Gradle

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.

ToDo-List

  • GSON-Handler by @ezTxmMC