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
3
votes
1 answer

Jenkins jacoco plugin

I noticed that the jacoco plugin for jenkins whitout sonar is released, my question is how do I make the configuration in my pom.xml? I have made the jacoco.exec but how can I use the jacoco plugin to make the .xml file? I found it on github(Jacoco…
MSA
  • 2,502
  • 2
  • 22
  • 35
3
votes
1 answer

Resource mange external nodes in Jenkins for tests

My problem is that I have code that need a rebooted node. I have many long running Jenkins test jobs that needs to be executed on rebooted nodes. My existing solution is to define multiple "proxy" machines in Jenkins with the same label…
3
votes
1 answer

How to configure Jenkins Cobertura plugin to monitor specific packages?

My project has a number of packages ("models", "controllers", etc.). I've set up Jenkins with the Cobertura plugin to generate coverage reports, which is great. I'd like to mark a build as unstable if coverage drops below a certain threshold, but…
Marc
  • 767
  • 6
  • 18
3
votes
1 answer

Jenkins skip SCM on parameter

Does anyone have an idea on how to make a job skip the SCM step on command (parameter)? I want to be able to trigger the job and use the existing view (ClearCase in my case, but can be an SVN working copy) to run the build on. The motivation for…
Eldad Assis
  • 10,464
  • 11
  • 52
  • 78
3
votes
2 answers

Jenkins Git plugin: git describe cannot describe anything

I am using the Git Plugin of Jenkins ans use Douglas Creager's get_git_version script. This uses git describe to get some sensible version for python modules. Usually this creates something like 0.1-11-g80fe130, but on jenkins I get: + git…
Jasper van den Bosch
  • 3,169
  • 4
  • 32
  • 55
3
votes
2 answers

getting error Reason: Not a v4.0.0 POM. for project org.kohsuke.stapler:maven-stapler-plugin trying to build slideshow-plugin

When i try to build (mvn) the slide-show plugin, i get error: (see detaied stdout below) mvn -e + Error stacktraces are turned on. [INFO] Scanning for projects... [WARNING] POM for 'org.kohsuke.stapler:maven-stapler-plugin:pom:1.15:runtime' is…
kamal
  • 9,637
  • 30
  • 101
  • 168
2
votes
1 answer

Jenkins CVS plugin does not detect changes

We've been running Jenkins 1.451 and 1.454 on Windows XP against a CVS repository for a few weeks now, without any problems. The CVS plugin (v1.6) was using the local cvsnt install. We've since upgraded the CVS plugin to version 2.1 this morning and…
Spiff
  • 2,266
  • 23
  • 36
2
votes
1 answer

Browser Automations ( using Webdriver ) when running from Jenkins are running as Process but not visibl

Details : - Developed a test automation framework using Webdriver and TestNG - Using ANT as triggering tool to drive browser automations. This is working fine, I could see Browser getting opened and see all the navigations - Setup Jenkins on my…
2
votes
1 answer

Jenkins - discard/keep artifacts of a parameterized build

In Jenkins (or Hudson), I set up a pipeline of parameterized jobs, say A -> B, that copy artifacts from each other using the Copy Artifact Plugin. All jobs use the same parameter, e.g. the target platform. Each job is set to discard old builds and…
2
votes
3 answers

How to generate Selenium HTML Report in Jenkins?

I created selenium test cases using TestNG. After that I created testng.xml and ran all classes parallely. Now the problem is to generate Selenium HTML Report in Jenkins. I exactly have to do that is mentioned in this link. For that how to…
nand
  • 117
  • 1
  • 9
2
votes
1 answer

Jenkins build promotion: How do I get the build id of the build I want to promote?

It seems that, when doing a build promotion in Jenkins using the Promoted Builds Plugin, it generates a new BUILD_ID environment variable. Is there a way, or a plugin that lets you access the current BUILD_ID of the build you are trying to…
stuff22
  • 1,662
  • 4
  • 24
  • 42
2
votes
2 answers

Uploading files from last svn revision to SFTP in Jenkins CI

I am configuring Jenkins job for uploading files from Subversion to SFTP. Publish Over SSH is doing quite well, but it uploads all files on every build. For some projects we have thousands of files and upload cost more than 1 hour so that's not an…
Georgi
  • 320
  • 4
  • 18
2
votes
1 answer

Why aren't the view tabs showing when my View is the selected view?

I made a View plugin for Jenkins: public class PipelineDashboard extends View { ... } And made my resources/my.package.PipelineDashboard package with the configure-entries.jelly and main.jelly files. Here's my configure-entries.jelly file: …
Joel
  • 16,474
  • 17
  • 72
  • 93
2
votes
1 answer

Jenkins plugins in jruby, can't get it to work

I've tried to get this to work on several operating systems (Windows 7, OS X and Ubuntu) and I'm about to give up on this. I've followed the guide on https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+plugin+development+in+Ruby On Windows 7, bundle…
Chr1stensen
  • 76
  • 2
  • 13
2
votes
0 answers

Publish Over CIFS Plugin in Jenkins

I am using Publish over CIFS Plugin. I have set up the Test Configuration and it gives me success messages. I am using it under Post build step in job as “Send build artifact to a Windows share”. Build Results My Job Configuration: System…