Re: Email with pmd | checkstyle

2012-05-31 Thread Ullrich Hafner
essage- > From: Ullrich Hafner [mailto:ullrich.haf...@gmail.com] > Sent: Thursday, May 31, 2012 3:28 PM > To: jenkinsci-users@googlegroups.com > Cc: Michael Polinovskiy > Subject: Re: Email with pmd | checkstyle > > Well, I don't use these tools. But it is quite easy to clone the

RE: Email with pmd | checkstyle

2012-05-31 Thread Michael Polinovskiy
m: Ullrich Hafner [mailto:ullrich.haf...@gmail.com] Sent: Thursday, May 31, 2012 3:28 PM To: jenkinsci-users@googlegroups.com Cc: Michael Polinovskiy Subject: Re: Email with pmd | checkstyle Well, I don't use these tools. But it is quite easy to clone the email-ext plug-in and create a pull req

Re: Email with pmd | checkstyle

2012-05-31 Thread Ullrich Hafner
emplate for Clover and Robot > Framework? > > Regards, > Michael > > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ullrich Hafner > Sent: Tuesday, May 22, 2012 12:28 PM > To: jenkinsci-

RE: Email with pmd | checkstyle

2012-05-31 Thread Michael Polinovskiy
12 12:28 PM To: jenkinsci-users@googlegroups.com Subject: Re: Email with pmd | checkstyle On 05/22/2012 11:49 AM, arjun tr wrote: > I was trying to include short summary of cobertura, pmd, checkstyle, > findbugs reports in emails. > I was able to get configurations for cobertura but not f

Re: Email with pmd | checkstyle

2012-05-25 Thread arjun tr
Thanks a lot Ulli will give it a try Regards, Arjun On Thu, May 24, 2012 at 1:57 PM, Ullrich Hafner wrote: > In Jelly you have something like: > > ${action.result.numberOfAnnotations} > > > - action is an instance of AbstractResultAction > - action.result is a public getter

Re: Email with pmd | checkstyle

2012-05-24 Thread Ullrich Hafner
In Jelly you have something like: ${action.result.numberOfAnnotations} - action is an instance of AbstractResultAction - action.result is a public getter in AbstractResultAction (getResult()) - result is an instance of BuildResult - result.numberOfAnnotations is a public getter

RE: Email with pmd | checkstyle

2012-05-23 Thread Alex Earl
You would use them the same way they are used in Java. Sent from my Windows Phone -- From: arjun tr Sent: 5/23/2012 11:29 AM To: jenkinsci-users@googlegroups.com Subject: Re: Email with pmd | checkstyle I tried looking into analysis core and analysis collector plugin

Re: Email with pmd | checkstyle

2012-05-23 Thread arjun tr
I tried looking into analysis core and analysis collector plugin but could not understand how the objects are defined for use in jelly and groovy. Is there anything I'm missing, I'm new to Jenkins code even though I have been using Jenkins for a long time Regards, Arjun On Wed, May 23, 2012 at

Re: Email with pmd | checkstyle

2012-05-23 Thread Slide
Currently there is a bug in the groovy templating that it does not load/import the Jenkins object model correctly, I am working to fix this. Jelly has no such issue and you can interact with the full Jenkins object model. slide On Tue, May 22, 2012 at 9:20 PM, arjun tr wrote: > Are there any doc

Re: Email with pmd | checkstyle

2012-05-23 Thread arjun tr
On Wed, May 23, 2012 at 1:33 PM, Ullrich Hafner wrote: > On 05/22/2012 06:23 PM, arjun tr wrote: > > sorry, but I tried this in vain. I got some jelly script from some > stackoverflow which showed how to configure pmd, checkstyle, findbugs > individually. > > > But did you use the new template I

Re: Email with pmd | checkstyle

2012-05-23 Thread Ullrich Hafner
On 05/22/2012 06:23 PM, arjun tr wrote: > sorry, but I tried this in vain. I got some jelly script from some > stackoverflow which showed how to configure pmd, checkstyle, findbugs > individually. > But did you use the new template I referred to? > It would help if there is some sort of document

Re: Email with pmd | checkstyle

2012-05-22 Thread arjun tr
Are there any documentation on the objects and methods available for use in groovy and jelly scripts in email-ext plugin? Regards, Arjun On Tue, May 22, 2012 at 9:53 PM, arjun tr wrote: > sorry, but I tried this in vain. I got some jelly script from some > stackoverflow which showed how to c

Re: Email with pmd | checkstyle

2012-05-22 Thread arjun tr
sorry, but I tried this in vain. I got some jelly script from some stackoverflow which showed how to configure pmd, checkstyle, findbugs individually. It would help if there is some sort of documentation for objects available in jelly and groovy scripts Here is the stackoverflow link http://stac

Re: Email with pmd | checkstyle

2012-05-22 Thread Ullrich Hafner
On 05/22/2012 11:49 AM, arjun tr wrote: > I was trying to include short summary of cobertura, pmd, checkstyle, > findbugs reports in emails. > I was able to get configurations for cobertura but not for others with > jelly. > Is there any place which details on the other plugin configurations > and

Email with pmd | checkstyle

2012-05-22 Thread arjun tr
I was trying to include short summary of cobertura, pmd, checkstyle, findbugs reports in emails. I was able to get configurations for cobertura but not for others with jelly. Is there any place which details on the other plugin configurations and class, method definitions in either jelly or groovy?