Re: Jenkins Plugin upgrade from 1.454 to 1.651.3

2019-02-06 Thread Steffen Elste
Hi, the latest 1.x release of this artefact is 1.645: http://repo.jenkins-ci.org/releases/org/jenkins-ci/plugins/plugin/ Cheers, Steffen Am Mittwoch, 6. Februar 2019 08:45:55 UTC+1 schrieb Panagiotis Labrou: > > Hi there, > > > > We have a few custom Jenkins plugins developed for version

Re: Building Jenkins in Eclipse

2019-01-03 Thread Steffen Elste
Hi, after i modified the pom.xml of the *cli* project to include org.codehaus.mojo build-helper-maven-plugin 3.0.0 add-source generate-sources add-source

Re: Building Jenkins in Eclipse

2019-01-03 Thread Steffen Elste
Hi Baptiste, i did a quick check - removed the projects from the workspace, deleted all Eclipse-related files and folders, then bumped the version of the plugin up to 3.0.0 - but i still get the compile error, the build path is not set. Can You give me a hint on how to go about updating the

Re: Building Jenkins in Eclipse

2019-01-03 Thread Steffen Elste
Hi, gave it at try this morning. I downloaded the current 'Eclipse IDE for Enterprise Java Developers' (the smaller 'Eclipse IDE for Java Developers' should do as well). Cloned the repository - without importing any projects in the first place - then imported 'Existing Maven Projects' into the

Re: How to publishHTML via Shared Library global variable steps?

2017-09-07 Thread Steffen Elste
> > Hello Ann, > we're using the publishHTML step in conjunction with Allure reports - not via a shared library but directly in a pipeline script. Basically identical to your first attempt: publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir:

Re: FindBugs Plugin issue with scripted pipeline

2017-08-25 Thread Steffen Elste
... i've created an issue: JENKINS-46469 Regards, Steffen -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: FindBugs Plugin issue with scripted pipeline

2017-08-25 Thread Steffen Elste
> > Hi, > thanks - i'm not sure if i'm allowed to open an issue (yet) - but i'll get it done over the weekend. Cheers, Steffen -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from

Re: Job DSL: How to Use Credentials Store for authenticationToken

2017-08-25 Thread Steffen Elste
> > Hi, > to a certain extent it depends on how paranoid You allow yourself to get ;-) One solution could be to use indirection, e.g. via the Config File Provider Plugin. Use an arbitrary token in your job description, and in an additional build step access a configuration file to read the

Re: FindBugs Plugin issue with scripted pipeline

2017-08-25 Thread Steffen Elste
> > Hi, > well, the Jenkinsfile for use with declarative pipeline and a Jenkinsfile.scripted for scripted pipeline are in the repository ... i probably should have mentioned this. I had a look at the issue - doesn't really fit as in this case i'm not using a multibranch pipeline. Scripted:

Re: Pipeline - how to have a global config that's accessible from every step?

2017-08-17 Thread Steffen Elste
Hi, You might want to have a closer look at the Config File Provider Plugin - plays nicely with Pipelines and allows for various types of configuration files to be configured (globally). Cheers, Steffen -- You received