{"id":23096646,"url":"https://github.com/yvanmazy/remotedminecraft","last_synced_at":"2025-04-03T19:43:19.442Z","repository":{"id":261966883,"uuid":"884962456","full_name":"YvanMazy/RemotedMinecraft","owner":"YvanMazy","description":"Library to run Minecraft from code and control it remotely.","archived":false,"fork":false,"pushed_at":"2025-03-04T15:02:42.000Z","size":180,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-04T16:20:47.908Z","etag":null,"topics":["integration-testing","library","minecraft","remote"],"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/YvanMazy.png","metadata":{"files":{"readme":".github/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,"publiccode":null,"codemeta":null}},"created_at":"2024-11-07T17:43:31.000Z","updated_at":"2025-03-04T15:02:45.000Z","dependencies_parsed_at":"2024-11-09T16:20:53.015Z","dependency_job_id":"697815a2-c0eb-44d2-a657-50f13a7a1560","html_url":"https://github.com/YvanMazy/RemotedMinecraft","commit_stats":null,"previous_names":["yvanmazy/remotedminecraft"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YvanMazy%2FRemotedMinecraft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YvanMazy%2FRemotedMinecraft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YvanMazy%2FRemotedMinecraft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YvanMazy%2FRemotedMinecraft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YvanMazy","download_url":"https://codeload.github.com/YvanMazy/RemotedMinecraft/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247070769,"owners_count":20878581,"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":["integration-testing","library","minecraft","remote"],"created_at":"2024-12-16T22:40:10.740Z","updated_at":"2025-04-03T19:43:19.421Z","avatar_url":"https://github.com/YvanMazy.png","language":"Java","readme":"# 🎮 RemotedMinecraft\n\n**RemotedMinecraft** is a **Java** library that allows you to run a Minecraft client and control it remotely.\n\n📄 **Summary:**\n- [✨ Features](#-features)\n- [🎯 Use cases](#-use-cases)\n    - [🧪 Integration Testing](#-integration-testing)\n    - [🤖 Automation](#-automation)\n- [⚙️ How to use](#-how-to-use)\n\n## ✨ Features\n\n- Use the real Minecraft vanilla client\n- Java 17+\n- Completely configurable\n- Support simultaneous agents\n- Permissive license (MIT)\n\n## 🎯 Use cases\n\nThere are several ways to use this library. Below you will find examples of common usage. An example module is available\n[here](../example).\n\n### 🧪 Integration Testing\n\nIntegration tests on Minecraft are **very difficult** to set up, this library aims to facilitate this task by managing\nthe\ninstallation, preparation and control of a completely vanilla Minecraft client.\nThis can be used as a component in integration tests for development on server software like Spigot but also for proxies\nlike BungeeCord. Otherwise, it is also possible to use it in large-scale tests to test several software.\n\n### 🤖 Automation\n\nThis library can also be used to automate tasks on servers or single player worlds.\nFor example, to explore, mine, harvest resources, etc.\n\n**Warning**: Most servers prohibit the use of automated programs, consult the rules before considering this use. You are\nalso subject to the [Minecraft usage rules](https://www.minecraft.net/en-us/usage-guidelines).\n\n### ⚙️ How to use\n\n\u003cdetails\u003e\n  \u003csummary\u003eInstall Dependency\u003c/summary\u003e\n\n  **Latest version**: [![Release](https://jitpack.io/v/YvanMazy/RemotedMinecraft.svg)](https://jitpack.io/#YvanMazy/RemotedMinecraft)\n  \n  **Gradle**:\n  ```groovy\n  repositories {\n      maven { url 'https://jitpack.io' }\n  }\n  \n  dependencies {\n      implementation 'com.github.YvanMazy:RemotedMinecraft:VERSION'\n  }\n  ```\n  \n  **Maven**:\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  \u003cdependencies\u003e\n      \u003cdependency\u003e\n          \u003cgroupId\u003ecom.github.YvanMazy\u003c/groupId\u003e\n          \u003cartifactId\u003eRemotedMinecraft\u003c/artifactId\u003e\n          \u003cversion\u003eVERSION\u003c/version\u003e\n      \u003c/dependency\u003e\n  \u003c/dependencies\u003e\n  ```\n\u003c/details\u003e\n\n**Usage:**\n\n*Documentation for using the code is not yet done and will be in a page in the Wiki section.*\n\n**Examples:**\n\n- [Example module](../example)\n- [TransferProxy integration tests](https://github.com/YvanMazy/TransferProxy/tree/master/core/src/integrationTest)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyvanmazy%2Fremotedminecraft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyvanmazy%2Fremotedminecraft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyvanmazy%2Fremotedminecraft/lists"}