-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Meme Man edited this page Nov 29, 2025
·
7 revisions
Welcome to the Nexus wiki! This is the home page, which should get you primed in setting your project up to use Nexus API.
repositories { // Specific repo block depends on the platform you're building your mod on
maven {
name = "Meme Man Maven"
url = "https://dl.cloudsmith.io/public/meme-man-mods/nexus/maven/"
}
}
dependencies { // Choose based on the platform you're developing for
// Forge (ForgeGradle)
implementation fg.deobf("com.mememan:nexus-forge-${minecraft_version}:${nexus_version}")
// Fabric (Loom)
modImplementation("com.mememan:nexus-fabric-${minecraft_version}:${nexus_version}")
// NeoForge (LegacyForge/ModDevGradle)
modImplementation("com.mememan:nexus-forge-${minecraft_version}:${nexus_version}")
// MultiLoader (VanillaGradle/LegacyForge - Common)
implementation("com.mememan:nexus-common-${minecraft_version}:${nexus_version}")
// Architectury (ArchLoom - Common)
modImplementation("com.mememan:nexus-common-${minecraft_version}:${nexus_version}")
}