{"id":38031749,"url":"https://github.com/ghostrider584/hytale-gradle-plugin","last_synced_at":"2026-01-22T13:14:28.510Z","repository":{"id":332873460,"uuid":"1135297098","full_name":"GhostRider584/hytale-gradle-plugin","owner":"GhostRider584","description":"A Gradle plugin to streamline Hytale plugin development.","archived":false,"fork":false,"pushed_at":"2026-01-20T03:37:44.000Z","size":70,"stargazers_count":17,"open_issues_count":2,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-20T18:36:34.016Z","etag":null,"topics":["hytale","hytale-mod","hytale-modding","hytale-plugin","hytale-server","java"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/GhostRider584.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-15T22:50:21.000Z","updated_at":"2026-01-20T15:12:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/GhostRider584/hytale-gradle-plugin","commit_stats":null,"previous_names":["ghostrider584/hytale-gradle-plugin"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/GhostRider584/hytale-gradle-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GhostRider584%2Fhytale-gradle-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GhostRider584%2Fhytale-gradle-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GhostRider584%2Fhytale-gradle-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GhostRider584%2Fhytale-gradle-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GhostRider584","download_url":"https://codeload.github.com/GhostRider584/hytale-gradle-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GhostRider584%2Fhytale-gradle-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28632781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["hytale","hytale-mod","hytale-modding","hytale-plugin","hytale-server","java"],"created_at":"2026-01-16T19:45:45.122Z","updated_at":"2026-01-21T12:00:38.551Z","avatar_url":"https://github.com/GhostRider584.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hytale Gradle Plugin\n![Java](https://img.shields.io/badge/Java-orange?style=for-the-badge\u0026logo=openjdk\u0026logoColor=white)\n![Hytale](https://img.shields.io/badge/Hytale-FF7175?style=for-the-badge\u0026logo=anycubic\u0026logoColor=white)\n![Version](https://img.shields.io/badge/version-0.0.4-248cd6?labelColor=\u0026style=for-the-badge)\n![License: MIT](https://img.shields.io/badge/License-MIT-7267db.svg?style=for-the-badge)\n\nA Gradle plugin to streamline Hytale plugin development.\n\n## Usage\n\n### 1. Configure Plugin Repository\nSince this plugin is hosted on the Smolder repository, you must tell Gradle where to find it.\nAdd this to your `settings.gradle.kts` file:\n\n```kotlin\npluginManagement {\n    repositories {\n        maven(\"https://repo.smolder.fr/public/\")\n        gradlePluginPortal()\n    }\n}\n```\n\n### 2. Apply the Plugin\nIn your `build.gradle.kts`:\n\n```kotlin\nplugins {\n    id(\"fr.smolder.hytale.dev\") version \"0.0.4\"\n}\n```\n\n### Configuration\nConfigure the plugin using the `hytale` block:\n\n```kotlin\nhytale {\n    // Optional: Override Hytale installation path (defaults to OS-specific standard location)\n    // hytalePath.set(\"...\")\n\n    // Optional: patch line (defaults to \"release\")\n    patchLine.set(\"release\")\n\n    // Optional: game version (defaults to \"latest\")\n    gameVersion.set(\"latest\")\n    \n    // Auto-update manifest.json during build? (defaults to true)\n    autoUpdateManifest.set(true)\n    \n    // Memory configuration\n    minMemory.set(\"2G\")\n    maxMemory.set(\"4G\")\n\n    // Use AOT cache for faster startup (defaults to true)\n    useAotCache.set(true)\n\n    // You can add extra server arguments\n    serverArgs.add(\"--your-custom-arg\")\n    \n    // Decompilation settings\n    vineflowerVersion.set(\"1.11.2\")\n    decompileFilter.set(listOf(\"com/hypixel/**\"))\n    decompilerHeapSize.set(\"6G\")\n    \n    // Automatically attach decompiled sources to IDE (defaults to true)\n    includeDecompiledSources.set(true)\n}\n```\n\n### Tasks\n- `./gradlew runServer`: Starts the Hytale server with your plugin loaded.\n- `./gradlew build`: Builds the project and updates the `manifest.json`.\n- `./gradlew decompileServer`: Decompiles the Hytale Server JAR and creates a `-sources.jar`.\n\n## Contributing\nContributions are welcome! Please feel free to submit issues, feature requests, or pull requests.\n\n## License\nThis project is licensed under the MIT License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fghostrider584%2Fhytale-gradle-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fghostrider584%2Fhytale-gradle-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fghostrider584%2Fhytale-gradle-plugin/lists"}