プロジェクトの pom.xml ファイルで以下を使用しています。findbugs:check
優先度の高いエラーが存在しない場合でも、目標の実行はすべてのエラーで失敗します。私は何を間違っていますか?
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.0</version>
<executions>
<execution>
<id>failing-on-high</id>
<phase>process-test-resources</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<threshold>High</threshold>
<onlyAnalyze>com.example.-</onlyAnalyze>
</configuration>
</execution>
</executions>