Re: Perforce BlueOcean PR and release.

2019-05-22 Thread Gavin Mogan
oh shoot, I probably should reply to this. Short version, until someone takes over from me, its when I have time to do it, and when I think a release is needed. Right now I'm trying to get the ATH a little more stable so we can merge a little easier. On Wed, May 22, 2019 at 2:19 AM pallen

Re: Proposal: Automating dependency management for repositories inside the jenkinsci org

2019-05-22 Thread Gavin Mogan
Can blueocean-display-url-plugin get it enabled? is it setup for all deps or only the parent plugin? Can blueocean-plugin get updated for the parent plugin (or is that a config file somewhere)? On Tue, May 21, 2019 at 12:36 PM Matt Sicker wrote: > I'd really love to see the jackson repo most of

Re: Automated testing a jenkins plugin

2019-05-22 Thread Mark Waite
On Wed, May 22, 2019 at 2:42 PM Mani Sarkar wrote: > Let me rephrase the question. When I said conversation I meant by hand. > Manually written them so to reflect the job description on jenkins itself. > > I understand the classes are created so we programmatically rewrite them > using the

Re: Automated testing a jenkins plugin

2019-05-22 Thread Mani Sarkar
Let me rephrase the question. When I said conversation I meant by hand. Manually written them so to reflect the job description on jenkins itself. I understand the classes are created so we programmatically rewrite them using the classes provided. However it would help if these building block

Re: Automated testing a jenkins plugin

2019-05-22 Thread Mark Waite
On Wed, May 22, 2019 at 10:19 AM Mani Sarkar wrote: > Hi Mark, all, > > Has anyone implemented the Project and Builder classes to convert project > types like > > FreeStyleProject > SimplePipeline > MultiPipeline > > I'm not sure I understand your question. It seems like you're asking for an

Re: Automated testing a jenkins plugin

2019-05-22 Thread Mani Sarkar
Hi Mark, all, Has anyone implemented the Project and Builder classes to convert project types like FreeStyleProject SimplePipeline MultiPipeline What would be even better, if I could just load the *config.xml* files for the above project types via the project/builder classes - is there

Re: Jenkins Common Coding Questions in GSoC 2019

2019-05-22 Thread Matt Sicker
Oh sorry, I missed one important use case for Q2. You would make both constructors available as protected in your own abstract Descriptor classes. See for example JobPropertyDescriptor or ViewPropertyDescriptor. On Wed, May 22, 2019 at 9:41 AM Matt Sicker wrote: > > For Q1, I'm not sure how data

Re: Jenkins Common Coding Questions in GSoC 2019

2019-05-22 Thread Matt Sicker
For Q1, I'm not sure how data bound constructor works with inherited classes. I think you would need to avoid annotating the base class's constructor and instead annotate the derived class's constructor. Alternatively, if everything is using data bound setters, that would likely work as is. I'm

Jenkins Common Coding Questions in GSoC 2019

2019-05-22 Thread Yufei Zhang
Hi developers, GSoC mentors and students like me, I met some questions reading the codebase of external-workspace-manager-plugin, and they should appear in other jenkins plugins as well. So these are quite general and I wonder they might help students like me understand jenkins better. Hope

Perforce BlueOcean PR and release.

2019-05-22 Thread pallen
Hi Guys, We are working to add BlueOcean support for Perforce and have added the Perforce SCM under the 'blueocean-plugin' and following the pattern of the other SCM providers. We had hoped to release the work in stages (Create first then Edit and other improvements later) however unlike

Re: GSoC 2019 - Role Strategy Plugin Performance Improvements - Introduction

2019-05-22 Thread Abhyudaya Sharma
Thanks a lot! I will share it to the users mailing list! Abhyudaya Sharma On Tuesday, 21 May 2019 15:52:42 UTC+5:30, Baptiste Mathus wrote: > > Hello! > > I think that gathering usage is a great idea, but as such you likely > rather want to send this to the users ML: more audience, and more

Re: Pipeline snippet generator: How to format generated snippet text?

2019-05-22 Thread Robert Sandell
You need a config.jelly (and help-field.html) file for your step and the rest should be done for you by magic. /B Den tis 21 maj 2019 kl 22:33 skrev Martin Weber : > Hi all, > > I see the snippet generator prints a nicely formatted code for the withEnv > step. > How can I tell the snippet

Seeking information about create API for Action

2019-05-22 Thread selva vignesh
Hi, I want create API action for my global configuration instead of configuring from UI. Case : I have create GlobalConfiguration for my plugin and config.jelly. I would like to add API for the same class. When trigger the API with mentioned Param, class should get invoked. Can anyone