Skip to content
Aeltumn edited this page Dec 30, 2024 · 9 revisions

Welcome to the Noxesium wiki! This wiki features information intended for developers that wish to work with Noxesium for their server-side creations.

This wiki has been formed over time through community contributions as new features and functionality has been added to the mod. Not all documentation may be of the same quality but we attempt to keep everything up-to-date.

Server developers are welcome to submit additional patches they need, feel free to open an issue to discuss your ideas.

Features

Usage

Public builds of Noxesium are available on Modrinth and CurseForge. Upcoming releases can be found on the Releases page here on GitHub.

Developers that want to use Noxesium as a dependency can add it can find the artifact on our public Maven repository.

The following artifacts are available:

  • api: General code for interacting with Noxesium on any platform.
  • common: Client mod specific code shared between Fabric and NeoForge.
  • fabric: Fabric-specific implementation.
  • neoforge: NeoForge-specific implementation.
  • paper: Server-side API implementation for Paper.

Maven:

<repository>
    <id>noxcrew-maven</id>
    <name>Noxcrew Public Maven Repository</name>
    <url>https://maven.noxcrew.com/public</url>
</repository>

<dependency>
  <groupId>com.noxcrew.noxesium</groupId>
  <artifactId>api</artifactId>
  <version>NOXESIUM_VERSION</version>
</dependency>

Gradle (Kotlin):

repositories {
    maven("https://maven.noxcrew.com/public")
}

dependencies {
    api("com.noxcrew.noxesium:api:NOXESIUM_VERSION")
}
Clone this wiki locally