Skip to content

cloud-neoforge#

Installation#

Cloud for NeoForge is available through Maven Central.

repositories {
  mavenCentral()
}

jarJar.enable()

dependencies {
  val cloudFabric = "org.incendo:cloud-neoforge:VERSION"
  implementation(cloudFabric)
  jarJar(cloudFabric)
}
repositories {
  mavenCentral()
}

jarJar.enable()

dependencies {
  def cloudFabric = 'org.incendo:cloud-neoforge:VERSION'
  implementation(cloudFabric)
  jarJar(cloudFabric)
}
repositories {
  mavenCentral()
}

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

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

Versions#

See here for Minecraft version compatibility.

mods.toml#

Add the following to your mods.toml:

[[dependencies.your_mod_id]]
modId = "cloud"
type = "required"
versionRange = "[1.0,)"
ordering = "NONE"
side = "BOTH"