SamJakob / SpiGUI

A comprehensive GUI API for Spigot with pages support.
MIT License
107 stars 21 forks source link

Maven? #3

Closed BluuKiwi closed 4 years ago

BluuKiwi commented 4 years ago

Can you add this to maven?

SamJakob commented 4 years ago

The project is on JitPack. You can include it in your Maven project by going to this page, clicking the Maven tab and following the instructions: https://jitpack.io/#com.samjakob/SpiGUI

    <repositories>
        <!-- Add the JitPack repository -->
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>
    <dependencies>
        <!-- Add the dependency -->
        <dependency>
            <groupId>com.samjakob</groupId>
            <artifactId>SpiGUI</artifactId>
            <version>v1.1</version>
        </dependency>
    </dependencies>