Relique Help

Installation

Integrating Relique into your plugin is straightforward and similar to using any other API. This guide will walk you through adding the necessary build dependencies and updating your plugin descriptor.

To get started, you will need to complete 2 steps:

  1. Adding the Gradle or Maven Dependency to your build script.

  2. Adding the paper-plugin.yml dependency so the server loads Relique first.

Adding the Build Dependency

AbyssalLib artifacts are hosted on JitPack.

repositories { maven { url 'https://jitpack.io' } } dependencies { implementation('com.github.darksoulq:Relique:<version>') }
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <dependency> <groupId>com.github.darksoulq</groupId> <artifactId>Relique</artifactId> <version>version</version> </dependency>

Adding the paper-plugin.yml Dependency

Then just add it to your paper-plugin.yml (or plugin.yml) dependency.

dependencies: server: Relique: required: true load: BEFORE
07 May 2026