Infumia / task

A simple builder-like task organizer library for Paper.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

task

idea

Update Snapshot Sonatype Nexus (Releases) Sonatype Nexus (Snapshots)

How to Use (Developers)

Initiate the Library

final class Plugin extends JavaPlugin {
  @Override
  public void onLoad() {
    BukkitTasks.init(this);
  }
}

Maven

<dependencies>
  <!-- Do NOT forget to relocate -->
  <dependency>
    <groupId>tr.com.infumia</groupId>
    <artifactId>task-common</artifactId>
    <version>VERSION</version>
  </dependency>
  <dependency>
    <groupId>tr.com.infumia</groupId>
    <artifactId>task-bukkit</artifactId>
    <version>VERSION</version>
  </dependency>
</dependencies>

Gradle

plugins {
  id "java"
}

dependencies {
  // Do NOT forget to relocate.
  implementation "tr.com.infumia:task-common:VERSION"
  implementation "tr.com.infumia:task-bukkit:VERSION"
}

About

A simple builder-like task organizer library for Paper.

License:MIT License


Languages

Language:Java 100.0%