Re: Librabry shading example

2020-08-17 Thread 'Gavin Mogan' via Jenkins Developers
> But can't seem to get it to work. A question online/async question should always include the 3 items: What did you try (sorta provided)? What happened? What did you expect to happen? On Mon, Aug 17, 2020 at 5:35 AM Goyot, Martin wrote: > Hi there, > > I have an issue with a dependency on m

Re: Password-like file parameter type?

2020-08-17 Thread Jakub Bocheński
For now I just use this script to delete the file after build // do not store the secret files on master's disk systemGroovyCommand(''' import java.io.File; new File(build.getRootDir(), "fileParameters").deleteDir(); ''') On Mon, Aug

Re: Adopt database plugin request

2020-08-17 Thread David van Laatum
Sure Sent from my iPad > On 17 Aug 2020, at 4:52 pm, Tim Jacomb wrote: > >  > Hi > > I would like to adopt https://plugins.jenkins.io/database/ > > I'm working on pluggable storage for the Junit plugin and would like to > refresh the plugin and make some minor improvements. > > Thanks > Ti

Password-like file parameter type?

2020-08-17 Thread kuba.bo...@gmail.com
Jenkins has file and password parameter types, but I'm looking for a combination of the two. [image: Screenshot_20200817_160840.png] My problem with file parameter is that the file is stored in the build and can be retrieved later. Is there some parameter implementation that would handle files

Librabry shading example

2020-08-17 Thread Goyot, Martin
Hi there, I have an issue with a dependency on my plugin and would like to shade it. I've found the docs here: https://www.jenkins.io/doc/developer/plugin-development/dependencies-and-class-loading/#shading But can't seem to get it to work. Right now I'm trying on Guava, I have this in my sectio

Adopt database plugin request

2020-08-17 Thread Tim Jacomb
Hi I would like to adopt https://plugins.jenkins.io/database/ I'm working on pluggable storage for the Junit plugin and would like to refresh the plugin and make some minor improvements. Thanks Tim -- You received this message because you are subscribed to the Google Groups "Jenkins Developer

Re: Remoting help - CannotResolveClassException

2020-08-17 Thread Tim Jacomb
I was able to make it work by marking AbstractRemoteDatabase.java as Serialiseable and passing the instance rather than doing the Xstream serialise to xml and deserial