Uwe Schindler
Uwe Schindler
Here is the Jenkins screen to configure a parser for "warnings": 
Hi, The problem is that we just have a list of signatures, but no categories. The forbidden signatures may come from different sources, but we don't know their names. It's...
Could you give any other plugin that has exclusions in files? This is not something easy to implement unless Maven has direct support for this. The current exclusions are a...
Hi, you should be able to use `${forbidden.excludes}` inside your POM and then pass `-Dforbidden.excludes=.....`. I only do not know if or how it works with multiple patterns! Pro Tip:...
I think it should be easy to optionally allow to write the reports to a separate file. The main thing to discuss: Type of output - structured file? Other question:...
I'd keep the logging output as is, but just create a file (like the JUnit report files). Do you know a good format to use? How do other tools report...
This one?: https://gleclaire.github.io/findbugs-maven-plugin/examples/findbugs.xml Looks easily produceable... Needs some refactoring of log writer but not complicated. Once I have a architecture for the failures, it should be easy to add more...
Here is an example/comparison of the files generated by PMD/Checkstyle/Findbugs: [Blog by SOFTWARE ENGINEERING CANDIES](http://www.sw-engineering-candies.com/blog-1/howtotransformtheresultsfromfindbugscheckstyleandpmdintoasinglehtmlreportwithxslt20andjava#TOC-XML-from-Findbugs-Checkstyle-and-PMD-)
Hi, I know those already - the problem is that it depends on the database if they are broken. In addition, it is much more shitty alltogether: If you call...
FYI, the Timestamp class and their Date/Time ones have more methods that use local timezone. E.g. the ones that print with `toString()` but also the new ones in Java 8...