Skip to content

cloud-fabric#

Installation#

Cloud for Fabric is available through Maven Central.

repositories {
  mavenCentral()
}

dependencies {
  val cloudFabric = "org.incendo:cloud-fabric:VERSION"
  modImplementation(cloudFabric)
  include(cloudFabric)
}
repositories {
  mavenCentral()
}

dependencies {
  def cloudFabric = 'org.incendo:cloud-fabric:VERSION'
  modImplementation(cloudFabric)
  include(cloudFabric)
}

Versions#

See here for Minecraft version compatibility.

fabric.mod.json#

Merge the following into your fabric.mod.json:

{
  "depends": {
    "cloud": "*"
  }
}