Re: Managing clouds UI in Jenkins

2023-01-19 Thread John Patrick
I was needing to fix configure within those pages only a few hour ago. Some way of knowing config is valid/active/working would be useful Also grouping or highlighting nodes which are in the same cloud config would be useful. I had two cloud configurations, and several cloud agents showing, but it

Re: Problematic releases

2022-11-27 Thread John Patrick
I think you need to edit Dependabot something like this https://github.com/jenkinsci/crowd2-plugin/pull/138 PR. Specifically ignore '*-QR*', might be able to be added into the existing, but i'm not sure without trying it for real. Dependabot will see anything in the repo's configured, as all the

Re: webhook plugin development for multibranchPipelineJob

2022-02-09 Thread John Patrick
New day and fresh eyes and have sorted it, now PR raised https://github.com/jenkinsci/gogs-webhook-plugin/pull/75. Cheers, John On Wed, 9 Feb 2022 at 07:21, 'Daniel Beck' via Jenkins Developers < jenkinsci-dev@googlegroups.com> wrote: > > > On Wed, Feb 9, 2022 at 1:07 AM John P

Re: webhook plugin development for multibranchPipelineJob

2022-02-08 Thread John Patrick
by: hudson.util.CyclicGraphDetector$CycleDetectedException: Cycle detected: Plugin:credentials -> Plugin:external-monitor-job -> Plugin:matrix-auth -> Plugin:cloudbees-folder -> Plugin:credentials Thoughts? Cheers, John On Tue, 8 Feb 2022 at 20:49, John Patrick wrote: > Thanks Ullrich and Mark, > Will dige

Re: webhook plugin development for multibranchPipelineJob

2022-02-08 Thread John Patrick
Thanks Ullrich and Mark, Will digest those and might be back later in a week or two probably. Cheers, John On Tue, 8 Feb 2022 at 19:40, Mark Waite wrote: > The advice from Ullrich Hafner is very good. You'll make much better > progress if you modernize the plugin then let the more

webhook plugin development for multibranchPipelineJob

2022-02-08 Thread John Patrick
Hi, I'm looking adding support for `multibranchPipelineJob` to a webhook plugin for jenkins. Using `mvn hpi:run` it boots a jenkins v1.625.3 instance and I have been able to debug the current plugin to see it working. But that jenkins instance lacks support for 'multibranchPipelineJob'. So I'm

Job DSL Code Quality Columns PR Reviews

2021-09-29 Thread John Patrick
Hi, Is someone able to review these and assist me in getting the pr green and merged in. https://github.com/jenkinsci/job-dsl-plugin/pull/1236 https://github.com/jenkinsci/job-dsl-plugin/pull/1237 Is @jenkinsci/code-reviewers the correct reviewers team, as it was cc'ed in about 6 months ago,

PR review request for view column definition updates

2021-02-25 Thread John Patrick
Hi, I've raised two PR's, could some give them a once over to see if they are on the right lines to add code coverage and total issues for a project onto a view, without needing to use the configure option. https://github.com/jenkinsci/job-dsl-plugin/pull/1236

Re: Byte code manipulation of descriptor classes?

2021-01-06 Thread John Patrick
abstract class A { > public void method() { > > } > } > > public class B extends A { > > } > > > Output of javap: > > Compiled from "B.java" > public class io.jenkins.plugins.analysis.warnings.B extends > io.jenkins.plugins.analysis.warnings.A { &g

Re: Byte code manipulation of descriptor classes?

2021-01-05 Thread John Patrick
That sounds like standard java to me. If ConcreteDescriptor does not contain method() then the 1st method in the inheritance hierarchy will be executes and from your code above that would be BaseDescriptor.method. That is how java is designed to work. But if you are saying you have a method in

Re: Create plugins that require oracle jdbc diver

2020-09-13 Thread John Patrick
Oracle does have a maven repo, so you can add the repository into your pom, but anyone/anything wanting to build it would need to add something into their settings.xml inorder to download those dependencies. As per this guide