Re: Adoption of dtkit-plugin

2019-04-11 Thread Oleg Nenashev
OK, it should be fixed now. It seems I messed up the original ChatOps requests On Wednesday, April 10, 2019 at 6:10:59 PM UTC+3, Nikolas Falco wrote: > > No write access yet > > Il giorno lunedì 8 aprile 2019 16:10:58 UTC+2, Oleg Nenashev ha scritto: >> >> Hi, >> >> It should be fixed now.

Re: Third party dependencies, APIs, and Jenkins: Proposals

2019-04-11 Thread Jesse Glick
On Wed, Apr 10, 2019 at 6:44 PM Stephen Connolly wrote: > If the “classboxed” dependencies have scope=provided then they shouldn’t be > transitive and you could leave them unshaded. True. `war/pom.xml` would need to be massaged to bundle them. > The JenkinsRule would just need to setup the

Re: Third party dependencies, APIs, and Jenkins: Proposals

2019-04-11 Thread Jesse Glick
On Thu, Apr 11, 2019 at 4:10 AM Ullrich Hafner wrote: > [shading does not] prevent developers to use the shaded classes, they are > still there, just with another package name True, but the Jenkins plugin class loader can refuse to serve such classes, so any such mistake would immediately fail

Calling Java from jenkinsfile to parse XML

2019-04-11 Thread Matt Q
I am trying to call some Java code in our plugin from the jenkinsfile to parse XML (I have been able to parse it in the jenkinsfile but would like to abstract the implementation from the pipeline). I am passing an XML file to a method that works fine when this file is passed from within the