Skip to content

TheOnlyTails/CraftingRecipes

Repository files navigation

Maven metadata URL GitHub Workflow Status Kotlin Gradle GitHub License

CraftingRecipes

A Kotlin DSL for creating crafting recipes in Minecraft Forge mods.

For documentation and usage instructions, please take a look at the wiki.

KDocs for the library (generated with Dokka): https://craftingrecipes.theonlytails.com/

Here's the maven-metadata.xml of this library.

Installation

Don't forget to replace the VERSION key with the version in the top with the Maven Central badge at the top!

Gradle/Groovy

repositories {
    mavenCentral()
}

dependencies {
    def craftingRecipes = fg.deobf(project.dependencies.create(group: "com.theonlytails", name: "craftingrecipes", version: VERSION) {
	    transitive = false
    })
    
    implementation fg.deobf(craftingRecipes)
}

Gradle/Kotlin

repositories {
    mavenCentral()
}

dependencies {
    val craftingRecipes = project.dependencies.create(group = "com.theonlytails", name = "craftingrecipes", version = VERSION)
		.apply { isTransitive = false }
    
    implementation(project.the<DependencyManagementExtension>().deobf(craftingRecipes))
}

The isTransitive property is added to make sure the library is imported correctly.


Check out other DSLs in the DataGoblin family!

About

A Kotlin DSL for creating crafting recipes in Minecraft Forge mods.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Languages