Jenkins plugin POM still using Java 5

2014-06-29 Thread Christoph Kutzinski
Hi all, Jenkins had switched to Java 6 long ago, but the plugins POM still uses Java 5 (via https://github.com/jenkinsci/pom/blob/master/pom.xml#L583 ) Is this a mistake or on purpose? cheers Kutzi -- You received this message because you are subscribed to the Google Groups Jenkins

ask

2014-06-29 Thread audio glow
ask -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-dev+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.

Re: Custom email-ext triggers for non build-result activities

2014-06-29 Thread Marc Carter
Could email-ext be upgraded to also listen to the post-completion build results pages of anything with an email-ext action then rescan triggers appropriately upon change (understanding there's a lot more details involved than this one-liner)? Is that sensible within the existing framework or is

Re: Problems building maven-plugin in Eclipse

2014-06-29 Thread Ace Han
Hi, Karthik plz refer to my post(Ace Han) for a short term solution 1. download the *source.zip* from https://github.com/jenkinsci/jenkins(I mean the root of the project, not just core folder since *Jenkins CLI* module is required for *Jenkins core* from the this

How do I access all Job Configuration properties in my Plugin code?

2014-06-29 Thread Quadir Sha Kareemullah
Hi, I would greatly appreciate if anyone can tell me how I can access all Job Configuration properties in my Plugin code. I tried following snippet, but *pdp* is returning *null*. ParametersDefinitionProperty pdp = this.project.getProperty(ParametersDefinitionProperty.class); Here is