Skip to content

Commit

Permalink
Replace removed enabled method calls with properties
Browse files Browse the repository at this point in the history
  • Loading branch information
tmichaelreis committed Dec 29, 2023
1 parent acd29b1 commit 3e3fbc6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rollbar_flutter/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ task checkstyleMain(type: Checkstyle) {
configFile file("$rootDir/tools/checkstyle/google_checks.xml")
classpath = files()
reports {
xml.enabled false
html.enabled true
xml.required = false
html.required = true
}
}

Expand All @@ -121,8 +121,8 @@ def makeCheckstyleTask(sourceSet, config) {
configFile file("$rootDir/tools/checkstyle/${config}")
classpath = files()
reports {
xml.enabled false
html.enabled true
xml.required = false
html.required = true
}
}

Expand Down Expand Up @@ -159,7 +159,7 @@ task spotbugsMain(type: com.github.spotbugs.snom.SpotBugsTask) {
release = project.version
reports {
html {
enabled = true
required = true
destination = file("$buildDir/reports/spotbugs/main/spotbugs.html")
stylesheet = 'fancy-hist.xsl'
}
Expand Down

0 comments on commit 3e3fbc6

Please sign in to comment.