I'm trying to to use the Warnings Plugin ( https://wiki.jenkins-ci.org/display/JENKINS/Warnings+Plugin) to publish the compilation warnings - obviously. :-)
The problem is that no warnings show at all. Neither is there an option in the job configuration to publish those warnings. As it is the case for Findbugs, PMD & al from the same author. Which all work like a charm. So it's probably a dump question, but how do I enable/publish/... the warnings using the Warnings plugin ? :-) ---------------- The Maven Compiler plugin has been set to generate the warnings: <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <target>${java.version}</target> <source>${java.version}</source> <compilerArgument>-Xlint:all</compilerArgument> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> The console output contains a lot of deprecation errors. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.