implement opt-out auto reporting with sentry (#1201)

This commit is contained in:
Julian Krings
2025-06-06 17:33:16 +02:00
committed by GitHub
parent 52f87befa2
commit 329e136a66
12 changed files with 166 additions and 4 deletions
+10
View File
@@ -33,6 +33,7 @@ plugins {
id "io.github.goooler.shadow" version "8.1.7"
id "de.undercouch.download" version "5.0.1"
id "xyz.jpenilla.run-paper" version "2.3.1"
id "io.sentry.jvm.gradle" version "5.7.0"
}
@@ -132,6 +133,7 @@ configurations.configureEach {
allprojects {
apply plugin: 'java'
apply plugin: 'io.sentry.jvm.gradle'
repositories {
mavenCentral()
@@ -203,6 +205,14 @@ allprojects {
archiveClassifier.set('javadoc')
from javadoc.destinationDir
}
sentry {
includeSourceContext = true
org = "volmit-software"
projectName = "iris"
authToken = property("sentry.auth.token")
}
}
if (JavaVersion.current().toString() != "21") {