AntiLaby / AntiLaby

AntiLaby plug-in for Bukkit

Home Page:https://www.spigotmc.org/resources/antilaby-1-8-1-12-1-disable-labymod-functions-api.21347

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to AntiLaby!

AntiLaby is a free open source Minecraft Bukkit plug-in by NathanNr and heisluft to disable functions of the Minecraft modification LabyMod. Read more …

Useful links:

AntiLaby in

Maven:

...
<repositories>
  ...
  <repository>
    <id>heisluft-repo</id>
    <url>https://heisluft.tk/maven/</url>
  </repository>
  ...
</repositories>
...
<dependencies>
  ...
  <dependency>
    <groupId>com.gihub.antilaby</groupId>
    <artifactId>AntiLaby</artifactId>
    <version>2.0-pre3</version>
    <scope>compile</scope>
  </dependency>
  ...
</dependencies>
...

Gradle:

...
repositories {
  ...
  maven {
    url 'https://heisluft.tk/maven/'
  }
  ...
}
...
dependencies {
  ...
  compile group: 'com.github.antilaby", name: "AntiLaby", version: "2.0-pre3'
  ...
}
...