Skip to content

AntiLaby/AntiLaby

Repository files navigation

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'
  ...
}
...