Exclude paper-api from squirrelid dependency (Compilefix for removed maven mirrors)

This commit is contained in:
JOO200 2021-12-30 20:41:57 +01:00
parent 81750e191d
commit ad7ecbaefe
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
applyLibrariesConfiguration()
dependencies {
"shade"("org.enginehub:squirrelid:${Versions.SQUIRRELID}")
"shade"("org.enginehub:squirrelid:${Versions.SQUIRRELID}") {
exclude(group = "com.destroystokyo.paper", module = "paper-api")
}
"shade"("org.khelekore:prtree:1.5.0")
}