{"id":16225287,"url":"https://github.com/theonlytails/craftingrecipes","last_synced_at":"2026-04-29T17:03:18.666Z","repository":{"id":48369558,"uuid":"389782540","full_name":"TheOnlyTails/CraftingRecipes","owner":"TheOnlyTails","description":"A Kotlin DSL for creating crafting recipes in Minecraft Forge mods.","archived":false,"fork":false,"pushed_at":"2021-11-25T14:55:09.000Z","size":374,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-08T03:35:14.488Z","etag":null,"topics":["crafting-recipes","kotlin-dsl","minecraft","minecraft-forge"],"latest_commit_sha":null,"homepage":"https://craftingrecipes.theonlytails.com/","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/TheOnlyTails.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-26T22:19:19.000Z","updated_at":"2021-11-25T14:55:12.000Z","dependencies_parsed_at":"2022-08-20T05:00:22.836Z","dependency_job_id":null,"html_url":"https://github.com/TheOnlyTails/CraftingRecipes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TheOnlyTails/CraftingRecipes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheOnlyTails%2FCraftingRecipes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheOnlyTails%2FCraftingRecipes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheOnlyTails%2FCraftingRecipes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheOnlyTails%2FCraftingRecipes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheOnlyTails","download_url":"https://codeload.github.com/TheOnlyTails/CraftingRecipes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheOnlyTails%2FCraftingRecipes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32435122,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T13:34:34.882Z","status":"ssl_error","status_checked_at":"2026-04-29T13:34:29.830Z","response_time":110,"last_error":"SSL_read: 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":["crafting-recipes","kotlin-dsl","minecraft","minecraft-forge"],"created_at":"2024-10-10T12:44:34.294Z","updated_at":"2026-04-29T17:03:18.649Z","avatar_url":"https://github.com/TheOnlyTails.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maven metadata URL](https://img.shields.io/maven-metadata/v?color=blue\u0026label=maven%20central\u0026logo=gradle\u0026metadataUrl=https%3A%2F%2Fs01.oss.sonatype.org%2Fservice%2Flocal%2Frepositories%2Freleases%2Fcontent%2Fcom%2Ftheonlytails%2Fcraftingrecipes%2Fmaven-metadata.xml\u0026style=for-the-badge)](https://search.maven.org/artifact/com.theonlytails/craftingrecipes)\n![GitHub Workflow Status](https://img.shields.io/github/workflow/status/TheOnlyTails/craftingrecipes/Java%20CI%20with%20Gradle?label=gradle%20build\u0026logo=github\u0026style=for-the-badge)\n![Kotlin](https://img.shields.io/badge/kotlin-%236C3FD1.svg?style=for-the-badge\u0026logo=kotlin\u0026logoColor=white)\n![Gradle](https://img.shields.io/badge/gradle-%2302303A.svg?style=for-the-badge\u0026logo=gradle\u0026logoColor=white)\n![GitHub License](https://img.shields.io/github/license/theonlytails/craftingrecipes?style=for-the-badge\u0026logo=key)\n\n# CraftingRecipes\n\nA Kotlin DSL for creating crafting recipes in Minecraft Forge mods.\n\nFor documentation and usage instructions, please take a look at\nthe [wiki](https://github.com/TheOnlyTails/CraftingRecipes/wiki).\n\nKDocs for the library (generated with [Dokka](https://github.com/kotlin/dokka)): https://craftingrecipes.theonlytails.com/\n\nHere's\nthe [`maven-metadata.xml`](https://s01.oss.sonatype.org/service/local/repositories/releases/content/com/theonlytails/craftingrecipes/maven-metadata.xml)\nof this library.\n\n## Installation\n\n_Don't forget to replace the VERSION key with the version in the top with the Maven Central badge at the top!_\n\n#### Gradle/Groovy\n\n```groovy\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    def craftingRecipes = fg.deobf(project.dependencies.create(group: \"com.theonlytails\", name: \"craftingrecipes\", version: VERSION) {\n\t    transitive = false\n    })\n    \n    implementation fg.deobf(craftingRecipes)\n}\n```\n\n#### Gradle/Kotlin\n\n```kotlin\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    val craftingRecipes = project.dependencies.create(group = \"com.theonlytails\", name = \"craftingrecipes\", version = VERSION)\n\t\t.apply { isTransitive = false }\n    \n    implementation(project.the\u003cDependencyManagementExtension\u003e().deobf(craftingRecipes))\n}\n```\n\nThe `isTransitive` property is added to make sure the library is imported correctly.\n\n---\n\nCheck out other DSLs in the DataGoblin family!\n- [Loot](https://github.com/theonlytails/lootgoblin)\n- [BlockModels](https://github.com/theonlytails/BlockModels)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheonlytails%2Fcraftingrecipes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheonlytails%2Fcraftingrecipes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheonlytails%2Fcraftingrecipes/lists"}