Re: Next Windows Slave Installer release

2015-08-28 Thread Claus Schneider
Hi.. Sound good.. any ETA? Do you have a deep link to an integration for me to test it out..? br Claus On Tuesday, August 25, 2015 at 10:38:50 PM UTC+2, Oleg Nenashev wrote: The module has not been released yet. I think it makes sense to bump the winsw dependency to 1.18 in order to get

Re: Request to on how get workspace location from Run object - for workflow compatibilty

2015-08-28 Thread Vinodhini Vijay
Thank you all!! :) Is it valid to use the below to get the AbstractProject or Project or WorkFlowJob? SubTask currentExecutable = run.getExecutor().getCurrentExecutable().getParent(); Thanks! On Friday, 28 August 2015 13:36:05 UTC+5:30, Daniel Beck wrote: On 28.08.2015, at 06:20,

Re: Request to on how get workspace location from Run object - for workflow compatibilty

2015-08-28 Thread Vinodhini Vijay
Thank you! If ,config.jelly is not present for CustomBuildWrapper (extends SimpleBuildWrapper), the below exception is thrown for Workflow job . No exception if used via FreeStyleProject Aug 28, 2015 3:36:26 PM hudson.widgets.RenderOnDemandClosure$1 generateResponse WARNING: Failed to evaluate

Re: Revisiting bundled plugins

2015-08-28 Thread Robert Sandell
+1 On Thu, Aug 27, 2015 at 5:37 PM, Gus Reiber grei...@cloudbees.com wrote: Hey all, So with the dust settled here a bit, I am hoping to solidify some points of agreement: 1) Jenkins plugin bundling has some issues. Not only is the list of what gets installed no longer optimal, it

Re: ZAP PLUGIN

2015-08-28 Thread Richard Bywater
Unfortunately I'm not the right person to do it but the best bet might be to raise a Work In Progress Pull Request in GitHub so people can see and comment on what you've done. Richard. On Fri, 28 Aug 2015 at 22:38 Thilina Madhusanka thili...@wso2.com wrote: Hi I have modified the ZAProxy [1]

Re: Request to on how get workspace location from Run object - for workflow compatibilty

2015-08-28 Thread Mads Nielsen
Haha..just noticed that too...the case of not being able to see the forrest because of all the trees! :) [image: ] Mads Nielsen Consultant m...@praqma.net +45 50 98 18 09 +45%2050%2098%2018%2009 Skype: inkspot Praqma www.praqma.com

Re: Request to on how get workspace location from Run object - for workflow compatibilty

2015-08-28 Thread Robert Sandell
use run.getParent() instead. /B On Fri, Aug 28, 2015 at 11:34 AM, Vinodhini Vijay vinodhini.vi...@gmail.com wrote: Thank you all!! :) Is it valid to use the below to get the AbstractProject or Project or WorkFlowJob? SubTask currentExecutable =

Re: Advices to display tables in plugins

2015-08-28 Thread Robert Sandell
jQuery plugins I believe often are a pain to integrate in Jenkins UI. YUI has a datatable component as well. I don't know if it is good or not but [1] is an example usage in a Jenkins plugin, not sure if it's a prime example or not though ;) [1]

Re: Request to on how get workspace location from Run object - for workflow compatibilty

2015-08-28 Thread Jesse Glick
On Fri, Aug 28, 2015 at 6:11 AM, Vinodhini Vijay vinodhini.vi...@gmail.com wrote: CustomBuildWrapper doesn't have any GUI Does not matter, it should still offer a `config.jelly`: ?jelly escape-by-default='true'? j:jelly xmlns:j=jelly:core/ -- You received this message because you are

Re: Request to on how get workspace location from Run object - for workflow compatibilty

2015-08-28 Thread Daniel Beck
On 28.08.2015, at 06:20, Vinodhini Vijay vinodhini.vi...@gmail.com wrote: I had overridden the method : public void setUp(Context context, Run?, ? run, FilePath workspace, Launcher launcher, TaskListener listener, EnvVars initialEnvironment) throws IOException,

Re: Request to on how get workspace location from Run object - for workflow compatibilty

2015-08-28 Thread Robert Sandell
I.e. you have it right in front of you :) public void setUp(Context context, Run?, ? run,* FilePath workspace*, Launcher launcher, TaskListener listener, EnvVars initialEnvironment) On Fri, Aug 28, 2015 at 10:05 AM, Daniel Beck m...@beckweb.net wrote: On 28.08.2015, at 06:20, Vinodhini Vijay

Re: Advices to display tables in plugins

2015-08-28 Thread Arnaud Héritier
Thanks Robert I will have a look at it. Yes it is also my fear to have problems with query librairies and incompatibilities between versions used in different plugins ... I hope that with all the hard work Gus is doing on UI he'll may provide some guidelines in a near feature On Fri, Aug 28,

ZAP PLUGIN

2015-08-28 Thread Thilina Madhusanka
Hi I have modified the ZAProxy [1] plugin to use both authentication and Ajaxspider . Need help to finalize things. testing of usability changing input configuration in jenkins. thanks. [1] - https://wiki.jenkins-ci.org/display/JENKINS/ZAProxy+Plugin

TransientProjectActionFactory and installation without restart

2015-08-28 Thread vojta . janota
Hi, My Jenkins plugin implements an TransientProjectActionFactory in order to provide project-level action. Unfortunately the action doesn't appear until the Jenkins is restarted. My two questions are: 1. Is there a mechanism that will allow me to see the action without requiring the restart?

Re: TransientProjectActionFactory and installation without restart

2015-08-28 Thread Jesse Glick
On Fri, Aug 28, 2015 at 9:49 AM, vojta.jan...@gmail.com wrote: My Jenkins plugin implements an TransientProjectActionFactory in order to provide project-level action. Unfortunately the action doesn't appear until the Jenkins is restarted. Probably the factory is getting used for newly created

Need plugin to contribute its data to environment in every build (novice)

2015-08-28 Thread Brian Sayatovic
Disclaimer: I'm a novice plugin developer. I've made two. And I';m not even sure how proper they are. I have one that extends Builder. It allows jobs to have a Build Action where the job configuration has picked one of N things to do (e.g. increment a value, decrement a value, etc.). The

Re: TransientProjectActionFactory and installation without restart

2015-08-28 Thread vojta . janota
Thanks for the tip. There should be no measurable overhead imposed by the action creation. I'll give this a try and report back later... On Friday, August 28, 2015 at 5:53:14 PM UTC+2, Jesse Glick wrote: On Fri, Aug 28, 2015 at 9:49 AM, vojta@gmail.com javascript: wrote: My Jenkins

Referencing jars during maven hpi:run

2015-08-28 Thread 'Laurence Bordowitz' via Jenkins Developers
Not a blocker, but an annoyance for development. I'm developing a plugin which forks a process and runs the main of a jar (let's call it jupiter.jar). This jar is a maven dependency, and has other jars it depends on. When packaged as an .hpi, all the jars are in the same folder, so when I fork

Re: Need plugin to contribute its data to environment in every build (novice)

2015-08-28 Thread Jesse Glick
On Fri, Aug 28, 2015 at 11:19 AM, Brian Sayatovic t...@trinition.org wrote: Is there another facet of plugins I can leverage that would allow be to always inject my JobProperty as an environment variable? EnvironmentContributor -- You received this message because you are subscribed to the

Re: Referencing jars during maven hpi:run

2015-08-28 Thread Jesse Glick
On Fri, Aug 28, 2015 at 1:22 PM, 'Laurence Bordowitz' via Jenkins Developers jenkinsci-dev@googlegroups.com wrote: Are there any workarounds to this problem? Try `Which.jarFile` on a representative class from each (transitive) dependency. -- You received this message because you are subscribed

Re: Revisiting bundled plugins

2015-08-28 Thread James Nord
Yeah of you forget about tracking down the dependencies and downloading those one by one and making sure you get the version compatible with the version of Jenkins you want to run rather than the latest. And you expect new users to do that?! -- You received this message because you are

Re: Revisiting bundled plugins

2015-08-28 Thread Slide
Wouldn't it be possible to have a war customizer that runs on the website to download a custom war with the plugins you want/need with dependency resolution? I remember some site doing this for eclipse some time ago and it worked very well. On Fri, Aug 28, 2015 at 4:42 PM James Nord

JUC West is Next Week!!

2015-08-28 Thread Alyssa Tong
Hi All, Last chance to register as the event is next Wednesday. If you haven't registered and plan on attending, pls do so by today @ 5pm PT, registration will be closing @ 5pm PT today to allow for behind the scene preparations. Onsite registration will be available on the day of conference if