File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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)
138118dependencies {
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)
149124def JMI_STUB = ' com/mathworks/jmi/**'
150125
You can’t perform that action at this time.
0 commit comments