Re: Third party library in jenkins plugin

2020-01-24 Thread Jesse Glick
On Fri, Jan 24, 2020 at 10:49 AM silkperformer wrote: > Yes, but I have to implement a listener from this library. You can split your plugin into three JARs (e.g., Maven modules in a reactor): ยท Some interfaces encapsulating how you wish to work with the library but without referring to any of

Re: What is the best approach for mutually exclusive permissions - re: proposed Jenkins.CONFIGURE and Jenkins.SYSTEM_READ permissions

2020-01-24 Thread James Nord
On Wednesday, January 22, 2020 at 1:24:05 AM UTC, Michael Cirioli wrote: > > (moving this discussion from https://github.com/jenkinsci/jep/pull/261 in > order to have more visibility) > > JEP-223 : "Limited Administer" permission > and

Re: JEPs & BDFL ~ KK

2020-01-24 Thread Kohsuke Kawaguchi
A part of the original JEP was to design an aspirational collaboration process that we wanted to promote back then, and use the power of the process to achieve that. I feel like the situation and the priority has changed a little since then. What I mentioned to a few people on various occasions

Re: Third party library in jenkins plugin

2020-01-24 Thread silkperformer
Yes, but I have to implement a listener from this library. -- Sent from: http://jenkins-ci.361315.n4.nabble.com/Jenkins-dev-f387835.html -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving

Re: Third party library in jenkins plugin

2020-01-24 Thread Jesse Glick
On Fri, Jan 24, 2020 at 10:36 AM silkperformer wrote: > I need to use a library installed on slave. > > Till JDK8 I used a hack to load this library: Do not do that in any version. > Is there a way to add a jar installed on the slave to the classpath No; you may create a _new_ `URLClassLoader`

Third party library in jenkins plugin

2020-01-24 Thread silkperformer
I need to use a library installed on slave. Till JDK8 I used a hack to load this library: ClassLoader clsLoader = ClassLoader.getSystemClassLoader(); if (URLClassLoader.class.isInstance(clsLoader)) { File ff = new File(pahtToJarFile.jar); Method method =

Re: Jenkins 2.217 out-of-order release post-mortem

2020-01-24 Thread Jesse Glick
On Thu, Jan 23, 2020 at 6:03 PM Oleg Nenashev wrote: > If you see any other changes which should land in the weekly, let's discuss > them in this thread. https://issues.jenkins-ci.org/browse/JENKINS-60857 : certificates in Jetty -- You received this message because you are subscribed to the

Re: Jenkins Plugin pom (future of)

2020-01-24 Thread James Nord
Hi all, The following versions of the jenkins-bom where all garbage and have been * *deleted** from the repository and republished * 2.164.1 * 2.164.2 * 2.164.3 * 2.176.1 * 2.176.2 * 2.176.3 * 2.176.4 if you have already tried to use one of these versions then you will need to remove the

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

2020-01-24 Thread Oleg Nenashev
Hi All, Just in case somebody is interested, today we will have an online meetup about Dependabot in Jenkins. https://www.meetup.com/Jenkins-online-meetup/events/267995271/ Please join us if you are interested! Best regards, Oleg On Thursday, July 25, 2019 at 7:45:33 PM UTC+2, Jesse Glick