Bump squirrelid, remove workaround.

This commit is contained in:
wizjany 2023-03-23 11:47:02 -04:00
parent 216f95f87c
commit 1e81a91d4d
No known key found for this signature in database
GPG Key ID: 1DB5861C03B76B5E
2 changed files with 3 additions and 5 deletions

View File

@ -4,7 +4,7 @@ object Versions {
const val WORLDEDIT = "7.2.12"
const val JUNIT = "5.9.1"
const val MOCKITO = "4.9.0"
const val SQUIRRELID = "0.3.1"
const val SQUIRRELID = "0.3.2"
const val GUAVA = "31.1-jre"
const val FINDBUGS = "3.0.2"
}

View File

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