-
Bug
-
Resolution: Fixed
-
Major
-
None
-
Debian 3.2.65-1+deb7u2
Oracle JRE 1.8.0_45-b14
Jenkins 1.634
warnings 4.51
Jenkins gets started by java -jar jenkins.war
Although JavaDoc finds errors and these are displayed in the console for that build, the warnings plugin does not show them in its report.
There are five successful builds in the history before I triggerd the job again. Below i will paste some output from the console:
[...] [javadoc] Generating Javadoc [javadoc] Javadoc execution [javadoc] Loading source files for package XXX... [javadoc] Constructing Javadoc information... [javadoc] Standard Doclet version 1.8.0_45 [javadoc] Building tree for all the packages and classes... [javadoc] /home/XXX/.jenkins/jobs/SDK/workspace/Commons/src/de/XXX/XXX/commons/JBossDatasourceController.java:12: error: package org.jboss.as.cli does not exist [javadoc] import org.jboss.as.cli.CommandContext; [javadoc] ^ [... more Javadoc errors are displayed ...] [javadoc] 9 errors BUILD SUCCESSFUL Total time: 4 seconds [... TASKS plugin output ...] [WARNINGS] Parsing warnings in console log with parser Java Compiler (javac) [WARNINGS] Parsing warnings in console log with parser JavaDoc Tool [WARNINGS] Computing warning deltas based on reference build #57 [WARNINGS] Ignore new warnings since this is the first valid build [WARNINGS] Plug-in Resultat: Erfolgreich - Kein Grenzwert wurde überschritten
As you can see, there are errors but they are either ignored or not found.
As a side note, many other plugins like TASKS, CHECKSTYLE and FINDBUGS also print "Ignore new warnings since this is the first valid build" during the post build process, so maybe the root of this problem is not the warnings plugin?
Seems that the JavaDoc Tool did change the output format: supported format. Currently only warnings are actually parsed. Are there no 'warning' messages in the console anymore, only 'error' messages?
I'm not sure if one regexp can be used to parse both formats. Maybe a new parser is required. Interested in providing a pull request?