Remove Sentry

- Remove automatic error reporting and server-identifying attachments.
- Remove Sentry dependencies, release tooling, settings, and test commands.
- Keep failures operator-visible through local stack traces and logging.
This commit is contained in:
Brian Neumann-Fopiano
2026-08-28 16:29:33 -04:00
parent 1a561da2cd
commit 1ca943ab51
44 changed files with 31 additions and 533 deletions
-6
View File
@@ -6,8 +6,6 @@
# Plugins
shadow = "9.5.1" # https://plugins.gradle.org/plugin/com.gradleup.shadow
slimjar = "2.1.9" # https://plugins.gradle.org/plugin/de.crazydev22.slimjar
download = "5.7.0" # https://plugins.gradle.org/plugin/de.undercouch.download
sentryPlugin = "6.14.0" # https://github.com/getsentry/sentry-android-gradle-plugin
# Core Libraries
lombok = "1.18.46"
@@ -20,7 +18,6 @@ annotations = "26.1.0" # https://central.sonatype.com/artifact/org.jetbrains/ann
paralithic = "0.8.1" # https://github.com/PolyhedralDev/Paralithic/
paperlib = "1.0.8" # https://github.com/PaperMC/PaperLib/
bstats = "3.2.1" # https://github.com/Bastian/bstats-metrics/tree/master
sentry = "8.48.0" # https://github.com/getsentry/sentry-java
commons-io = "2.22.0" # https://central.sonatype.com/artifact/commons-io/commons-io
commons-lang3 = "3.20.0" # https://central.sonatype.com/artifact/org.apache.commons/commons-lang3
oshi = "6.9.0" # Minecraft 26.2 runtime ceiling
@@ -80,7 +77,6 @@ adventure-serializer-plain = { module = "net.kyori:adventure-text-serializer-pla
paralithic = { module = "com.dfsek:paralithic", version.ref = "paralithic" }
paperlib = { module = "io.papermc:paperlib", version.ref = "paperlib" }
bstats = { module = "org.bstats:bstats-bukkit", version.ref = "bstats" }
sentry = { module = "io.sentry:sentry", version.ref = "sentry" }
commons-io = { module = "commons-io:commons-io", version.ref = "commons-io" }
commons-lang3 = { module = "org.apache.commons:commons-lang3", version.ref = "commons-lang3" }
oshi = { module = "com.github.oshi:oshi-core", version.ref = "oshi" }
@@ -127,5 +123,3 @@ fabricApi-permission = { module = "net.fabricmc.fabric-api:fabric-permission-api
[plugins]
shadow = { id = "com.gradleup.shadow", version.ref = "shadow" }
slimjar = { id = "de.crazydev22.slimjar", version.ref = "slimjar" }
download = { id = "de.undercouch.download", version.ref = "download" }
sentry = { id = "io.sentry.jvm.gradle", version.ref = "sentryPlugin" }