Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
/ task Public archive

A simple builder-like task organizer library for Paper.

License

Notifications You must be signed in to change notification settings

Infumia/task

Repository files navigation

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"
}