{"id":16614563,"url":"https://github.com/0tickpulse/lccutilities","last_synced_at":"2026-04-24T04:33:52.190Z","repository":{"id":207411157,"uuid":"648723583","full_name":"0tickpulse/lccutilities","owner":"0tickpulse","description":null,"archived":false,"fork":false,"pushed_at":"2023-11-15T17:02:53.000Z","size":71,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T15:13:38.640Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/0tickpulse.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2023-06-02T16:40:37.000Z","updated_at":"2023-06-05T12:53:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"7600950f-c0d2-4845-ab79-bd956aa0f702","html_url":"https://github.com/0tickpulse/lccutilities","commit_stats":{"total_commits":3,"total_committers":1,"mean_commits":3.0,"dds":0.0,"last_synced_commit":"0cb0df916254067c1ea4b1bc9a12fbfd14b261bb"},"previous_names":["0tickpulse/lccutilities"],"tags_count":0,"template":false,"template_full_name":"SimpleMC/mc-kotlin-plugin-template","purl":"pkg:github/0tickpulse/lccutilities","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0tickpulse%2Flccutilities","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0tickpulse%2Flccutilities/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0tickpulse%2Flccutilities/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0tickpulse%2Flccutilities/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0tickpulse","download_url":"https://codeload.github.com/0tickpulse/lccutilities/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0tickpulse%2Flccutilities/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32209893,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T03:15:14.334Z","status":"ssl_error","status_checked_at":"2026-04-24T03:15:11.608Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2024-10-12T02:06:52.655Z","updated_at":"2026-04-24T04:33:52.175Z","avatar_url":"https://github.com/0tickpulse.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mc-kotlin-plugin-template\nOpinionated template/starter for creating Minecraft plugins in Kotlin using the Spigot API\n\n## Features\n\n- Gradle axion-release-plugin for managing semver\n    - automatic updating of `CHANGELOG.md` and `main/resources/plugin.yml` when a release is made\n- Github Actions to build PRs and automatically create Github releases when a release tag is pushed\n    - Manual Create Release pipeline to increment semver tag and trigger publishing a new version\n      - Requires a secret named `PAT` with a GitHub PAT with code read/write permission to the repository\n- [`ktlint`](https://github.com/JLLeitschuh/ktlint-gradle) Gradle plugin\n- Gradle build generates a standard plugin jar which will download dependencies declared as\n[`libraries`](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/plugin/PluginDescriptionFile.html#getLibraries()) in\n`plugin.yml` and an \"offline\"/shadowed jar containing necessary dependencies\n\n## Usage\n\n1. Use the template to create a new repository: [Create a new repository](https://github.com/SimpleMC/mc-kotlin-plugin-template/generate)\n2. Change template repository references\n    - `settings.gradle.kts` -\u003e set `rootProject.name`\n    - `gradle.properties` -\u003e set `repoRef`\n    - `build.gradle.kts` -\u003e set `group`\n    - `CHANGELOG.md` -\u003e update links to `SimpleMC/mc-kotlin-plugin-template` to match `repoRef`\n    - `src/main/resources/plugin.yml` -\u003e set `name`, `main`, `website`, `author`\n    - `src/main/kotlin/org/simplemc/plugintemplate/KotlinPluginTemplate.kt` -\u003e Move packages/rename for your plugin\n    - `README.md` -\u003e Update\n3. To use the Create Release automation, add PAT secret\n    1. Create a Personal Access Token: https://github.com/settings/personal-access-tokens/new\n        - Repository Access: \"Only select repositories\" and pick the plugin template fork\n        - Repository Permissions: Contents Read \u0026 write\n            - This is so the automation can create release commits\n    2. Add the PAT as an Actions secret to your new repository: `https://github.com/\u003crepo slug\u003e/settings/secrets/actions/new`\n        - Name: `PAT`\n        - Secret Contents: Paste the Personal Access Token you created in the previous step\n\n## Examples\n\nSeveral SimpleMC plugins are built off of this template or were the impetus for it:\n\n- [SimpleNPCs](https://github.com/SimpleMC/SimpleNPCs) - Simple command-based NPC interactions\n- [SimpleHealthbars2](https://github.com/SimpleMC/SimpleHealthbars2) - Simple, easy-to-use healthbar plugin with optional player and mob healthbars\n- [SimpleAnnounce](https://github.com/SimpleMC/SimpleAnnounce) - SimpleAnnounce is a simple and easy to use, yet powerful automated announcement plugin for the Bukkit Minecraft API.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0tickpulse%2Flccutilities","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0tickpulse%2Flccutilities","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0tickpulse%2Flccutilities/lists"}