{"id":13543412,"url":"https://github.com/masecla22/Modrinth4J","last_synced_at":"2025-04-02T12:32:22.842Z","repository":{"id":64879433,"uuid":"579036933","full_name":"masecla22/Modrinth4J","owner":"masecla22","description":"A fully-compliant Java wrapper for the Modrinth API","archived":false,"fork":false,"pushed_at":"2024-02-15T12:07:45.000Z","size":432,"stargazers_count":18,"open_issues_count":3,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-01T13:45:55.607Z","etag":null,"topics":["java","modrinth","wrapper"],"latest_commit_sha":null,"homepage":"","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/masecla22.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2022-12-16T13:57:16.000Z","updated_at":"2024-12-13T17:17:25.000Z","dependencies_parsed_at":"2024-02-15T13:28:26.044Z","dependency_job_id":"1e91f4e6-9aa1-426d-b2db-0e6a1f1a0486","html_url":"https://github.com/masecla22/Modrinth4J","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masecla22%2FModrinth4J","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masecla22%2FModrinth4J/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masecla22%2FModrinth4J/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masecla22%2FModrinth4J/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/masecla22","download_url":"https://codeload.github.com/masecla22/Modrinth4J/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246815864,"owners_count":20838531,"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","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":["java","modrinth","wrapper"],"created_at":"2024-08-01T11:00:31.279Z","updated_at":"2025-04-02T12:32:17.829Z","avatar_url":"https://github.com/masecla22.png","language":"Java","funding_links":[],"categories":["Libraries"],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e Modrinth4J \u003c/h1\u003e\n\u003cp align=\"center\"\u003eA fully-compliant blazing fast Java wrapper for the Modrinth API\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg alt=\"github\" height=\"56\" src=\"https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@2/assets/cozy/available/github_vector.svg\"\u003e\n  \u003cimg alt=\"java8\" height=\"56\" src=\"https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@2/assets/cozy/built-with/java8_vector.svg\"\u003e\n  \u003cimg alt=\"maven\" height=\"56\" src=\"https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@2/assets/cozy/built-with/maven_vector.svg\"\u003e\n  \u003ca href=\"https://discord.gg/G8XMHF8Xxa\"\u003e\n     \u003cimg alt=\"discord-plural\" height=\"56\" src=\"https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@2/assets/cozy/social/discord-plural_vector.svg\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n\n## Features:\nThis API presents a (more than) full up-to-date coverage of the Modrinth API, allowing for intuitive native integration with existing java projects.  \n\n## Adding to a project:\n### Stable Release Channel\nModrinth4J is distributed through Maven Central, so just adding the following is enough. \n\n### Gradle:\n```java\ndependencies {\n      implementation 'dev.masecla:Modrinth4J:2.0.0'\n}\n```\n\n### Maven\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003edev.masecla\u003c/groupId\u003e\n    \u003cartifactId\u003eModrinth4J\u003c/artifactId\u003e\n    \u003cversion\u003e2.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Bleeding Edge\nThe following is for running Modrinth4J on the bleeding edge. \n### Gradle:\nAdd jitpack to the gradle repositories:\n```java\nrepositories { \n     maven { url \"https://jitpack.io\" }\n}\n```\nAdd Modrinth4J from jitpack to the dependencies:\n```java\ndependencies {\n      implementation 'com.github.masecla22:Modrinth4J:master-SNAPSHOT'\n}\n```\n\n### Maven:\nAdd jitpack to your maven repositories:\n```xml\n\u003crepositories\u003e\n  \u003crepository\u003e\n    \u003cid\u003ejitpack.io\u003c/id\u003e\n    \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n  \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\nAdd Modrinth4J from jitpack:\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.masecla22\u003c/groupId\u003e\n    \u003cartifactId\u003eModrinth4J\u003c/artifactId\u003e\n    \u003cversion\u003emaster-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n## Examples:\n\n[insert examples]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasecla22%2FModrinth4J","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmasecla22%2FModrinth4J","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasecla22%2FModrinth4J/lists"}