Re: Jenkins + FindBugs plugin: use rank instead of priority in Jenkins

2013-03-09 Thread Ulli Hafner
I don't know if you can customize the ranks within FindBugs, maybe the FindBugs documentation or mailing list can help in that topic. Another option would be to work with include or exclude filters in FindBugs. Ulli Am 08.03.2013 um 18:38 schrieb Paulo Cheadi Haddad Filho : > Hey Ulli! >

Re: Jenkins + FindBugs plugin: use rank instead of priority in Jenkins

2013-03-08 Thread Paulo Cheadi Haddad Filho
Hey Ulli! So there's no other way to classify a bug? Can't I do what I was to do (build fail on specific bug)? I would be satisfied if there's a way to Jenkins show the cloudly icon when listing the jobs. At least I could see that something went wrong. Paulo On Thu, Mar 7, 2013 at 6:08 PM,

Re: Jenkins + FindBugs plugin: use rank instead of priority in Jenkins

2013-03-07 Thread Ulli Hafner
You can't define the ranks on your own. Rank is a kind of "new priority" introduced by the FindBugs team. So each bug has a constant priority and rank. What I'm doing in my plug-in is to map either each bug rank (if the check boy is set) or priority to one of the three plug-in priorities LOW, NO

Jenkins + FindBugs plugin: use rank instead of priority in Jenkins

2013-03-07 Thread Paulo Cheadi Haddad Filho
Hey guys! I'm setting up a Jenkins server with Sonar for code analysis and coverage with FindBugs, Cobertura and PMD. Then I was asked to create a job in it that runs tests for some project and if Findbugs find some scary or worst problem then the build results in failure. After some googling