New Plugin: saltapi

2014-09-04 Thread Christian McHugh
Hello all I've created an build plugin to execute a SaltStack API call. Kaplow! https://github.com/mchugh19/jenkins-saltapi I'm very much not a programmer, this was merely to scratch an itch. With this plugin you can define saltserver connection details, then perform saltfunctions (such as cmd

Re: New Plugin: Label Linked Jobs Plugin

2014-09-04 Thread dominiquebrice
Vincent, Ulli, thanks for your help, I'm all set now. Initial push went fine in github. First release was almost smooth thanks to the comprehensive documentation on the wiki. Looking forward to see version 1.0.1 proposed by Jenkins in the plugin page :-) -- View this message in context: http://

Re: 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 t

Re: New Plugin: Label Linked Jobs Plugin

2014-09-04 Thread Ulli Hafner
Can you please retry? Am 04.09.2014 um 03:51 schrieb dominiquebrice : > Hi Vincent > > Thanks for creating the repo. My github ID is indeed dominiquebrice :-) > I have trouble pushing to the repo. I did this: > >> git remote add origin g...@github.com:jenkinsci/label-linked-jobs-plugin.git >> g

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 : > Thanks for replying! > So now the code looks like this, right? > > public class JavaClass implements Action { > > private AbstractProject ap; > public String selection; > > publi

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) { this.sele

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 t

Re: Discussion: Refactoring of JENKINS project in JIRA

2014-09-04 Thread Stephen Connolly
On 4 September 2014 15:02, Richard Mortimer 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 more co

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 inst

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

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 : > Hi Vincent > > Thanks f

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