https://github.com/tika/tide
Surf along the waves of Spigot
https://github.com/tika/tide
library spigot tide
Last synced: 27 days ago
JSON representation
Surf along the waves of Spigot
- Host: GitHub
- URL: https://github.com/tika/tide
- Owner: tika
- Created: 2021-02-25T00:13:44.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-28T10:51:39.000Z (about 5 years ago)
- Last Synced: 2025-08-08T10:45:25.390Z (10 months ago)
- Topics: library, spigot, tide
- Language: Java
- Homepage:
- Size: 77.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tide

Surf along the waves of Spigot with a simple utility-first library
### Features:
- TidePlugin > Tide's plugin system, required when using this library
- Commands > A template for commands and subcommands, supporting parameters & easy support for help commands
- Hue > Text utility for Spigot, easily print-to-console & other utils
- Number utilities > Easily convert numbers into popular formats
- Collection utilities > A utility to create TreeMaps, HashMaps as well as other useful collection methods
- Vertex > Skull utilities, an implementation of [SkullCreator]("https://github.com/deanveloper/SkullCreator")
- Persistent data utilities > A plethora of clean and helpful methods when dealing with Persistent Data, an implementation of [PDUtils]("https://github.com/Cronuside/PersistentDataUtilities")
- Menus > Create GUIs without the pain
- Config > A self-explanatory class to create Spigot YML configurations
### Developers
In order to use this library, add either of the following to your gradle / maven file, the current version can be found at the top of this file
Maven
```xml
jitpack.io
https://jitpack.io
com.github.tika
Tide
Current version
```
Gradle
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.tika:Tide:Current Version'
}
```
#### Requires Java 8+