Skip to content

Commit 267e050

Browse files
committed
Remove FindBugs.
1 parent 144dc88 commit 267e050

1 file changed

Lines changed: 0 additions & 25 deletions

File tree

build.gradle

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -114,37 +114,12 @@ spotless {
114114
}
115115
}
116116

117-
//////////////
118-
// FINDBUGS //
119-
//////////////
120-
apply plugin: 'findbugs'
121-
findbugs {
122-
toolVersion = VER_FINDBUGS
123-
sourceSets = [sourceSets.main] // don't check the test code
124-
ignoreFailures = false // bug free or it doesn't ship!
125-
reportsDir = file('build/findbugs')
126-
effort = 'max' // min|default|max
127-
reportLevel = 'medium' // low|medium|high (low = sensitive to even minor mistakes)
128-
omitVisitors = [] // bugs that we want to ignore
129-
}
130-
// HTML instead of XML
131-
tasks.withType(FindBugs) {
132-
reports {
133-
xml.enabled = false
134-
html.enabled = true
135-
}
136-
}
137117
// we'll want the findbugs annotations (they don't have a 3.0.1 version)
138118
dependencies {
139119
compile 'com.google.code.findbugs:annotations:3.0.0'
140120
compile 'com.google.code.findbugs:jsr305:3.0.0'
141121
}
142122

143-
///////////
144-
// MAVEN //
145-
///////////
146-
apply plugin: 'maven-publish'
147-
148123
// the package of the jmi stub (which we're going to leave out of all the jars we make)
149124
def JMI_STUB = 'com/mathworks/jmi/**'
150125

0 commit comments

Comments
 (0)