Skip to content

Commit

Permalink
chore: remove spotbugs from core builds
Browse files Browse the repository at this point in the history
  • Loading branch information
HashEngineering committed May 3, 2024
1 parent 8ded155 commit b555ede
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'eclipse'
apply plugin: 'maven-publish'
apply plugin: 'jacoco'
apply plugin: 'signing'
apply plugin: 'com.github.spotbugs'
// apply plugin: 'com.github.spotbugs'

version = '20.0.5-SNAPSHOT'
archivesBaseName = 'dashj-core'
Expand Down Expand Up @@ -60,7 +60,7 @@ test {
exclude 'org/bitcoinj/net/NetworkAbstractionTests*'
exclude 'org/bitcoinj/protocols/channels/ChannelConnectionTest*'
exclude 'org/bitcoinj/core/LevelDBFullPrunedBlockChainTest*'
exclude 'org/bitcoinj/core/LevelDBBlockStoreTest*'
exclude 'org/bitcoinj/store/LevelDBBlockStoreTest*'
testLogging {
events "failed"
exceptionFormat "full"
Expand Down Expand Up @@ -156,14 +156,14 @@ jacocoTestReport {
}
}

tasks.spotbugsMain {
reports.create("html") {
required = true
outputLocation = file("$buildDir/reports/spotbugs.html")
setStylesheet("fancy-hist.xsl")
}
reports.create("xml") {
required = true
outputLocation = file("$buildDir/reports/spotbugs.xml")
}
}
//tasks.spotbugsMain {
// reports.create("html") {
// required = true
// outputLocation = file("$buildDir/reports/spotbugs.html")
// setStylesheet("fancy-hist.xsl")
// }
// reports.create("xml") {
// required = true
// outputLocation = file("$buildDir/reports/spotbugs.xml")
// }
//}

0 comments on commit b555ede

Please sign in to comment.