-
Bug
-
Resolution: Not A Defect
-
Major
-
None
-
Jenkins 1.511, Findbugs-Plugin 4.48, maven-findbugs-plugin 2.5.2
The Findbugs- and Checkstyle-Plugins for Jenkins do not show any results in a maven style job. If the project is configured as freestyle job both plugins show results.
In both jobs the file are properly generated.
See attachments for directory structures, console outputs and the main view.
Configuration of both plugins in maven:
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.10</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> <failOnError>false</failOnError> <xmlOutput>true</xmlOutput> </configuration> </plugin> </plugins> </reporting>
This bug is similar to JENKINS-12853.