/Tag-Game-MC

Play tag in your Minecraft server!

Primary LanguageJavaGNU General Public License v3.0GPL-3.0

Tag-Game

Play tag in your Minecraft server!

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 Gradle 8.9 and Java 16. Build the jar running the Gradle task "build"

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>Tag-Game-MC</artifactId>
        <version>{PLUGIN VERSION}</version>
    </dependency>
</dependencies>
Gradle
repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    compileOnly 'com.github.Luncaaa:Tag-Game-MC:{PLUGIN VERSION}'
}