Skip to content

MerchantPug/bovines-and-buttercups

Repository files navigation

Bovines and Buttercups

Here is the GitHub repository for the Bovines and Buttercups Minecraft mod.

You can download the mod on CurseForge, or Modrinth

Datapack/Addon/Integration Creation

Please check out the Wiki for more information on how to get started with these topics.

Implementing this mod into your project

build.gradle

repositories {
    maven {
        name = "Greenhouse"
        url = 'https://maven.greenhouseteam.dev/releases/'
    }
}

dependencies {
    // If you have a Common sourceset shared between Forge, Fabric
    compileOnly "net.merchantpug:Bovines-And-Buttercups-Common:${project.bovines_version}"

    // NeoForge
    implementation "net.merchantpug:Bovines-And-Buttercups-NeoForge:${project.bovines_version}"
    
    // Fabric/Quilt
    modImplementation "net.merchantpug:Bovines-And-Buttercups-Fabric:${project.bovines_version}"
}

gradle.properties

bovines_version=[INSERT VERSION HERE]

Old Versions

// Forge (Pre 1.20.2)
implementation fg.deobf("net.merchantpug:Bovines-And-Buttercups-Forge:${project.bovines_version}")