Skip to content
Aeltumn edited this page Dec 17, 2023 · 3 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, however all non-performance changes must be fully optional to use. No client-side configuration is available as behaviour should be decided by the server.

Features

Usage

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

To use Noxesium as a dependency you can find the artefact on our public Maven repository.

<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>REPLACE_WITH_CURRENT_NOXESIUM_VERSION</version>
</dependency>
Clone this wiki locally