File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
dd-java-agent/agent-otel/otel-bootstrap Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
1313
1414 id(" com.diffplug.spotless" ) version " 8.1.0"
1515 id(" me.champeau.gradle.japicmp" ) version " 0.4.3"
16- id(" com.github.spotbugs" ) version " 6.4.7 "
16+ id(" com.github.spotbugs" ) version " 6.4.8 "
1717 id(" de.thetaphi.forbiddenapis" ) version " 3.10"
1818 id(" io.github.gradle-nexus.publish-plugin" ) version " 2.0.0"
1919 id(" com.gradleup.shadow" ) version " 8.3.6" apply false
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ forbiddenApis {
3737}
3838
3939spotbugs {
40+ // To avoid massive report on `io.opentelemetry.*` and `net.bytebbuddy.*` classes.
4041 onlyAnalyze = [' none' ]
4142}
4243
Original file line number Diff line number Diff line change 1- import com.github.spotbugs.snom.SpotBugsTask
21import de.thetaphi.forbiddenapis.gradle.CheckForbiddenApis
32import groovy.lang.Closure
43
@@ -28,10 +27,6 @@ tasks.named<CheckForbiddenApis>("forbiddenApisMain") {
2827 failOnMissingClasses = false
2928}
3029
31- tasks.named<SpotBugsTask >(" spotbugsMain" ) {
32- extraArgs.add(" -noClassOk" )
33- }
34-
3530val minimumBranchCoverage by extra(0.7 )
3631val minimumInstructionCoverage by extra(0.8 )
3732
You can’t perform that action at this time.
0 commit comments