{"id":14969584,"url":"https://github.com/jpenilla/run-task","last_synced_at":"2025-04-12T18:48:08.758Z","repository":{"id":47691631,"uuid":"368512480","full_name":"jpenilla/run-task","owner":"jpenilla","description":"Gradle plugins adding tasks to run Minecraft server and proxy software","archived":false,"fork":false,"pushed_at":"2025-03-01T02:35:59.000Z","size":589,"stargazers_count":276,"open_issues_count":17,"forks_count":20,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-03T22:07:34.340Z","etag":null,"topics":["gradle-plugin","minecraft-development","minecraft-proxy","minecraft-server","paper","papermc","plugin-development","run-configuration","velocity","waterfall"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/jpenilla.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,"publiccode":null,"codemeta":null}},"created_at":"2021-05-18T11:57:41.000Z","updated_at":"2025-04-01T11:31:00.000Z","dependencies_parsed_at":"2023-11-13T05:27:42.214Z","dependency_job_id":"d881cb2c-f3e5-4600-843f-20037424f98f","html_url":"https://github.com/jpenilla/run-task","commit_stats":{"total_commits":176,"total_committers":4,"mean_commits":44.0,"dds":"0.19318181818181823","last_synced_commit":"e9c4daec7b4d3143723fa2dae0f26dd644cfdf42"},"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpenilla%2Frun-task","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpenilla%2Frun-task/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpenilla%2Frun-task/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpenilla%2Frun-task/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jpenilla","download_url":"https://codeload.github.com/jpenilla/run-task/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248617903,"owners_count":21134197,"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":["gradle-plugin","minecraft-development","minecraft-proxy","minecraft-server","paper","papermc","plugin-development","run-configuration","velocity","waterfall"],"created_at":"2024-09-24T13:42:04.879Z","updated_at":"2025-04-12T18:48:08.734Z","avatar_url":"https://github.com/jpenilla.png","language":"Kotlin","readme":"# Run \u003cPaper|Velocity|Waterfall\u003e\n\n[![build](https://img.shields.io/github/actions/workflow/status/jpenilla/run-task/build.yml?branch=master)](https://github.com/jpenilla/run-task/actions) [![license](https://img.shields.io/badge/license-Apache--2.0-blue)](LICENSE)\n\nThis repository houses a suite of plugins which add tasks to automatically download and run Minecraft server/proxy\nsoftware along with your plugin built by Gradle. This provides a streamlined method of integration testing plugins.\n\n\u003cdetails\u003e\n\u003csummary\u003eRun Paper\u003c/summary\u003e\n\n[![latest release](https://img.shields.io/gradle-plugin-portal/v/xyz.jpenilla.run-paper)](https://plugins.gradle.org/plugin/xyz.jpenilla.run-paper)\n\n### Basic Usage\n\nIn `build.gradle.kts`:\n\n```kotlin\nplugins {\n  // Apply the plugin\n  id(\"xyz.jpenilla.run-paper\") version \"2.3.1\"\n}\n\ntasks {\n  runServer {\n    // Configure the Minecraft version for our task.\n    // This is the only required configuration besides applying the plugin.\n    // Your plugin's jar (or shadowJar if present) will be used automatically.\n    minecraftVersion(\"1.21.1\")\n  }\n}\n```\n\nYou can now run a Paper server simply by invoking the `runServer` task!\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eRun Velocity\u003c/summary\u003e\n\n[![latest release](https://img.shields.io/gradle-plugin-portal/v/xyz.jpenilla.run-velocity)](https://plugins.gradle.org/plugin/xyz.jpenilla.run-velocity)\n\n### Basic Usage\n\nIn `build.gradle.kts`:\n\n```kotlin\nplugins {\n  // Apply the plugin\n  id(\"xyz.jpenilla.run-velocity\") version \"2.3.1\"\n}\n\ntasks {\n  runVelocity {\n    // Configure the Velocity version for our task.\n    // This is the only required configuration besides applying the plugin.\n    // Your plugin's jar (or shadowJar if present) will be used automatically.\n    velocityVersion(\"3.3.0-SNAPSHOT\")\n  }\n}\n```\n\nYou can now run a Velocity proxy simply by invoking the `runVelocity` task!\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eRun Waterfall\u003c/summary\u003e\n\n[![latest release](https://img.shields.io/gradle-plugin-portal/v/xyz.jpenilla.run-waterfall)](https://plugins.gradle.org/plugin/xyz.jpenilla.run-waterfall)\n\n### Basic Usage\n\nIn `build.gradle.kts`:\n\n```kotlin\nplugins {\n  // Apply the plugin\n  id(\"xyz.jpenilla.run-waterfall\") version \"2.3.1\"\n}\n\ntasks {\n  runWaterfall {\n    // Configure the Waterfall version for our task.\n    // This is the only required configuration besides applying the plugin.\n    // Your plugin's jar (or shadowJar if present) will be used automatically.\n    waterfallVersion(\"1.20\")\n  }\n}\n```\n\nYou can now run a Waterfall proxy simply by invoking the `runWaterfall` task!\n\u003c/details\u003e\n\nCheck out [the wiki](https://github.com/jpenilla/run-task/wiki) for more detailed usage information.\n","funding_links":[],"categories":["Kotlin"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpenilla%2Frun-task","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjpenilla%2Frun-task","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpenilla%2Frun-task/lists"}