Skip to content

avionik-world/minecraft-common

Repository files navigation

Minecraft Common 🍬

In this small project there are a few functions that are often needed for Minecraft servers. Such as timestamps or a few adventure extensions.

Using Minecraft Common in your plugin

Maven

<dependencies>
 <dependency>
    <groupId>world.avionik</groupId>
    <artifactId>minecraft-common</artifactId>
    <version>1.0.1</version>
    <scope>provided</scope>
  </dependency>
</dependencies>

Gradle

dependencies {
    compileOnly 'world.avionik:minecraft-common:1.0.1'
}