Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/insprill/spigot-utils
A small library of commonly used functions in Spigot plugins
https://github.com/insprill/spigot-utils
bukkit bukkit-library java library minecraft spigot
Last synced: 21 days ago
JSON representation
A small library of commonly used functions in Spigot plugins
- Host: GitHub
- URL: https://github.com/insprill/spigot-utils
- Owner: Insprill
- License: apache-2.0
- Created: 2022-06-10T03:21:57.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-27T22:24:10.000Z (9 months ago)
- Last Synced: 2024-12-18T19:09:48.059Z (21 days ago)
- Topics: bukkit, bukkit-library, java, library, minecraft, spigot
- Language: Java
- Homepage:
- Size: 309 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![Apache 2.0 License][license-shield]][license-url]Spigot Utils
A small library of commonly used functions in Spigot plugins
View Javadocs »
Report Bugs
·
Request Features
Table of Contents
## Usage
### Implementing in your project
Make sure to replace `VERSION` in the below examples with the version below:
[![Maven Central][maven-central-shield]][maven-central-url]
#### Maven```xml
net.insprill
spigot-utils
VERSION```
#### Gradle (Groovy)
```groovy
dependencies {
implementation 'net.insprill:spigot-utils:VERSION'
}
```#### Gradle (Kotlin)
```kotlin
dependencies {
implementation("net.insprill:spigot-utils:VERSION")
}
```## Compiling
To compile spigot-utils, you need JDK 17 or higher and an internet connection.
Clone this repo, then run `./gradlew build` from your terminal.
You can find the compiled jar in the `build/libs` directory.
If you wish to install it to your local Maven repository, run `./gradlew publishToMavenLocal` after compiling.## Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any
contributions you make are **greatly appreciated**.1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Make your changes.
4. Stage your changes (`git add .`)
5. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
6. Push to the Branch (`git push origin feature/AmazingFeature`)
7. Open a Pull Request## License
Distributed under the Apache 2.0 License. See [`LICENSE`][license-url] for more information.
[contributors-shield]: https://img.shields.io/github/contributors/Insprill/spigot-utils.svg?style=for-the-badge
[contributors-url]: https://github.com/Insprill/spigot-utils/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/Insprill/spigot-utils.svg?style=for-the-badge
[forks-url]: https://github.com/Insprill/spigot-utils/network/members
[stars-shield]: https://img.shields.io/github/stars/Insprill/spigot-utils.svg?style=for-the-badge
[stars-url]: https://github.com/Insprill/spigot-utils/stargazers
[issues-shield]: https://img.shields.io/github/issues/Insprill/spigot-utils.svg?style=for-the-badge
[issues-url]: https://github.com/Insprill/spigot-utils/issues
[license-shield]: https://img.shields.io/github/license/Insprill/spigot-utils.svg?style=for-the-badge
[license-url]: https://github.com/Insprill/spigot-utils/blob/master/LICENSE
[maven-central-shield]: https://img.shields.io/maven-central/v/net.insprill/spigot-utils
[maven-central-url]: https://mvnrepository.com/artifact/net.insprill/spigot-utils