/AdvancedDisplays

Create block, item and text displays!

Primary LanguageJavaGNU General Public License v3.0GPL-3.0

AdvancedDisplays

Create block, item and text displays!

Links & Support

You can download the plugin here:

If you have an issue, found a bug or want to suggest something, you can do it here:

How to compile

The plugin is compiled using Maven and Java 21, although it can run with Java 17. Build the jar running the Gradle command "./gradlew build" in the root folder.

Developer API

You can find the docs here

Maven
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>com.github.Luncaaa</groupId>
        <artifactId>AdvancedDisplays</artifactId>
        <version>{PLUGIN VERSION}</version>
    </dependency>
</dependencies>
Gradle
repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    compileOnly 'com.github.Luncaaa:AdvancedDisplays:{PLUGIN VERSION}'
}