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!
- Chef's Delights Discord for questions or whatever~
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 }
}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}")
}