{"id":31031821,"url":"https://github.com/eztxmmc/ezlib","last_synced_at":"2025-09-14T00:49:22.639Z","repository":{"id":218198802,"uuid":"745853170","full_name":"ezTxmMC/ezLib","owner":"ezTxmMC","description":"The Java library that simplifies and enhances various aspects of application development.","archived":false,"fork":false,"pushed_at":"2025-06-17T04:41:32.000Z","size":471,"stargazers_count":1,"open_issues_count":3,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-17T05:29:27.460Z","etag":null,"topics":["config","database","java","java-lib","java-library","lib","lib-config","lib-database","library","terminal"],"latest_commit_sha":null,"homepage":"http://status.eztxm.de","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ezTxmMC.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG-1.0-BETA.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-01-20T10:48:07.000Z","updated_at":"2025-06-17T04:41:29.000Z","dependencies_parsed_at":"2025-06-17T05:24:41.002Z","dependency_job_id":"b962f805-0cbf-4957-8539-40ba676367e7","html_url":"https://github.com/ezTxmMC/ezLib","commit_stats":null,"previous_names":["eztxmmc/eztxmapi","eztxmmc/ezlib"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/ezTxmMC/ezLib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezTxmMC%2FezLib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezTxmMC%2FezLib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezTxmMC%2FezLib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezTxmMC%2FezLib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ezTxmMC","download_url":"https://codeload.github.com/ezTxmMC/ezLib/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezTxmMC%2FezLib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275047957,"owners_count":25396337,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-13T02:00:10.085Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["config","database","java","java-lib","java-library","lib","lib-config","lib-database","library","terminal"],"created_at":"2025-09-14T00:49:20.938Z","updated_at":"2025-09-14T00:49:22.626Z","avatar_url":"https://github.com/ezTxmMC.png","language":"Java","readme":"# ezLib - Your simplified Java library [DISCONTINUED]\n\n![GitHub Release](https://img.shields.io/github/v/release/ezTxmMC/ezLib?include_prereleases\u0026style=for-the-badge\u0026color=%23d97325)\n![GitHub milestone details](https://img.shields.io/github/milestones/progress-percent/ezTxmMC/ezLib/4?style=for-the-badge)\n![GitHub watchers](https://img.shields.io/github/watchers/ezTxmMC/ezLib?style=for-the-badge)\n![GitHub Repo stars](https://img.shields.io/github/stars/ezTxmMC/ezLib?style=for-the-badge)\n![GitHub forks](https://img.shields.io/github/forks/ezTxmMC/ezLib?style=for-the-badge)\n\n## Features\n\n- Easy Configs:\n  - Json\n  - TOML\n  - YAML\n  - Properties\n- Easy Databases:\n  - SQLite\n  - MariaDB\n  - MongoDB\n- Object Converter\n- Own JsonObject and JsonArray\n- JsonClassConfig and JsonClassElement Annotation for class configuration\n\n## Dependency\n\n### Maven\n\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003eeztxm-repo\u003c/id\u003e\n        \u003curl\u003ehttps://repo.eztxm.de/maven/\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003ede.eztxm\u003c/groupId\u003e\n        \u003cartifactId\u003eezlib-all\u003c/artifactId\u003e\n        \u003cversion\u003e1.0-ALPHA11\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n``ezlib-all`` can be replaced by any module name.\n\n### Gradle\n\nGroovy:\n\n```groovy\nrepositories {\n    maven {\n        url 'https://repo.eztxm.de/maven/'\n    }\n}\n\ndependencies {\n    implementation 'de.eztxm:ezlib-all:1.0-ALPHA11'\n}\n```\n\nKotlin:\n\n```kotlin\nrepositories {\n    maven(\"https://repo.eztxm.de/maven/\")\n}\n\ndependencies {\n    implementation(\"de.eztxm:ezlib-all:1.0-ALPHA11\")\n}\n```\n\n``ezlib-all`` can be replaced by any module name.\n\n## Dependency Snapshots\n\n### Maven\n\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003eeztxm-repo\u003c/id\u003e\n        \u003curl\u003ehttps://repo.eztxm.de/maven/snapshots/\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003ede.eztxm\u003c/groupId\u003e\n        \u003cartifactId\u003eezlib\u003c/artifactId\u003e\n        \u003cversion\u003e1.0-BETA1.indev6\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n``ezlib`` can be replaced by any module name, be careful if you use `json` you must change the groupId to `de.eztxm.ezlib.config`.\n\n### Gradle\n\nGroovy:\n\n```groovy\nrepositories {\n    maven {\n        url 'https://repo.eztxm.de/maven/snapshots/'\n    }\n}\n\ndependencies {\n    implementation 'de.eztxm:ezlib:1.0-BETA1.indev6'\n}\n```\n\nKotlin:\n\n```kotlin\nrepositories {\n    maven(\"https://repo.eztxm.de/maven/snapshots/\")\n}\n\ndependencies {\n    implementation(\"de.eztxm:ezlib:1.0-BETA1.indev6\")\n}\n```\n\n``ezlib`` can be replaced by any module name, be careful if you use `json` you must change the groupId to `de.eztxm.ezlib.config`.\n\n## TODO\n\n- Converter for org.json and google gson to ezlib json and back\n- Database annotations\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feztxmmc%2Fezlib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feztxmmc%2Fezlib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feztxmmc%2Fezlib/lists"}