An open API service indexing awesome lists of open source software.

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.

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'
}
```