I set up a Jenkins(all recommented plugins) on a plain WIN10-VM to test if the Blue Ocean plugin is an option for me and my colleagues to simply build setups. In Addition I set up a local Git-Server (Bonobo) to store the Jenkinsfile for BlueOcean (SVN is actually not supported).
I created a new pipeline in Blue Ocean. As one of the first step I wanted to checkout the source via subversion. I created a subversion step and filled in the url of the repository and checked the poll option. Now I need to provide the credentials for the svn-repro but I dont know how to do it.
Is it even possible to use the svn-plugin in BlueOcean or is the only way to use a script to checkout from svn in BlueOcean?
What I tried so far:
Accepting https-Certificate as SYSTEM in SYSTEM-CMD
Added the SVN-Credentials to the Jenkins/Pipeline
Tried to set the credentials as suggested in (How to set up SVN credentials in Jenkins?)
I found the answer myself after getting some hints and tipps from several sites:
stage('Checkout with SVN'){
steps {
***Paste here the code snippet from the generator (Step 1)***
}
}