Multiple questions on Jenkins plugin repo management

2024-03-20 Thread Stéphane BOBIN
Hello! - I got a PR recently to modernize my plugin (thanks Alex). I now can see multiple GitHub actions running when I push new code to my plugin. - I am puzzled because the PR was done on jenkinsci repo for my plugin (

Re: Error in Javadoc when attempting to publish a new plugin version

2024-03-05 Thread Stéphane BOBIN
Hi Basil! Great, thanks, I will try that  -- Stéphane Le mar. 5 mars 2024 à 18:09, Basil Crow a écrit : > You can reproduce locally by running mvn clean verify -Pjenkins-release > and on CI by enabling incrementals > . >

Error in Javadoc when attempting to publish a new plugin version

2024-03-05 Thread Stéphane BOBIN
Hi all! Sorry, it is probably a newbie question. I was just attempting to publish a new version of my plugin (mvn release:prepare release:perform) and I got plenty of errors in the Javadoc I recently added in my code. I didn't have these errors while building and testing (mvn clean install).

Re: Error: Could not find or load main class com.mathworks.polyspace.jenkins.PolyspaceHelpers

2024-03-02 Thread Stéphane BOBIN
Hi Daniel! I like the idea. Do you have some more guidance, please? I found this: https://javadoc.jenkins.io/hudson/tools/ToolInstallation.html. But it does not explain a lot. Can you point me to the doc for the various items you suggest? A big thanks for your help! -- Stéphane BOBIN Le sam. 2

Re: Error: Could not find or load main class com.mathworks.polyspace.jenkins.PolyspaceHelpers

2024-03-01 Thread Stéphane BOBIN
to call utilities from the plugin? Thanks for your help! -- Stéphane BOBIN Le ven. 1 mars 2024 à 19:26, Basil Crow a écrit : > This seems to assume the build is running on the built-in node, > something we no longer recommend: > > > https://www.jenkins.io/doc/book/security/contr

Error: Could not find or load main class com.mathworks.polyspace.jenkins.PolyspaceHelpers

2024-03-01 Thread Stéphane BOBIN
Hi! I develop the Mathworks Polyspace plugin: https://github.com/jenkinsci/mathworks-polyspace-plugin. I have some helpers in my plugin to allow the users to call some utilities in the plugin from their script. It was working since the beginning but I recently realized it was not anymore.