Questions tagged [jenkins-plugins]

Jenkins is an open source continuous integration software. It is extensible by Plugins which are developed by the core team, users, and developers. There are currently 1300+ plugins available for Jenkins.

The complete list of plugins is available here.

What questions should have this tag?

Any questions about Jenkins plugins, plugin development, and plugin use may be tagged with jenkins-plugins.

To learn more about Jenkins plugins:

Visit "Extend Jenkins" and "Customize Jenkins"

7181 questions
22
votes
1 answer

Maven installation settings not showing in Jenkins

I have just installed Jenkins 2.6 (as a fresh install) but I can't seem to find the Maven installation options. Previously I would just be able to go to Jenkins configuration and in the Maven section there would be an option for MAVEN_HOME and to…
thewire247
  • 795
  • 1
  • 9
  • 24
22
votes
8 answers

Search through console output of a Jenkins job

I have a Jenkins job with 100+ builds. I need to search through all the builds of that job to find builds that have a certain string in the console output. Is there any plugin for that? How do I do that?
user1550159
  • 1,197
  • 3
  • 19
  • 36
22
votes
3 answers

How to list all unused jenkins plugins?

I am looking for method to check which jenkins plugins are not used. So far I found that I can look for tags in config.xml file with attribute plugin then compare them with the ones listed in plugins directory. But that does not give me complete…
mastier
  • 872
  • 1
  • 10
  • 22
22
votes
2 answers

How to ask for confirmation from User before running a build in Jenkins?

I would like to implement the following in a job : When we click on the "Build" button of a parametrized build, the user will get a prompt/popup asking if they would like to perform the build or not. If, The answer (yes/no) then the build runs -…
Vaibhav
  • 353
  • 1
  • 2
  • 7
22
votes
5 answers

Custom workspace in jenkins

I am not getting the check box to select custom workspace in Jenkins(ver. 1.465) while configuring the job, is there any plugin to get it? After getting check box how to configure (path of workspace)?
Sunil Rk
  • 999
  • 6
  • 12
  • 35
22
votes
6 answers

git plugin for Jenkins fails to clone a repo from local machine. Error code 128

Error: Failed to connect to repository : Command "/usr/bin/git ls-remote -h file:///home/myuser/path/to/project HEAD" returned status code 128: stdout: stderr: fatal: 'home/myuser/path/to/project' does not appear to be a git repository fatal: The…
Vikram
  • 4,162
  • 8
  • 43
  • 65
22
votes
13 answers

Jenkins SMTP TLS

I'm trying to setup Jenkins to use our company's SMTP server to email build notifications. We are using TLS as the encryption method on port 587. I can not seem to get the email notification to work properly though. Here is my…
UWSkeletor
  • 921
  • 2
  • 7
  • 14
21
votes
8 answers

Jenkins: Display last console output on project page

When viewing a project in Jenkins, I'd like to see the last console output displayed on the project page. This satisfies two needs: I most often just want to see what the output of the build was; clicking through to the last console output seems…
Jon Cram
  • 16,609
  • 24
  • 76
  • 107
21
votes
6 answers

No available plugins - Jenkins

I have installed a fresh jenkins on my amazon ec2 micro instance but when I access the plugin manager, I don't have any plugin available. What's wrong? I used this guide to…
dextervip
  • 4,999
  • 16
  • 65
  • 93
21
votes
2 answers

Jenkins throwing error: jenkins.model.InvalidBuildsDir: ${ITEM_ROOTDIR}/builds does not exist and probably cannot be created

i updated Jenkins from apt command line on Ubuntu,i did sudo apt upgrade jenkins immediately after update i am getting this: jenkins.model.InvalidBuildsDir: ${ITEM_ROOTDIR}/builds does not exist and probably cannot be created at…
chandra
  • 693
  • 3
  • 8
  • 21
21
votes
3 answers

Where to set -Dorg.jenkinsci.plugins.durabletask.BourneShellScript.HEARTBEAT_CHECK_INTERVAL=300

I am getting errors from the durable task plugin when I run my pipeline dsl jenkins job. The error message suggests that I should use: -Dorg.jenkinsci.plugins.durabletask.BourneShellScript.HEARTBEAT_CHECK_INTERVAL=300 This is the error I…
user9711638
  • 231
  • 1
  • 2
  • 5
21
votes
6 answers

Active Choices Reactive Reference Parameter in jenkins pipeline

I'm using the Active Choices Reactive Reference Parameter plugin in a dsl job here the code parameters { activeChoiceParam('choice1') { description('select your choice') …
Ibtissam
  • 509
  • 3
  • 8
  • 21
21
votes
7 answers

Jenkins Git integration - How to disable SSL certificate validation

I am getting the below error while creating a job from Jenkins. How do I disable certificate validation in Jenkins? From Git Bash I can use git config --global http.sslVerify false command to disable it, but not sure how to use it from…
Sona Shetty
  • 997
  • 3
  • 18
  • 41
21
votes
3 answers

Jenkins Docker container with root permissions?

I want to build a jenkins docker container with root permissions so that i can us apt-get feature to install gradle. I am using this command to run jenkins on 8080 port but i also want to add gradle as enviornment variable : docker run -p 8080:8080…
Sidharth
  • 1,402
  • 2
  • 16
  • 37
21
votes
2 answers

How can I perform HTTP POST requests from within a Jenkins Groovy script?

I need to be able to create simple HTTP POST request during our Jenkins Pipeline builds. However I cannot use a simple curl sh script as I need it to work on Windows and Linux nodes, and I don't wish to enforce more tooling installs on nodes if I…
S.Richmond
  • 11,412
  • 6
  • 39
  • 57