https://github.com/sirblobman/blueslimecore-shaded
Module for shaded dependencies used in BlueSlimeCore.
https://github.com/sirblobman/blueslimecore-shaded
blueslimecore library shaded
Last synced: about 1 month ago
JSON representation
Module for shaded dependencies used in BlueSlimeCore.
- Host: GitHub
- URL: https://github.com/sirblobman/blueslimecore-shaded
- Owner: SirBlobman
- License: gpl-3.0
- Created: 2023-07-10T00:30:22.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-10T00:54:52.000Z (about 3 years ago)
- Last Synced: 2025-11-11T16:04:43.299Z (8 months ago)
- Topics: blueslimecore, library, shaded
- Language: Kotlin
- Homepage: https://www.sirblobman.xyz/
- Size: 135 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BlueSlimeCore Shaded Dependencies Module
This module includes all shaded libraries and dependencies for BlueSlimeCore.
You can use this library in your own projects, but its better to shade in your own dependencies.
## Included Libraries
The following libraries are relocated to the `com.github.sirblobman.api.shaded` package:
- [Cryptomorin XSeries](https://github.com/CryptoMorin/XSeries): MIT License
- [Kyori Adventure](https://github.com/KyoriPowered/adventure): MIT License
- [bStats](https://github.com/Bastian/bStats): MIT License
Folia Helper is kept as-is (not relocated):
- [Folia Helper](https://github.com/SirBlobman/Folia-Helper/): GPL-3.0 License
## License
This project is licensed with GPL-3.0.
## Dependency Information
Maven
**Repository:**
```xml
sirblobman-public
https://nexus.sirblobman.xyz/public/
```
**Dependency:**
```xml
com.github.sirblobman.api
shaded
3.0-SNAPSHOT
provided
```
Gradle: Kotlin
```kotlin
repositories {
maven("https://nexus.sirblobman.xyz/public/")
}
dependencies {
compileOnly("com.github.sirblobman.api:shaded:3.0-SNAPSHOT")
}
```
Gradle: Groovy
```groovy
repositories {
maven {
name = 'sirblobman-public'
url = 'https://nexus.sirblobman.xyz/public/'
}
}
dependencies {
compileOnly 'com.github.sirblobman.api:shaded:3.0-SNAPSHOT'
}
```