We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812fec8 commit e1b07beCopy full SHA for e1b07be
sentry/build.gradle.kts
@@ -48,6 +48,18 @@ tasks.jacocoTestReport {
48
}
49
50
51
+animalsniffer {
52
+ ignore = listOf(
53
+ // We manually check on Android if it's available (API 26+).
54
+ "java.time.Instant",
55
+ )
56
+}
57
+
58
+tasks.animalsnifferMain {
59
+ // Uses java.util.function.Supplier, but must be manually invoked.
60
+ exclude("**/io/sentry/SentryWrapper.class")
61
62
63
tasks {
64
jacocoTestCoverageVerification {
65
violationRules { rule { limit { minimum = Config.QualityPlugins.Jacoco.minimumCoverage } } }
0 commit comments