Re: Connect jelly and java

2014-09-04 Thread Ulli Hafner
Am 03.09.2014 um 22:45 schrieb jenkinsuse...@gmail.com: Hi all, I am currently developing my first Jenkins plugin. I need to have a dropdown menu on the job page that is filled via a java method, but the jelly and the java file don't seem to work properly together: There is just an

Re: New Plugin: Label Linked Jobs Plugin

2014-09-04 Thread Vincent Latombe
I may have missed something while creating the repo using the IRC bot; I thought it would give you the commit rights at the same time, I may have been wrong. Unfortunately it is currently offline so my hands are tied. Vincent 2014-09-04 3:51 GMT+02:00 dominiquebrice domi.br...@free.fr: Hi

Re: Discussion: Refactoring of JENKINS project in JIRA

2014-09-04 Thread Tom Fennelly
At yesterdays governance meeting on #jenkins we talked about configuring JIRA to provide some helpful text wrt the Components and Labels fields to help people file issues more consistently. We talked about doing it using Javascript hacks. I installed a trial JIRA and was able to configure the

Re: Discussion: Refactoring of JENKINS project in JIRA

2014-09-04 Thread Richard Mortimer
Hi, On 04/09/2014 13:22, Tom Fennelly wrote: At yesterdays governance meeting on #jenkins we talked about configuring JIRA to provide some helpful text wrt the Components and Labels fields to help people file issues more consistently. We talked about doing it using Javascript hacks. I

Re: Discussion: Refactoring of JENKINS project in JIRA

2014-09-04 Thread Stephen Connolly
On 4 September 2014 15:02, Richard Mortimer ri...@oldelvet.org.uk wrote: Hi, On 04/09/2014 13:22, Tom Fennelly wrote: At yesterdays governance meeting on #jenkins we talked about configuring JIRA to provide some helpful text wrt the Components and Labels fields to help people file issues

InstantiationError when referencing the same library from multiple plugins

2014-09-04 Thread twr
Hi, I had some neat logic to wrap various SVN plugins, and augment my builds with certain SCM info, call this PluginA (this has various SCM plugins as maven dependencies - e.g. *org.jenkins-ci.plugins:git:2.1.0*) Recently I wanted to reuse that logic in another plugin (which gets deployed on

Re: Connect jelly and java

2014-09-04 Thread jenkinsuser92
Thanks for replying! So now the code looks like this, right? public class JavaClass implements Action { private AbstractProject ap; public String selection; public JavaClass(AbstractProject ap) { this.ap = ap; } @DataBoundConstructor public JavaClass(String selection) {

Re: Connect jelly and java

2014-09-04 Thread Mads Nielsen
I dont think an action is a describable object? So i dont think tour approach will work. Den 04/09/2014 20.26 skrev jenkinsuse...@gmail.com: Thanks for replying! So now the code looks like this, right? public class JavaClass implements Action { private AbstractProject ap; public String