{"id":20936565,"url":"https://github.com/dimensionaldevelopment/rift-mdk","last_synced_at":"2025-10-24T18:53:23.166Z","repository":{"id":77619579,"uuid":"160982214","full_name":"DimensionalDevelopment/Rift-MDK","owner":"DimensionalDevelopment","description":"Minimal Rift project structure","archived":false,"fork":false,"pushed_at":"2019-01-21T17:26:18.000Z","size":70,"stargazers_count":8,"open_issues_count":0,"forks_count":7,"subscribers_count":4,"default_branch":"1.13.2","last_synced_at":"2025-08-22T06:34:00.578Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DimensionalDevelopment.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2018-12-08T21:58:55.000Z","updated_at":"2024-05-16T15:02:01.000Z","dependencies_parsed_at":"2023-04-28T10:19:36.200Z","dependency_job_id":null,"html_url":"https://github.com/DimensionalDevelopment/Rift-MDK","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/DimensionalDevelopment/Rift-MDK","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimensionalDevelopment%2FRift-MDK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimensionalDevelopment%2FRift-MDK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimensionalDevelopment%2FRift-MDK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimensionalDevelopment%2FRift-MDK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DimensionalDevelopment","download_url":"https://codeload.github.com/DimensionalDevelopment/Rift-MDK/tar.gz/refs/heads/1.13.2","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimensionalDevelopment%2FRift-MDK/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280849773,"owners_count":26401813,"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-10-24T02:00:06.418Z","response_time":73,"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":[],"created_at":"2024-11-18T22:20:54.610Z","updated_at":"2025-10-24T18:53:23.135Z","avatar_url":"https://github.com/DimensionalDevelopment.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Example Rift mod\n\nThis is a minimal Rift project. The only use of it is to be copied to start a new project. \n\n## Requirements:\n- OpenJDK 8. Currently Minecraft doesn't support Java 9 and above.\n\n## Gradle tasks\n- Development:\n    ```sh\n    ./gradlew setupDecompWorkspace [eclipse,idea]\n    ```\n    After this, import in your IDE as Gradle project.\n\n- Build:\n    ```sh\n    ./gradlew build\n    ```\n\n## Getting started\n\nImportant files in MDK:\n\n```sh - sh to highlight comments\nsrc / main / java /      # code \n\nsrc / main / resources / \n        riftmod.json     # what classes to instantiate and call \n        pack.mcmeta      # resource pack description\n        assets / modid / # blockstates/, sounds/, textures/, etc \n\nrun /                    # dev env runs here; screenshots/, mods/, etc \n\nbuild /                  # build files \n        libs /           # compiled archives \n\nbuild.gradle             # how to build \u0026 dependencies \n```\n\u003cbr\u003e\nFrom there, you'll probably want to change a few things:  \n\n- `build.gradle`\n    ```groovy\n    /* rest omitted */\n    group 'example' // your root package, e.g. 'org.dimdev.halflogs'\n    version '1.0'\n    archivesBaseName = 'Example'\n    ```\n\n- `src/main/resources/riftmod.json`\n    ```json\n    {\n        \"id\": \"example\",\n        \"name\": \"Example\",\n        \"authors\": [\n            \"ExampleAuthor\"\n        ],\n        \"listeners\": [\n            \"example.ExampleListener\"\n        ]\n    } \n    ```\n    To load listener only on specific side or to change loading order:\n    ```json\n    {\n        \"listeners\": [{\n            \"class\": \"example.ExampleListener\",\n\t        \"side\": \"client\",\n\t        \"priority\": 10\n        }]\n    }\n    ```\n    Inner classes require `$` instead of `.`, e.g. `example.Example$InnerClass`. \n\n- `pack.mcmeta`\n    ```json\n    {\n        \"pack\": {\n            \"pack_format\": 4,\n            \"description\": \"Example\"\n        }\n    }\n    ```\n    This description is shown at *Select Resource Packs* screen. If mod doesn't have any resources, you can safely delete this file.\n\n## Tips\n\n- Changing `src/main/java` to `src` and `src/main/resources` to `resources`:\n    ```gradle\n    sourceSets {\n        main {\n            java.srcDirs = ['src']\n            resources.srcDirs = ['resources']\n        }\n    }\n    ```\n\n- Running Server under Eclipse:\u003cbr\u003e\n    Open *Launch Configurations*, select *yourmod*\\_client, switch to *Arguments* tab, change program arguments from `...Client...` to `...Server...`:\n    ```\n    --tweakClass org.dimdev.riftloader.launch.RiftLoaderServerTweaker\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimensionaldevelopment%2Frift-mdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdimensionaldevelopment%2Frift-mdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimensionaldevelopment%2Frift-mdk/lists"}