Skip to content

raspmary/BrewinAndChewin

 
 

Repository files navigation

Brewin' And Chewin'

Curseforge Downloads Discord

Overview

Brewin' and Chewin' is an addon mod for Farmer's Delight.

Using a keg, you can brew or ferment many new foods, including liquors, cheese, and fudge!

Required Dependencies

Discord

Kotlin DSL

Details
repositories {
    maven("https://repo.greenhouse.house/releases/") {
        name = "Greenhouse Maven"
    }
}

dependencies {
    // Depend on the Common project, for VanillaGradle and ModDevGradle.
    compileOnly "umpaz.brewinandchewin:BrewinAndChewin-common:${bnc_version}+${minecraft_version}"

    // Depend on the Fabric project, for Loom.
    modImplementation "umpaz.brewinandchewin:BrewinAndChewin-fabric:${bnc_version}+${minecraft_version}"

    // Depend on the NeoForge project, for ModDevGradle or NeoGradle.
    implementation "umpaz.brewinandchewin:BrewinAndChewin-neoforge:${bnc_version}+${minecraft_version}" { isTransitive = false }
}

Groovy DSL

Details
repositories {
    maven {
        name = "Greenhouse Maven"
        url = "https://repo.greenhouse.house/releases/"
    }
}

dependencies {
    // Depend on the Common project, for VanillaGradle and ModDevGradle.
    compileOnly("umpaz.brewinandchewin:BrewinAndChewin-common:${bnc_version}+${minecraft_version}")

    // Depend on the Fabric project, for Loom.
    modImplementation("umpaz.brewinandchewin:BrewinAndChewin-fabric:${bnc_version}+${minecraft_version}")

    // Depend on the NeoForge project, for ModDevGradle or NeoGradle.
    implementation("umpaz.brewinandchewin:BrewinAndChewin-neoforge:${bnc_version}+${minecraft_version}") { transitive false }
    implementation("house.greenhouse:greenhouseconfig:${Versions.GREENHOUSE_CONFIG}-neoforge")
    implementation("house.greenhouse:greenhouseconfig_toml:${Versions.GREENHOUSE_CONFIG_TOML}")
}

About

Fermenting addon for Farmer's Delight.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.7%
  • Kotlin 0.3%