Skip to content
Leonardo Luiz Gava edited this page Jan 4, 2023 · 10 revisions

Installation Release

This page is in development!

With Maven

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

<dependency>
  <groupId>com.github.llgava</groupId>
  <artifactId>neelix</artifactId>
  <version>VERSION</version>
</dependency>

With Gradle

repositories {
  ...
  maven { url 'https://jitpack.io' }
}

dependencies {
  implementation 'com.github.llgava:neelix:VERSION'
}

Setup

public final class MyPlugin extends JavaPlugin {
  @Override
  public void onEnable() {
    Neelix.init(this); // or Neelix.initialize(this)
  }
}