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

A simple cooldown library for Java projects.

License

Notifications You must be signed in to change notification settings

Infumia/cooldown

Repository files navigation

cooldown

idea

Sonatype Nexus (Releases) Sonatype Nexus (Snapshots)

How to Use (Developers)

Maven

<dependencies>
  <dependency>
    <groupId>com.github.ben-manes.caffeine</groupId>
    <artifactId>guava</artifactId>
    <version>3.1.1</version>
  </dependency>
  <dependency>
    <groupId>tr.com.infumia</groupId>
    <artifactId>cooldown</artifactId>
    <version>VERSION</version>
  </dependency>
</dependencies>

Gradle

plugins {
  id "java"
}

dependencies {
  implementation "com.github.ben-manes.caffeine:guava:3.1.1"
  implementation "tr.com.infumia:cooldown:VERSION"
}