Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.19 KB

IntellijIDEA.md

File metadata and controls

38 lines (33 loc) · 1.19 KB

Configure your IDE

Set up your workspace environnement using JetBrains
You should use Goland Jetbrains

Download the package from
https://www.jetbrains.com/idea/download/download-thanks.html?platform=windows

In the IDE

Go to File -> Settings -> Plugins and install Jenkins Control Plugin Restart Goland You got a right-hand side tab named Jenkins
Click on the wrench to get the configuration dialog window Fill Server Address, username, passwords, crumb data , jenkins version ver 2.x Tick use green color.... Jenkins_config

API token

go to Copy in crumb data the API token previously saved in your notepad.

Remove CSRF failed check message

Go to Manage Jenkins -> Script console and run the following groovy script.

import jenkins.model.Jenkins
def instance = Jenkins.instance
instance.setCrumbIssuer(null)

Result

Jenkins_screen

Troubleshooting

if you have a message URL is mal/formed
Go to Jenkins -> manage Jenkins-> Configuration system
Go to Jenkins Location
and remove the trailing /
Press save
and test again