|
38 | 38 | <testng-version>6.14.3</testng-version>
|
39 | 39 | <surefire-version>3.0.0-M3</surefire-version>
|
40 | 40 | <checkstyle-plugin-version>3.0.0</checkstyle-plugin-version>
|
41 |
| - <findbugs-plugin-version>3.0.5</findbugs-plugin-version> |
42 |
| - <findbugs-version>3.0.1</findbugs-version> |
43 | 41 | <jacoco-plugin-version>0.8.3</jacoco-plugin-version>
|
44 | 42 | <compiler-plugin-version>3.8.0</compiler-plugin-version>
|
45 | 43 | <okhttp3-version>3.12.1</okhttp3-version>
|
|
117 | 115 | <version>${testng-version}</version>
|
118 | 116 | <scope>test</scope>
|
119 | 117 | </dependency>
|
120 |
| - <dependency> |
121 |
| - <groupId>com.google.code.findbugs</groupId> |
122 |
| - <artifactId>annotations</artifactId> |
123 |
| - <version>${findbugs-version}</version> |
124 |
| - </dependency> |
125 |
| - <dependency> |
126 |
| - <groupId>com.google.code.findbugs</groupId> |
127 |
| - <artifactId>jsr305</artifactId> |
128 |
| - <version>${findbugs-version}</version> |
129 |
| - </dependency> |
130 | 118 | <dependency>
|
131 | 119 | <groupId>com.google.guava</groupId>
|
132 | 120 | <artifactId>guava</artifactId>
|
|
146 | 134 | <groupId>org.mockito</groupId>
|
147 | 135 | <artifactId>mockito-core</artifactId>
|
148 | 136 | <version>${mockito-version}</version>
|
| 137 | + <scope>test</scope> |
149 | 138 | </dependency>
|
150 | 139 | <dependency>
|
151 | 140 | <groupId>org.powermock</groupId>
|
|
208 | 197 | <consoleOutput>true</consoleOutput>
|
209 | 198 | </configuration>
|
210 | 199 | </plugin>
|
211 |
| - <plugin> |
212 |
| - <groupId>org.codehaus.mojo</groupId> |
213 |
| - <artifactId>findbugs-maven-plugin</artifactId> |
214 |
| - <version>${findbugs-plugin-version}</version> |
215 |
| - <configuration> |
216 |
| - <xmlOutput>true</xmlOutput> |
217 |
| - <excludeFilterFile>build/findbugs-exclude.xml</excludeFilterFile> |
218 |
| - <effort>Max</effort> |
219 |
| - <threshold>Low</threshold> |
220 |
| - </configuration> |
221 |
| - <executions> |
222 |
| - <execution> |
223 |
| - <phase>verify</phase> |
224 |
| - <goals> |
225 |
| - <goal>findbugs</goal> |
226 |
| - </goals> |
227 |
| - </execution> |
228 |
| - </executions> |
229 |
| - </plugin> |
230 | 200 | <plugin>
|
231 | 201 | <groupId>org.jacoco</groupId>
|
232 | 202 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
0 commit comments