Croparia IF Docs

|

General

Section
Developers
10 TOP-LEVEL ITEMS
    Developers
    Core Modules

      Crop Transmuter

Maven Repository

Starting with 1.1.1a, Croparia IF publishes downstream development artifacts to our own Maven service. That means you no longer have to rely only on manually copied jars or local builds. You can declare dependencies directly in your build script and let your IDE attach source jars automatically.

The public entry point is:

Add the repository

Groovy

repositories {
    maven {
        url = "https://maven.muyucloud.cool/repository/maven-public/"
    }
}

Kotlin

repositories {
    maven("https://maven.muyucloud.cool/repository/maven-public/")
}

Add dependencies

Common

The common artifact is usually the right choice for multi-platform development setups. Since Croparia IF itself is built on Architectury Loom, downstream developers can also target the shared common environment directly.

dependencies {
    modApi "cool.muyucloud.croparia:croparia-if-$minecraft_version-common:$croparia_version"
}
dependencies {
    modApi("cool.muyucloud.croparia:croparia-if-$minecraft_version-common:$croparia_version")
}

Fabric

For more toolchain-specific details, see the Fabric Loom docs.

dependencies {
    modImplementation "cool.muyucloud.croparia:croparia-if-$minecraft_version-fabric:$croparia_version"
}
dependencies {
    modImplementation("cool.muyucloud.croparia:croparia-if-$minecraft_version-fabric:$croparia_version")
}

NeoForge

For more toolchain-specific details, see the NeoForge docs.

dependencies {
    implementation "cool.muyucloud.croparia:croparia-if-$minecraft_version-neoforge:$croparia_version"
}
dependencies {
    implementation("cool.muyucloud.croparia:croparia-if-$minecraft_version-neoforge:$croparia_version")
}

Forge

For more toolchain-specific details, see the Forge docs.

dependencies {
    implementation fg.deobf("cool.muyucloud.croparia:croparia-if-$minecraft_version-forge:$croparia_version")
}
dependencies {
    implementation(fg.deobf("cool.muyucloud.croparia:croparia-if-$minecraft_version-forge:$croparia_version"))
}
In This Page
Maven Repository
NO EXTRACTED HEADINGS