{"id":23341684,"url":"https://github.com/CloudNetService/CloudNet","last_synced_at":"2025-08-23T08:31:28.344Z","repository":{"id":37431538,"uuid":"187873041","full_name":"CloudNetService/CloudNet","owner":"CloudNetService","description":"A modern application that can dynamically and easily deliver Minecraft oriented software","archived":false,"fork":false,"pushed_at":"2025-08-22T18:14:49.000Z","size":107570,"stargazers_count":417,"open_issues_count":47,"forks_count":121,"subscribers_count":14,"default_branch":"nightly","last_synced_at":"2025-08-23T04:26:41.534Z","etag":null,"topics":["bukkit","bungeecord","cloudnet","fabric","java","minecraft","minecraft-network","minecraft-server","minecraft-server-management","minestom","nukkit","sponge","velocity","waterdogpe"],"latest_commit_sha":null,"homepage":"https://cloudnetservice.eu","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CloudNetService.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2019-05-21T16:12:57.000Z","updated_at":"2025-08-22T18:00:56.000Z","dependencies_parsed_at":"2023-10-20T18:57:51.797Z","dependency_job_id":"f5547116-19a5-44ca-bec4-3ebdb1861476","html_url":"https://github.com/CloudNetService/CloudNet","commit_stats":null,"previous_names":["cloudnetservice/cloudnet-v3"],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/CloudNetService/CloudNet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CloudNetService%2FCloudNet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CloudNetService%2FCloudNet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CloudNetService%2FCloudNet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CloudNetService%2FCloudNet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CloudNetService","download_url":"https://codeload.github.com/CloudNetService/CloudNet/tar.gz/refs/heads/nightly","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CloudNetService%2FCloudNet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271746128,"owners_count":24813543,"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-08-23T02:00:09.327Z","response_time":69,"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":["bukkit","bungeecord","cloudnet","fabric","java","minecraft","minecraft-network","minecraft-server","minecraft-server-management","minestom","nukkit","sponge","velocity","waterdogpe"],"created_at":"2024-12-21T05:11:07.683Z","updated_at":"2025-08-23T08:31:28.336Z","avatar_url":"https://github.com/CloudNetService.png","language":"Java","readme":"# CloudNet: The Cloud Network Environment Technology\n\n![CloudNet Logo](.img/header.png)\n\n![Build](https://github.com/CloudNetService/CloudNet-v3/actions/workflows/gradle.yml/badge.svg)\n![Release](https://img.shields.io/maven-central/v/eu.cloudnetservice.cloudnet/driver?label=release\u0026logo=gradle)\n\n## Adding CloudNet to your build\n\nCloudNet is using the `eu.cloudnetservice.cloudnet` group id and is available through maven central. The most important\nsubmodules are:\n\n| artifact id | usage                                                                                                        |\n|-------------|--------------------------------------------------------------------------------------------------------------|\n| driver      | When developing plugins or modules, available on all platforms.                                              |\n| node        | When developing a module which needs more specific access to node functions than the driver can offer.       |\n| wrapper-jvm | When developing plugins which need some more specific access to the service api than the driver can offer.   |\n| bridge      | When trying to catch player events and/or interacting with players regardless where they are on the network. |\n| bom         | When you want to import all dependencies with the same version based on the imported bill of materials.      |\n\nTo add the CloudNet dependency using gradle (replace `%version%` with the latest version shown in the badge above):\n\n```groovy\nrepositories {\n  // ensure maven central is added\n  mavenCentral()\n}\n\ndependencies {\n  // optional - you can also specify versions directly\n  implementation platform('eu.cloudnetservice.cloudnet:bom:%version%')\n  compileOnly 'eu.cloudnetservice.cloudnet:driver'\n\n  // without bom\n  compileOnly 'eu.cloudnetservice.cloudnet:driver:%version%'\n}\n```\n\nTo add the CloudNet dependency using maven (replace `%version%` with the latest version shown in the badge above):\n\n```xml\n\u003c!-- optional - you can also specify versions directly --\u003e\n\u003cdependencyManagement\u003e\n  \u003cdependencies\u003e\n    \u003cdependency\u003e\n      \u003cgroupId\u003eeu.cloudnetservice.cloudnet\u003c/groupId\u003e\n      \u003cartifactId\u003ebom\u003c/artifactId\u003e\n      \u003cversion\u003e%version%\u003c/version\u003e\n      \u003ctype\u003epom\u003c/type\u003e\n      \u003cscope\u003eimport\u003c/scope\u003e\n    \u003c/dependency\u003e\n  \u003c/dependencies\u003e\n\u003c/dependencyManagement\u003e\n\n\u003cdependencies\u003e\n  \u003cdependency\u003e\n    \u003cgroupId\u003eeu.cloudnetservice.cloudnet\u003c/groupId\u003e\n    \u003cartifactId\u003edriver\u003c/artifactId\u003e\n    \u003cversion\u003e%version%\u003c/version\u003e \u003c!-- only needed when bom is not used --\u003e\n    \u003cscope\u003eprovided\u003c/scope\u003e\n  \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n## Snapshots\n\nSnapshots for CloudNet are build off the `nightly` branch and are available from the central portal snapshot repository:\n`https://central.sonatype.com/repository/maven-snapshots/`. You can declare a dependency on CloudNet as shown above\njust append the `-SNAPSHOT` suffix to the version.\n\n## Links\n\n- [GitHub Repo](https://github.com/CloudNetService/CloudNet-v3)\n- [Issue Tracker](https://github.com/CloudNetService/CloudNet-v3/issues/new)\n- [Support Discord](https://discord.cloudnetservice.eu)\n- [General Discussion](https://github.com/CloudNetService/CloudNet-v3/discussions)\n- [Latest Release](https://github.com/CloudNetService/CloudNet-v3/releases/latest)\n- [SpigotMC](https://www.spigotmc.org/resources/42059)\n\n## Compile from source\n\nTo compile CloudNet you need JDK 24 and an internet connection. Then clone this repository and run `./gradlew` inside\nthe cloned project.\n\n## Warnings\n\n1. Api methods which are marked with `@ApiStatus.Internal` can change or get removed without a warning, even between\n   patch releases. We recommend to not use these methods and try to find an alternative for them.\n2. Api methods which are marked with `@ApiStatus.Experimental` can change or get removed without a warning, even between\n   patch releases. While the api method is still in an experimental state, that does not mean that the implementation is\n   considered experimental.\n3. Api methods which are marked with `@Deprecated` should get replaced as soon as possible (the javadoc of the method\n   will contain and explanation why the method is deprecated and how to replace the usage). This annotation is in most\n   cases paired with `@ApiStatus.ScheduledForRemoval` indicating the minor version when the method gets removed.\n4. Serialized forms of all classes are subject to change. Do not persist classes and assume that a future version will\n   still be compatible with the stored version.\n5. Dependencies which are not exposed directly might be upgraded to the next major release without a warning. Be aware\n   of that when including dependencies and relying on CloudNet shipping them bundled.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCloudNetService%2FCloudNet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FCloudNetService%2FCloudNet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCloudNetService%2FCloudNet/lists"}