aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2016-10-11 22:15:42 +0300
committerIgor Pashev <pashev.igor@gmail.com>2016-10-11 22:19:48 +0300
commit592dee8bef92debede3724bf5ddbf8249c30c488 (patch)
treeff712306134e04625938ef112a3a3f8084c65c3d
parent1a4d734a4110a05e08b88b539b7ea4939d2d1c36 (diff)
downloadnixsap-592dee8bef92debede3724bf5ddbf8249c30c488.tar.gz
Added Jenkins package composable with plugins
-rw-r--r--modules/pkgs/jenkins.nix1
-rw-r--r--modules/pkgs/jenkinsWithPlugins/default.nix97
-rw-r--r--modules/pkgs/jenkinsWithPlugins/fromBase64.nix74
-rw-r--r--modules/pkgs/jenkinsWithPlugins/update-center.actual.json42938
4 files changed, 43110 insertions, 0 deletions
diff --git a/modules/pkgs/jenkins.nix b/modules/pkgs/jenkins.nix
new file mode 100644
index 0000000..46cb06a
--- /dev/null
+++ b/modules/pkgs/jenkins.nix
@@ -0,0 +1 @@
+{ jenkinsWithPlugins }: jenkinsWithPlugins (_: [])
diff --git a/modules/pkgs/jenkinsWithPlugins/default.nix b/modules/pkgs/jenkinsWithPlugins/default.nix
new file mode 100644
index 0000000..4a8e0ce
--- /dev/null
+++ b/modules/pkgs/jenkinsWithPlugins/default.nix
@@ -0,0 +1,97 @@
+{ pkgs, lib, stdenv, fetchurl }:
+
+/*
+
+ This is a function that should return a list of plugins to be included in the WAR.
+ Example: pkgs.jenkinsWithPlugins (plugins: [ plugins.BlameSubversion ... ])
+
+ Non-optional dependencies, if any, are automatically added. Optional
+ dependencies are ignored, you have to added them explicitly.
+
+*/
+
+pluginsFunc:
+
+let
+
+ inherit (builtins) fromJSON readFile;
+ fromBase64 = import ./fromBase64.nix;
+
+ inherit (lib)
+ concatMapStrings filter flatten unique ;
+
+ /*
+ jq to make it human readable:
+ curl https://updates.jenkins-ci.org/current/update-center.actual.json | jq . > update-center.actual.json
+ */
+
+ # capture into nix store to track changes:
+ updateCenter = fromJSON (readFile "${./update-center.actual.json}");
+
+ core = with updateCenter.core; fetchurl {
+ inherit url;
+ name = "jenkins-${version}-core.war";
+ sha1 = fromBase64 sha1;
+ };
+
+ plugin = p: fetchurl {
+ inherit (p) url;
+ sha1 = fromBase64 p.sha1;
+ name = "jenkins-plugin-${p.name}-${p.version}.hpi";
+ };
+
+ pluginsPack = list: stdenv.mkDerivation {
+ name = "jenkins-plugins-pack";
+ phases = [ "installPhase" ];
+ installPhase = ''
+ mkdir -p $out
+ ${concatMapStrings (p: ''
+ ln -svf "${plugin p}" "$out/${p.name}.hpi"
+ '') list}
+ '';
+ };
+
+ requestedPlugins =
+ let
+ explicit = pluginsFunc updateCenter.plugins;
+ deps = map (p: map (d: updateCenter.plugins.${d.name})
+ (filter (d: ! d.optional) p.dependencies)
+ ) explicit;
+ in unique ( explicit ++ flatten deps );
+
+ pack = stdenv.mkDerivation rec {
+ name = "jenkins-${updateCenter.core.version}+plugins.war";
+
+ # https://wiki.jenkins-ci.org/display/JENKINS/Bundling+plugins+with+Jenkins
+ build-xml = pkgs.writeXML "jenkins.build.xml"
+ ''
+ <?xml version="1.0" encoding="UTF-8"?>
+ <project basedir="." name="Jenkins-Bundle">
+ <target name="bundle" description="Merge plugins into jenkins.war">
+ <zip destfile="jenkins.war" level="9">
+ <zipfileset src="${core}" />
+ <zipfileset dir="${pluginsPack requestedPlugins}" prefix="WEB-INF/plugins" />
+ </zip>
+ </target>
+ </project>
+ '';
+
+ meta = with stdenv.lib; {
+ description = "An extendable open source continuous integration server";
+ homepage = http://jenkins-ci.org;
+ license = licenses.mit;
+ platforms = platforms.all;
+ };
+
+ buildInputs = with pkgs; [ ant jdk ];
+
+ phases = [ "buildPhase" "installPhase" ];
+ buildPhase = ''
+ ln -sf ${build-xml} build.xml
+ ant bundle
+ '';
+ installPhase = "cp jenkins.war $out";
+ };
+
+in if requestedPlugins == [] then core else pack
+
diff --git a/modules/pkgs/jenkinsWithPlugins/fromBase64.nix b/modules/pkgs/jenkinsWithPlugins/fromBase64.nix
new file mode 100644
index 0000000..3130f9c
--- /dev/null
+++ b/modules/pkgs/jenkinsWithPlugins/fromBase64.nix
@@ -0,0 +1,74 @@
+strBase64:
+
+let
+
+ inherit (builtins)
+ concatStringsSep genList stringLength substring trace ;
+
+ base64 = {
+ # n=0; for l in {A..Z} {a..z} {0..9} + /; do printf '"%s" = %2s; ' $l $n; (( n++ )); (( n % 8 )) || echo; done
+ "A" = 0; "B" = 1; "C" = 2; "D" = 3; "E" = 4; "F" = 5; "G" = 6; "H" = 7;
+ "I" = 8; "J" = 9; "K" = 10; "L" = 11; "M" = 12; "N" = 13; "O" = 14; "P" = 15;
+ "Q" = 16; "R" = 17; "S" = 18; "T" = 19; "U" = 20; "V" = 21; "W" = 22; "X" = 23;
+ "Y" = 24; "Z" = 25; "a" = 26; "b" = 27; "c" = 28; "d" = 29; "e" = 30; "f" = 31;
+ "g" = 32; "h" = 33; "i" = 34; "j" = 35; "k" = 36; "l" = 37; "m" = 38; "n" = 39;
+ "o" = 40; "p" = 41; "q" = 42; "r" = 43; "s" = 44; "t" = 45; "u" = 46; "v" = 47;
+ "w" = 48; "x" = 49; "y" = 50; "z" = 51; "0" = 52; "1" = 53; "2" = 54; "3" = 55;
+ "4" = 56; "5" = 57; "6" = 58; "7" = 59; "8" = 60; "9" = 61; "+" = 62; "/" = 63;
+ };
+
+ quartet_to_int24 = q:
+ # https://en.wikipedia.org/wiki/Base64
+ let
+ s = n: assert (stringLength q == 4); substring (3 - n) 1 q;
+ d = n: base64.${s n};
+ in if s 0 != "=" then
+ 64 * (64 * (64 * (d 3) + (d 2)) + (d 1)) + (d 0)
+ else if s 1 != "=" then
+ 64 * (64 * (64 * (d 3) + (d 2)) + (d 1)) / 256 # right shift by 8 bits
+ else
+ 64 * (64 * (64 * (d 3) + (d 2))) / 65536 # right shift by 16 bits
+ ;
+
+ int24_to_hex = i: # 16777215 (0xFFFFFF, 2^24-1) max
+ let
+ hex = "0123456789abcdef";
+ toHex = n:
+ let
+ d = n / 16;
+ r = n - 16 * d;
+ in "${if d != 0 then toHex d else ""}${substring r 1 hex}";
+ in assert (0 <= i && i <= 16777215); toHex i;
+
+ quartets = s:
+ let
+ l = stringLength s;
+ h = substring 0 4 s;
+ t = substring 4 (l - 4) s;
+ in [h] ++ (if t != "" then quartets t else []);
+
+
+ quartet_to_hex = q: # base64 quartet into hex with padding
+ let
+ i = quartet_to_int24 q;
+ h = int24_to_hex i;
+ s = if substring 2 1 q == "=" then 1
+ else if substring 3 1 q == "=" then 2
+ else 3; # number of bytes
+ w = s * 2; # number of hexadecimal digits
+ filler = concatStringsSep "" (genList (_: "0") (w - stringLength h));
+ in "${filler}${h}";
+
+/*
+
+ FIXME: usage of library functions like concatMapString
+ causes very cryptic errors:
+
+ # nix-instantiate --eval --expr 'import ./fromBase64.nix "kjOzmCPxyw0bPciMsGSh5q+bT9g="' --show-trace
+ error: while evaluating anonymous function at .../fromBase64.nix:1:1, called from (string):1:18:
+ value is a function while a set was expected, at .../fromBase64.nix:3:4
+
+*/
+
+in concatStringsSep "" (map quartet_to_hex (quartets strBase64))
+
diff --git a/modules/pkgs/jenkinsWithPlugins/update-center.actual.json b/modules/pkgs/jenkinsWithPlugins/update-center.actual.json
new file mode 100644
index 0000000..1d0d18b
--- /dev/null
+++ b/modules/pkgs/jenkinsWithPlugins/update-center.actual.json
@@ -0,0 +1,42938 @@
+{
+ "connectionCheckUrl": "http://www.google.com/",
+ "core": {
+ "buildDate": "Oct 02, 2016",
+ "name": "core",
+ "sha1": "4+os2wIhw0u6bjV3BHCqdhyd91s=",
+ "url": "http://updates.jenkins-ci.org/download/war/2.24/jenkins.war",
+ "version": "2.24"
+ },
+ "id": "default",
+ "plugins": {
+ "AdaptivePlugin": {
+ "buildDate": "Mar 03, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "magnayn",
+ "email": "nigel.magnay@gmail.com",
+ "name": "Nigel Magnay"
+ }
+ ],
+ "excerpt": "This (experimental) plug-in exposes the jenkins build extension points (SCM, Build, Publish) to a groovy scripting environment that has some DSL-style extensions for ease of development.",
+ "gav": "jenkins:AdaptivePlugin:0.1",
+ "labels": [
+ "misc",
+ "buildwrapper"
+ ],
+ "name": "AdaptivePlugin",
+ "releaseTimestamp": "2011-03-03T11:49:24.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "il8z91iDnqVMu78Ghj8q2swCpdk=",
+ "title": "Jenkins Adaptive DSL Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/AdaptivePlugin/0.1/AdaptivePlugin.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Adaptive+Plugin"
+ },
+ "AnchorChain": {
+ "buildDate": "Mar 11, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "direvius",
+ "email": "direvius@gmail.com",
+ "name": "Alexey Lavrenuke"
+ }
+ ],
+ "excerpt": "This plugin allows you to add some links from a text file to the sidebar at every build. ",
+ "gav": "org.jenkins-ci.plugins:AnchorChain:1.0",
+ "labels": [
+ "report"
+ ],
+ "name": "AnchorChain",
+ "releaseTimestamp": "2012-03-11T17:59:06.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "rY1W96ad9TJI1F3phFG8X4LE26Q=",
+ "title": "AnchorChain",
+ "url": "http://updates.jenkins-ci.org/download/plugins/AnchorChain/1.0/AnchorChain.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AnchorChain+plugin"
+ },
+ "ApicaLoadtest": {
+ "buildDate": "Feb 15, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "andrasnemes",
+ "email": "andras.nemes@apicasystem.com",
+ "name": "Andras Nemes"
+ }
+ ],
+ "excerpt": "The plugin enables&amp;nbsp;<a href='https://www.apicasystem.com/'>Apica</a>&amp;nbsp;Loadtest customers to run automatic load tests as part of a Jenkins build process. ",
+ "gav": "com.apica:ApicaLoadtest:1.10",
+ "labels": [
+ "builder"
+ ],
+ "name": "ApicaLoadtest",
+ "previousTimestamp": "2016-01-18T15:20:32.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2016-02-15T15:54:36.00Z",
+ "requiredCore": "1.610",
+ "scm": "github.com",
+ "sha1": "nyD1O51FoMhXIN1fVhHvzlgiRAg=",
+ "title": "Apica Loadtest",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ApicaLoadtest/1.10/ApicaLoadtest.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Apica+Loadtest+Plugin"
+ },
+ "BlameSubversion": {
+ "buildDate": "Jan 04, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tangjinou",
+ "email": "tangjinou@gmail.com",
+ "name": "Developer Guy"
+ }
+ ],
+ "excerpt": "This plug-in provides utilities for getting svn info from upstream job to downstream job",
+ "gav": "org.jvnet.hudson.plugins:BlameSubversion:1.200",
+ "labels": [
+ "scm"
+ ],
+ "name": "BlameSubversion",
+ "previousTimestamp": "2010-11-01T20:15:06.00Z",
+ "previousVersion": "1.25",
+ "releaseTimestamp": "2013-01-04T17:34:40.00Z",
+ "requiredCore": "1.355",
+ "scm": "github.com",
+ "sha1": "9tDzZ/EpFwOi4aKFTyhF4UqQU/Y=",
+ "title": "Hudson Blame Subversion Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/BlameSubversion/1.200/BlameSubversion.hpi",
+ "version": "1.200",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BlameSubversion"
+ },
+ "BlazeMeterJenkinsPlugin": {
+ "buildDate": "Sep 26, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "zmicerkashlach",
+ "email": "dzmitry.kashlach@blazemeter.com",
+ "name": "Zmicer Kashlach"
+ }
+ ],
+ "excerpt": "This plugin allows you to load test your site using <a href='http://blazemeter.com'>BlazeMeter</a>. Jenkins will show a report generated by the test. It includes the feature of setting the final build status as good, unstable or failed, based on the reported error percentage, and response time.",
+ "gav": "com.blazemeter.plugins:BlazeMeterJenkinsPlugin:2.6",
+ "labels": [
+ "builder"
+ ],
+ "name": "BlazeMeterJenkinsPlugin",
+ "previousTimestamp": "2016-08-16T15:04:18.00Z",
+ "previousVersion": "2.5.2",
+ "releaseTimestamp": "2016-09-26T15:16:32.00Z",
+ "requiredCore": "1.576",
+ "scm": "github.com",
+ "sha1": "7+/iumxO/qbu/WLv080gNOFDyig=",
+ "title": "BlazeMeter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/BlazeMeterJenkinsPlugin/2.6/BlazeMeterJenkinsPlugin.hpi",
+ "version": "2.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BlazeMeter+Plugin"
+ },
+ "CFLint": {
+ "buildDate": "Dec 22, 2015",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.75"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ryaneberly",
+ "email": "ryaneberly@gmail.com",
+ "name": "Ryan Eberly"
+ }
+ ],
+ "excerpt": "Parses CFLint output and displays the results for analysis.",
+ "gav": "org.jvnet.hudson.plugins:CFLint:0.5.2",
+ "labels": [
+ "misc"
+ ],
+ "name": "CFLint",
+ "previousTimestamp": "2015-02-02T20:31:30.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2015-12-22T08:13:08.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "14A26d+QNFx07hW7e9nXq+LMFpY=",
+ "title": "CFLint Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/CFLint/0.5.2/CFLint.hpi",
+ "version": "0.5.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CFLint+plugin"
+ },
+ "CustomHistory": {
+ "buildDate": "Jul 01, 2013",
+ "dependencies": [
+ {
+ "name": "parameterized-trigger",
+ "optional": true,
+ "version": "2.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ryg_",
+ "email": "rgrigoryev@gmail.com",
+ "name": "Roman Grigoryev"
+ }
+ ],
+ "excerpt": "Show custom text in scm log manner",
+ "gav": "org.jenkins-ci.plugins:CustomHistory:1.6",
+ "labels": [
+ "report",
+ "scm-related"
+ ],
+ "name": "CustomHistory",
+ "previousTimestamp": "2013-06-25T07:56:22.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2013-07-01T23:01:32.00Z",
+ "requiredCore": "1.495",
+ "scm": "github.com",
+ "sha1": "ynnBM2jWo25ZLDdP3ybBOnV/Pio=",
+ "title": "Custom History",
+ "url": "http://updates.jenkins-ci.org/download/plugins/CustomHistory/1.6/CustomHistory.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Custom+History"
+ },
+ "DotCi": {
+ "buildDate": "Sep 26, 2016",
+ "dependencies": [
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.77"
+ },
+ {
+ "name": "rebuild",
+ "optional": false,
+ "version": "1.25"
+ },
+ {
+ "name": "workflow-basic-steps",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sgaddipati",
+ "email": "surya.gaddipati@gmail.com",
+ "name": "Surya Gaddipati"
+ }
+ ],
+ "excerpt": "Please Refer to&amp;nbsp;&#65279;<a href='http://groupon.github.io/DotCi/'>Documentation</a> ",
+ "gav": "com.groupon.jenkins-ci.plugins:DotCi:2.36.2",
+ "labels": [],
+ "name": "DotCi",
+ "previousTimestamp": "2016-09-23T08:16:54.00Z",
+ "previousVersion": "2.36.1",
+ "releaseTimestamp": "2016-09-26T09:08:32.00Z",
+ "requiredCore": "1.655",
+ "scm": "github.com",
+ "sha1": "bHJuyGLo0eDPtpAa9oHz9Z2qPpg=",
+ "title": "DotCi Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/DotCi/2.36.2/DotCi.hpi",
+ "version": "2.36.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DotCi+Plugin"
+ },
+ "DotCi-DockerPublish": {
+ "buildDate": "Apr 29, 2016",
+ "dependencies": [
+ {
+ "name": "DotCi",
+ "optional": false,
+ "version": "2.7.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "hristoast",
+ "email": "me@hristos.triantafillou.us",
+ "name": "Hristos N. Triantafillou"
+ }
+ ],
+ "excerpt": "plugin for docker compose build type to publish docker image to registry ",
+ "gav": "com.groupon.jenkins-ci.plugins:DotCi-DockerPublish:1.0.3",
+ "labels": [],
+ "name": "DotCi-DockerPublish",
+ "previousTimestamp": "2016-02-08T09:49:42.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2016-04-29T13:48:08.00Z",
+ "requiredCore": "1.618",
+ "scm": "github.com",
+ "sha1": "sNXJ8wzzHQh5Zn8+EbRM019v4mk=",
+ "title": "DotCi DockerPublish",
+ "url": "http://updates.jenkins-ci.org/download/plugins/DotCi-DockerPublish/1.0.3/DotCi-DockerPublish.hpi",
+ "version": "1.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DotCi+DockerPublish+Plugin"
+ },
+ "DotCi-InstallPackages": {
+ "buildDate": "Aug 10, 2016",
+ "dependencies": [
+ {
+ "name": "DotCi",
+ "optional": false,
+ "version": "2.32.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sgaddipati",
+ "email": "surya.gaddipati@gmail.com",
+ "name": "Surya Gaddipati"
+ }
+ ],
+ "excerpt": "Install Packages is now its own plugin as of <a href='https://wiki.jenkins-ci.org/display/JENKINS/DotCi+Plugin'>DotCi Plugin</a> since <a href='https://github.com/groupon/DotCi/commits/DotCi-2.13.0'>2.13.0</a> ",
+ "gav": "com.groupon.jenkins-ci.plugins:DotCi-InstallPackages:1.3.1",
+ "labels": [],
+ "name": "DotCi-InstallPackages",
+ "previousTimestamp": "2016-07-12T14:00:00.00Z",
+ "previousVersion": "1.3.0",
+ "releaseTimestamp": "2016-08-10T08:47:40.00Z",
+ "requiredCore": "1.618",
+ "scm": "github.com",
+ "sha1": "7RsAaQBkW+2S6DVhD3n3iBtDmSs=",
+ "title": "DotCi InstallPackages",
+ "url": "http://updates.jenkins-ci.org/download/plugins/DotCi-InstallPackages/1.3.1/DotCi-InstallPackages.hpi",
+ "version": "1.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DotCi+InstallPackages+Plugin"
+ },
+ "DotCi-Plugins-Starter-Pack": {
+ "buildDate": "Jul 27, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.8"
+ },
+ {
+ "name": "ansicolor",
+ "optional": false,
+ "version": "0.3.1"
+ },
+ {
+ "name": "pmd",
+ "optional": false,
+ "version": "3.42"
+ },
+ {
+ "name": "analysis-collector",
+ "optional": false,
+ "version": "1.45"
+ },
+ {
+ "name": "tap",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "build-timeout",
+ "optional": false,
+ "version": "1.14"
+ },
+ {
+ "name": "jacoco",
+ "optional": false,
+ "version": "1.0.19"
+ },
+ {
+ "name": "DotCi",
+ "optional": false,
+ "version": "2.27.0"
+ },
+ {
+ "name": "checkstyle",
+ "optional": false,
+ "version": "3.43"
+ },
+ {
+ "name": "cobertura",
+ "optional": false,
+ "version": "1.9.3"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.73"
+ },
+ {
+ "name": "findbugs",
+ "optional": false,
+ "version": "4.62"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sgaddipati",
+ "email": "surya.gaddipati@gmail.com",
+ "name": "Surya Gaddipati"
+ }
+ ],
+ "excerpt": "An expansion pack for DotCi.",
+ "gav": "com.groupon.jenkins-ci.plugins:DotCi-Plugins-Starter-Pack:1.8.2",
+ "labels": [],
+ "name": "DotCi-Plugins-Starter-Pack",
+ "previousTimestamp": "2016-07-19T11:35:06.00Z",
+ "previousVersion": "1.8.1",
+ "releaseTimestamp": "2016-07-27T10:33:56.00Z",
+ "requiredCore": "1.618",
+ "scm": "github.com",
+ "sha1": "C0S0Uo3sjhrkaBJOSjROJ7kKLp4=",
+ "title": "DotCi Plugins Starter Pack Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/DotCi-Plugins-Starter-Pack/1.8.2/DotCi-Plugins-Starter-Pack.hpi",
+ "version": "1.8.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DotCi+Plugins+Starter+Pack+Plugin"
+ },
+ "Exclusion": {
+ "buildDate": "Apr 19, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "anthonyRoux",
+ "email": "m.roux.a@gmail.com",
+ "name": "Anthony Roux"
+ }
+ ],
+ "excerpt": "This plugin manages exclusion between jobs. ",
+ "gav": "org.jenkins-ci.plugins:Exclusion:0.12",
+ "labels": [
+ "builder"
+ ],
+ "name": "Exclusion",
+ "previousTimestamp": "2015-10-27T20:08:14.00Z",
+ "previousVersion": "0.11",
+ "releaseTimestamp": "2016-04-19T22:06:34.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "cxnDJcb9Av7Wn5GdJdCDuTkhXgc=",
+ "title": "Jenkins Exclusion Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/Exclusion/0.12/Exclusion.hpi",
+ "version": "0.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Exclusion-Plugin"
+ },
+ "GatekeeperPlugin": {
+ "buildDate": "Aug 20, 2015",
+ "dependencies": [
+ {
+ "name": "multiple-scms",
+ "optional": false,
+ "version": "0.5"
+ },
+ {
+ "name": "envinject",
+ "optional": false,
+ "version": "1.89"
+ },
+ {
+ "name": "mercurial",
+ "optional": false,
+ "version": "1.54"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "maikelwever",
+ "email": "maikel@maikelwever.nl",
+ "name": "Maikel Wever"
+ },
+ {
+ "developerId": "bubenkoff",
+ "email": "bubenkoff@gmail.com",
+ "name": "Anatoly Bubenkov"
+ }
+ ],
+ "excerpt": "Automatic merging for Jenkins, Gatekeeper style",
+ "gav": "org.paylogic:GatekeeperPlugin:3.0.5",
+ "labels": [],
+ "name": "GatekeeperPlugin",
+ "previousTimestamp": "2015-08-20T22:43:04.00Z",
+ "previousVersion": "3.0.4",
+ "releaseTimestamp": "2015-08-20T23:06:48.00Z",
+ "requiredCore": "1.624",
+ "scm": "github.com",
+ "sha1": "AEPAq4ScnMTDnnj3AwrzKWPA3wE=",
+ "title": "Gatekeeper plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/GatekeeperPlugin/3.0.5/GatekeeperPlugin.hpi",
+ "version": "3.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gatekeeper+plugin"
+ },
+ "JDK_Parameter_Plugin": {
+ "buildDate": "Aug 19, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "baris_batiege",
+ "email": "baris.batiege@datalex.com",
+ "name": "Baris Batiege"
+ },
+ {
+ "developerId": "fneves",
+ "email": "fabio.neves@datalex.com",
+ "name": "Fabio Neves"
+ }
+ ],
+ "excerpt": "This plugin adds a build parameter which can be used to set the JDK to be used with a job on a per-build basis.",
+ "gav": "org.jenkins-ci.plugins:JDK_Parameter_Plugin:1.0",
+ "labels": [
+ "parameter"
+ ],
+ "name": "JDK_Parameter_Plugin",
+ "releaseTimestamp": "2013-08-19T17:11:56.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "/f6Lyfc2phasZmbq70hPMAjut84=",
+ "title": "JDK Parameter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/JDK_Parameter_Plugin/1.0/JDK_Parameter_Plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JDK+Parameter+Plugin"
+ },
+ "JiraTestResultReporter": {
+ "buildDate": "Aug 17, 2016",
+ "compatibleSinceVersion": "2.0.0",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.10"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2-beta-4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "andreituicu",
+ "email": "andrei.tuicu@gmail.com",
+ "name": "Andrei Tuicu"
+ },
+ {
+ "developerId": "catalinluta",
+ "email": "luta.catalin@gmail.com",
+ "name": "Catalin Luta"
+ },
+ {
+ "developerId": "maplesteve",
+ "name": "Stephan Esch"
+ }
+ ],
+ "excerpt": "Creates issues in Jira for failed unit tests.",
+ "gav": "org.jenkins-ci.plugins:JiraTestResultReporter:2.0.3",
+ "labels": [
+ "external"
+ ],
+ "name": "JiraTestResultReporter",
+ "previousTimestamp": "2016-06-10T10:52:08.00Z",
+ "previousVersion": "2.0.2",
+ "releaseTimestamp": "2016-08-17T17:55:48.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "85H/b6yYv6o39ypVaXNfvW98i4Q=",
+ "title": "Jenkins JiraTestResultReporter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/JiraTestResultReporter/2.0.3/JiraTestResultReporter.hpi",
+ "version": "2.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JiraTestResultReporter-plugin"
+ },
+ "LavaLampNotifier": {
+ "buildDate": "Nov 13, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "edrandall",
+ "name": "Ed Randall"
+ }
+ ],
+ "excerpt": "Indicate Job status using a Lava Lamp",
+ "gav": "org.jvnet.hudson.plugins.lavalamp:LavaLampNotifier:1.4",
+ "labels": [
+ "notifier"
+ ],
+ "name": "LavaLampNotifier",
+ "previousTimestamp": "2010-11-13T12:40:26.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2010-11-13T21:04:48.00Z",
+ "requiredCore": "1.355",
+ "scm": "svn.dev.java.net",
+ "sha1": "gvAVSXpI34jKS8l9229JA/CR9/g=",
+ "title": "Hudson Lava Lamp Notifier plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/LavaLampNotifier/1.4/LavaLampNotifier.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lava+Lamp+Notifier"
+ },
+ "Matrix-sorter-plugin": {
+ "buildDate": "May 31, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plugin enable sorting the matrix configurations ",
+ "gav": "org.jenkins-ci.plugins:Matrix-sorter-plugin:1.1",
+ "labels": [],
+ "name": "Matrix-sorter-plugin",
+ "previousTimestamp": "2012-04-12T07:27:22.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2012-05-31T15:52:34.00Z",
+ "requiredCore": "1.439",
+ "scm": "github.com",
+ "sha1": "dArbofexSr5aGpw2Ojq7N6Psblc=",
+ "title": "Matrix sorter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/Matrix-sorter-plugin/1.1/Matrix-sorter-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+configuration+sorter+plugin"
+ },
+ "NegotiateSSO": {
+ "buildDate": "Jul 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "FarmGeek4Life",
+ "name": "Bryson Gibbons"
+ }
+ ],
+ "excerpt": "Requests and uses Kerberos or NTLM tickets to authenticate (Uses Windows' Negotiate protocol) (Only works for Jenkins server on Windows)",
+ "gav": "org.jenkins-ci.plugins:NegotiateSSO:1.1",
+ "labels": [],
+ "name": "NegotiateSSO",
+ "previousTimestamp": "2015-08-19T23:17:32.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-07-14T03:02:02.00Z",
+ "requiredCore": "1.586",
+ "scm": "github.com",
+ "sha1": "Fs46//sn1uzUJDhoRecowHLxXH4=",
+ "title": "Windows Negotiate SSO plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/NegotiateSSO/1.1/NegotiateSSO.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Negotiate+SSO+for+Windows"
+ },
+ "Office-365-Connector": {
+ "buildDate": "Jun 17, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "outconn",
+ "email": "outconn@microsoft.com",
+ "name": "Out conn"
+ },
+ {
+ "developerId": "srhebbar",
+ "email": "srhebbar@microsoft.com",
+ "name": "Srivardhan Hebbar"
+ }
+ ],
+ "excerpt": "This plugin from Microsoft Corp. allows sending running Jobs status notifications. ",
+ "gav": "org.jenkins-ci.plugins:Office-365-Connector:1.2.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "Office-365-Connector",
+ "previousTimestamp": "2016-06-16T19:00:10.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-06-17T10:11:16.00Z",
+ "requiredCore": "1.651.2",
+ "scm": "github.com",
+ "sha1": "xOSONQ4xC+ulx5EfZgzi5ZalczQ=",
+ "title": "Office 365 Connector",
+ "url": "http://updates.jenkins-ci.org/download/plugins/Office-365-Connector/1.2.1/Office-365-Connector.hpi",
+ "version": "1.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Office+365+Connector+Plugin"
+ },
+ "Parameterized-Remote-Trigger": {
+ "buildDate": "Aug 16, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.4"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "morficus",
+ "name": "Maurice Williams"
+ }
+ ],
+ "excerpt": "This plugin gives you the ability to trigger parameterized builds on a remote Jenkins server as part of your build.",
+ "gav": "org.jenkins-ci.plugins:Parameterized-Remote-Trigger:2.2.2",
+ "labels": [
+ "builder",
+ "trigger",
+ "parameter"
+ ],
+ "name": "Parameterized-Remote-Trigger",
+ "previousTimestamp": "2014-07-06T21:53:52.00Z",
+ "previousVersion": "2.1.3",
+ "releaseTimestamp": "2015-08-16T12:56:40.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "ism3Dx4qISAbGLNcJU4ZMglM9GQ=",
+ "title": "Parameterized Remote Trigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/Parameterized-Remote-Trigger/2.2.2/Parameterized-Remote-Trigger.hpi",
+ "version": "2.2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Remote+Trigger+Plugin"
+ },
+ "PrioritySorter": {
+ "buildDate": "Sep 29, 2016",
+ "compatibleSinceVersion": "3.1",
+ "dependencies": [
+ {
+ "name": "cloudbees-folder",
+ "optional": true,
+ "version": "5.0"
+ },
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.4"
+ },
+ {
+ "name": "job-restrictions",
+ "optional": true,
+ "version": "0.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "emsa23",
+ "email": "emsa@switchbeat.com",
+ "name": "Magnus Sandberg"
+ }
+ ],
+ "excerpt": "This plugin allows Jobs to be prioritised based Queue Strategies and&amp;nbsp;Priority Strategies.",
+ "gav": "org.jenkins-ci.plugins:PrioritySorter:3.4.1",
+ "labels": [
+ "misc",
+ "listview-column"
+ ],
+ "name": "PrioritySorter",
+ "previousTimestamp": "2015-06-06T09:47:10.00Z",
+ "previousVersion": "3.4",
+ "releaseTimestamp": "2016-09-29T18:46:54.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "MqTKGzGHc/1mdgaVZAGQJvgWdDo=",
+ "title": "Jenkins Priority Sorter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/PrioritySorter/3.4.1/PrioritySorter.hpi",
+ "version": "3.4.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Priority+Sorter+Plugin"
+ },
+ "SBuild": {
+ "buildDate": "Mar 21, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tobiasroeser",
+ "email": "le.petit.fou@web.de",
+ "name": "Tobias Roeser"
+ }
+ ],
+ "excerpt": "This plugin allows building projects using <a href='http://sbuild.org'>SBuild</a>. ",
+ "gav": "org.jenkins-ci.plugins:SBuild:1.0.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "SBuild",
+ "previousTimestamp": "2013-12-21T14:40:34.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2014-03-21T00:28:42.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "EH5jmznwr7rdixa1Wh96N7ddvSE=",
+ "title": "SBuild Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/SBuild/1.0.2/SBuild.hpi",
+ "version": "1.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SBuild+Plugin"
+ },
+ "SCTMExecutor": {
+ "buildDate": "Mar 06, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tofuAtjava",
+ "email": "tfuerer.javanet@googlemail.com",
+ "name": "Thomas Fuerer"
+ }
+ ],
+ "excerpt": "This plugin will let users use Borland's SilkCentral Test Manager 2008 R2 or later.",
+ "gav": "hudson.plugins.sctmexecutor:SCTMExecutor:1.5.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "SCTMExecutor",
+ "previousTimestamp": "2010-03-01T23:15:34.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2010-03-06T20:47:22.00Z",
+ "requiredCore": "1.345",
+ "scm": "svn.dev.java.net",
+ "sha1": "AGNsn4d8rgDz5CgMkVLpdNpdQRo=",
+ "title": "SCTMExecutor",
+ "url": "http://updates.jenkins-ci.org/download/plugins/SCTMExecutor/1.5.1/SCTMExecutor.hpi",
+ "version": "1.5.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCTMExecutor"
+ },
+ "Schmant": {
+ "buildDate": "Dec 15, 2009",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kalle"
+ }
+ ],
+ "excerpt": "The Schmant plugin enables Hudson to run <a href='http://www.schmant.org'>Schmant</a> build scripts.",
+ "gav": "org.schmant.hudson:Schmant:1.1.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "Schmant",
+ "previousTimestamp": "2009-04-01T11:28:56.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2009-12-15T11:01:08.00Z",
+ "requiredCore": "1.337",
+ "scm": "svn.dev.java.net",
+ "sha1": "WGFojc2aUe6CNQQGIWlKC+lbW4o=",
+ "title": "Hudson Schmant plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/Schmant/1.1.4/Schmant.hpi",
+ "version": "1.1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Schmant+Plugin"
+ },
+ "StashBranchParameter": {
+ "buildDate": "Dec 02, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "eernie",
+ "email": "oldenkamperwin@gmail.com",
+ "name": "Erwin Oldenkamp"
+ }
+ ],
+ "excerpt": "This uses branches and tags as parameters. Hosting has moved to [https://github.com/jenkinsci/stash-branch-parameters-plugin] ",
+ "gav": "org.jenkins-ci.plugins:StashBranchParameter:0.2.0",
+ "labels": [
+ "parameter"
+ ],
+ "name": "StashBranchParameter",
+ "previousTimestamp": "2014-04-09T21:12:32.00Z",
+ "previousVersion": "0.1.5",
+ "releaseTimestamp": "2015-12-02T00:42:10.00Z",
+ "requiredCore": "1.639",
+ "scm": "github.com",
+ "sha1": "NtooNki5sM+s2mxlgo5Kz0RvubU=",
+ "title": "Stash Branch Parameter Plug-In",
+ "url": "http://updates.jenkins-ci.org/download/plugins/StashBranchParameter/0.2.0/StashBranchParameter.hpi",
+ "version": "0.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/StashBranchParameter"
+ },
+ "Surround-SCM-plugin": {
+ "buildDate": "Apr 10, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "vincentp@seapine.com",
+ "name": "Paul Vincent"
+ }
+ ],
+ "excerpt": "This plugin integrates with <a href='http://www.seapine.com'>Seapine </a>Software's <a href='http://www.seapine.com/surround-scm/overview'>Surround SCM</a>. ",
+ "gav": "org.jenkins-ci.plugins:Surround-SCM-plugin:1.7",
+ "labels": [
+ "scm"
+ ],
+ "name": "Surround-SCM-plugin",
+ "previousTimestamp": "2015-04-08T10:58:52.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2015-04-10T08:17:46.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "WmB/mrMEG1UohVFqNvBbW1Pp/JU=",
+ "title": "Seapine Surround SCM - Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/Surround-SCM-plugin/1.7/Surround-SCM-plugin.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Surround+SCM+Plugin"
+ },
+ "TestComplete": {
+ "buildDate": "Jul 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "Skorkin"
+ }
+ ],
+ "excerpt": "A SmartBear plugin for running TestComplete tests from Jenkins. The plugin provides a build step that lets you include TestComplete tests in your Jenkins builds. Also, the plugin maintains a list of test runs and lets you view test results directly from within Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:TestComplete:1.6",
+ "labels": [
+ "builder",
+ "report"
+ ],
+ "name": "TestComplete",
+ "previousTimestamp": "2016-04-07T17:00:54.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2016-07-26T15:01:32.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "YH4QSE3Kxn6vmIKKQAQLEtAZXew=",
+ "title": "TestComplete support plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/TestComplete/1.6/TestComplete.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TestComplete+Support+Plugin"
+ },
+ "TestFairy": {
+ "buildDate": "Jun 09, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "testfairy",
+ "email": "jenkins@testfairy.com",
+ "name": "TestFairy"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:TestFairy:4.2",
+ "labels": [
+ "upload",
+ "android"
+ ],
+ "name": "TestFairy",
+ "previousTimestamp": "2016-06-06T11:22:44.00Z",
+ "previousVersion": "3.7",
+ "releaseTimestamp": "2016-06-09T17:55:46.00Z",
+ "requiredCore": "1.596",
+ "scm": "github.com",
+ "sha1": "5u7b6+8HE7CGbkz4q2G3IQIYZTg=",
+ "title": "TestFairy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/TestFairy/4.2/TestFairy.hpi",
+ "version": "4.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TestFairy+Plugin"
+ },
+ "TwilioNotifier": {
+ "buildDate": "Dec 27, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "christer",
+ "email": "christer.fahlgren@gmail.com",
+ "name": "Christer Fahlgren"
+ }
+ ],
+ "excerpt": "The Twilio Notifier Plugin is a plugin that can send build status notifications as Text messages and phone calls using <a href='http://www.twilio.com/'>Twilio</a>. ",
+ "gav": "com.twilio.jenkins:TwilioNotifier:0.2.1",
+ "labels": [],
+ "name": "TwilioNotifier",
+ "previousTimestamp": "2011-12-27T10:57:30.00Z",
+ "previousVersion": "0.2.0",
+ "releaseTimestamp": "2011-12-27T11:01:44.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "H1vq0/9tFtMVw8+kUlL2W8TkSjE=",
+ "title": "Twilio Notifier Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/TwilioNotifier/0.2.1/TwilioNotifier.hpi",
+ "version": "0.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Twilio+Notifier+Plugin"
+ },
+ "URLSCM": {
+ "buildDate": "Nov 02, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mdonohue",
+ "name": "Michael Donohue"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin allows the use of URLs as an SCM.",
+ "gav": "org.jvnet.hudson.plugins:URLSCM:1.6",
+ "labels": [
+ "scm"
+ ],
+ "name": "URLSCM",
+ "previousTimestamp": "2010-01-27T09:48:14.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2011-11-02T10:15:14.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "aglxMDptHgY5Xk31EXgB8NafzKU=",
+ "title": "URL SCM plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/URLSCM/1.6/URLSCM.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/URL+SCM"
+ },
+ "WebSVN2": {
+ "buildDate": "Sep 23, 2010",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "name": "Andreas Mandel"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.websvn.info/'>WebSVN</a> Version 2 browser interface for Subversion with Hudson.",
+ "gav": "org.jvnet.hudson.plugins:WebSVN2:0.9",
+ "labels": [],
+ "name": "WebSVN2",
+ "releaseTimestamp": "2010-09-23T06:08:16.00Z",
+ "requiredCore": "1.376",
+ "scm": "svn.dev.java.net",
+ "sha1": "X/gdcrPYhTMObY3tJ6kRRQpO0vk=",
+ "title": "Hudson WebSVN2 plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/WebSVN2/0.9/WebSVN2.hpi",
+ "version": "0.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WebSVN2+Plugin"
+ },
+ "absint-a3": {
+ "buildDate": "Sep 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "absint",
+ "email": "support@absint.com",
+ "name": "Technical Support"
+ }
+ ],
+ "excerpt": "Integration of AbsInt's <a href='https://www.absint.com/ait'>aiT</a>, <a href='https://www.absint.com/timingprofiler'>TimingProfiler</a> and <a href='https://www.absint.com/stackanalyzer'>StackAnalyzer</a> (a&sup3;) into the Jenkins continuous integration system",
+ "gav": "org.jenkins-ci.plugins:absint-a3:1.0.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "absint-a3",
+ "previousTimestamp": "2016-09-16T17:08:20.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-09-21T13:48:14.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "IZEZENLCuagfZKAcmrfKb3b2YGE=",
+ "title": "AbsInt a³ Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/absint-a3/1.0.1/absint-a3.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/pages/viewpage.action?pageId=99910492"
+ },
+ "absint-astree": {
+ "buildDate": "Sep 30, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jherter",
+ "email": "herter@absint.com",
+ "name": "Joerg Herter"
+ }
+ ],
+ "excerpt": "Integration of AbsInt's static code analyzer <a href='https://www.absint.com/astree'>Astr&eacute;e</a> into the Jenkins continuous integration system",
+ "gav": "org.jenkins-ci.plugins:absint-astree:1.0.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "absint-astree",
+ "previousTimestamp": "2016-09-08T07:56:40.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-09-30T12:35:12.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "R04Pqq+vAYolvA/FFv0AlBH+RkM=",
+ "title": "AbsInt Astrée Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/absint-astree/1.0.1/absint-astree.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/pages/viewpage.action?pageId=99910545"
+ },
+ "accelerated-build-now-plugin": {
+ "buildDate": "Jul 31, 2013",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.523"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "anthonydahanne",
+ "email": "anthony.dahanne@gmail.com",
+ "name": "Anthony Dahanne"
+ }
+ ],
+ "excerpt": "The Jenkins Accelerated Build Now Plugin allows Jenkins users to launch a project's build right away, even if the queue is long (moving it to the top of the queue) and even if no executor is available (killing and rescheduling builds not launched by &quot;humans&quot;) ",
+ "gav": "org.terracotta.jenkins.plugins:accelerated-build-now-plugin:1.0.1",
+ "labels": [
+ "trigger"
+ ],
+ "name": "accelerated-build-now-plugin",
+ "releaseTimestamp": "2013-07-31T11:49:08.00Z",
+ "requiredCore": "1.523",
+ "scm": "github.com",
+ "sha1": "3unyVqpC+qiGqcwjnwd1WOzV41c=",
+ "title": "Accelerated Build Now Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/accelerated-build-now-plugin/1.0.1/accelerated-build-now-plugin.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Accelerated+Build+Now+Plugin"
+ },
+ "accurev": {
+ "buildDate": "Sep 28, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "casz",
+ "name": "Joseph Petersen"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='http://www.borland.com/en-GB/Products/Change-Management/AccuRev'>AccuRev</a> as a SCM.",
+ "gav": "org.jenkins-ci.plugins:accurev:0.7.2",
+ "labels": [
+ "scm"
+ ],
+ "name": "accurev",
+ "previousTimestamp": "2016-09-15T18:04:56.00Z",
+ "previousVersion": "0.7.1",
+ "releaseTimestamp": "2016-09-28T18:02:58.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "K6n3zkfkHSx+n6oCwQNZhOKt6XQ=",
+ "title": "Jenkins Accurev plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/accurev/0.7.2/accurev.hpi",
+ "version": "0.7.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AccuRev+Plugin"
+ },
+ "ace-editor": {
+ "buildDate": "Mar 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tfennelly"
+ }
+ ],
+ "excerpt": "ACE Editor Plugin",
+ "gav": "org.jenkins-ci.ui:ace-editor:1.1",
+ "labels": [],
+ "name": "ace-editor",
+ "previousTimestamp": "2015-11-06T12:40:26.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2016-03-03T12:09:10.00Z",
+ "requiredCore": "1.580.1",
+ "sha1": "Oe0JR9zZtBR2muKLPrlVZD4l1eA=",
+ "title": "JavaScript GUI Lib: ACE Editor bundle plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ace-editor/1.1/ace-editor.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ACE+Editor+Plugin"
+ },
+ "active-directory": {
+ "buildDate": "Oct 03, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "fbelzunc",
+ "name": "Felix Belzunce Arcos"
+ }
+ ],
+ "excerpt": "With this plugin, you can configure Jenkins to authenticate the username and the password through Active Directory.",
+ "gav": "org.jenkins-ci.plugins:active-directory:2.0",
+ "labels": [
+ "user"
+ ],
+ "name": "active-directory",
+ "previousTimestamp": "2016-09-17T08:07:32.00Z",
+ "previousVersion": "1.49",
+ "releaseTimestamp": "2016-10-03T11:12:50.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "JMuiYgTSdjVl2jEicPS/7w+YtAM=",
+ "title": "Jenkins Active Directory plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/active-directory/2.0/active-directory.hpi",
+ "version": "2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Active+Directory+plugin"
+ },
+ "adaptive-disconnector": {
+ "buildDate": "Oct 30, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Run node monitors after build failure to detect infrastructure problems early",
+ "gav": "org.jenkins-ci.plugins:adaptive-disconnector:0.2",
+ "labels": [],
+ "name": "adaptive-disconnector",
+ "previousTimestamp": "2014-02-05T20:30:22.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2014-10-30T22:26:14.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "nFnMY8miQfmFi6ZyOAQih9WwKMc=",
+ "title": "Adaptive Disconnector Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/adaptive-disconnector/0.2/adaptive-disconnector.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Adaptive+disconnector+plugin"
+ },
+ "additional-identities-plugin": {
+ "buildDate": "Oct 20, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "This plugin allows user to configure additional identities in jenkins user database for external services, typically SCM repositories. ",
+ "gav": "com.cloudbees.jenkins.plugins:additional-identities-plugin:1.1",
+ "labels": [],
+ "name": "additional-identities-plugin",
+ "previousTimestamp": "2012-09-27T15:51:54.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-10-20T11:09:10.00Z",
+ "requiredCore": "1.488",
+ "scm": "github.com",
+ "sha1": "9khYVdSjPCpcLrNbrGhbRCu/O/Q=",
+ "title": "Additional Identities Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/additional-identities-plugin/1.1/additional-identities-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Additional+Identities+Plugin"
+ },
+ "advanced-installer-msi-builder": {
+ "buildDate": "Jun 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "advinst",
+ "email": "support@advancedinstaller.com",
+ "name": "Advanced Installer"
+ }
+ ],
+ "excerpt": "This plugin builds Advanced Installer projects.",
+ "gav": "org.jenkins-ci.plugins:advanced-installer-msi-builder:1.3",
+ "labels": [],
+ "name": "advanced-installer-msi-builder",
+ "previousTimestamp": "2015-06-05T14:52:24.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-06-15T11:37:24.00Z",
+ "requiredCore": "1.601",
+ "scm": "github.com",
+ "sha1": "tnu4JFC10zWuhVvChiHSi40wF0A=",
+ "title": "Advanced Installer Msi Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/advanced-installer-msi-builder/1.3/advanced-installer-msi-builder.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Advanced+Installer+Msi+Builder+Plugin"
+ },
+ "aliyun-container-service-deploy": {
+ "buildDate": "Aug 19, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.18"
+ },
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.3.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "qinyujia"
+ }
+ ],
+ "excerpt": "Enable Jenkins to deploy applications to Aliyun Container Service.",
+ "gav": "org.jenkins-ci.plugins:aliyun-container-service-deploy:0.1.0",
+ "labels": [],
+ "name": "aliyun-container-service-deploy",
+ "releaseTimestamp": "2016-08-19T16:55:38.00Z",
+ "requiredCore": "1.651.2",
+ "scm": "github.com",
+ "sha1": "UCLHsDxjqJirU/mDYNJpuN14rQU=",
+ "title": "Aliyun-Container-Service-Deploy",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aliyun-container-service-deploy/0.1.0/aliyun-container-service-deploy.hpi",
+ "version": "0.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Aliyun+Container+Service+Deploy+Plugin"
+ },
+ "all-changes": {
+ "buildDate": "Jun 06, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": false,
+ "version": "2.9.9"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": true,
+ "version": "2.30"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "wolfs",
+ "name": "Stefan Wolf"
+ },
+ {
+ "developerId": "pskumar448",
+ "email": "pskumar448@gmail.com",
+ "name": "Suresh Kumar"
+ }
+ ],
+ "excerpt": "Shows all changes which influenced the builds of a project.",
+ "gav": "org.jenkins-ci.plugins:all-changes:1.4",
+ "labels": [
+ "ui",
+ "report"
+ ],
+ "name": "all-changes",
+ "previousTimestamp": "2011-09-18T18:15:30.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-06-06T09:21:14.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "btsL1jR3r6jrC5I7e4+X2V2Q4ME=",
+ "title": "All changes plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/all-changes/1.4/all-changes.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/All+Changes+Plugin"
+ },
+ "allure-jenkins-plugin": {
+ "buildDate": "Dec 02, 2015",
+ "compatibleSinceVersion": "2.8",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.39"
+ },
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pupssman",
+ "email": "pupssman@yandex-team.ru",
+ "name": "Ivan Kalinin"
+ },
+ {
+ "developerId": "eroshenkoam",
+ "email": "eroshenkoam@yandex-team.ru",
+ "name": "Artem Eroshenko"
+ },
+ {
+ "developerId": "mavlyutov",
+ "email": "mavlyutov@yandex-team.ru",
+ "name": "Marat Mavlyutov"
+ },
+ {
+ "developerId": "dchr",
+ "email": "dchr@yandex-team.ru",
+ "name": "Denis Chernilevsky"
+ },
+ {
+ "developerId": "vania-pooh",
+ "email": "vania-pooh@yandex-team.ru",
+ "name": "Ivan Krutov"
+ }
+ ],
+ "excerpt": "This plugin allows to automatically generate <a href='http://allure.qatools.ru'>Allure Report</a> and attach it to build during Jenkins job run.",
+ "gav": "ru.yandex.qatools.allure:allure-jenkins-plugin:2.10",
+ "labels": [
+ "report"
+ ],
+ "name": "allure-jenkins-plugin",
+ "previousTimestamp": "2015-11-27T06:32:08.00Z",
+ "previousVersion": "2.9",
+ "releaseTimestamp": "2015-12-02T11:40:50.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "AZFSSeWBW4COc00rMGXQmtUjMR4=",
+ "title": "Allure Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/allure-jenkins-plugin/2.10/allure-jenkins-plugin.hpi",
+ "version": "2.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Allure+Plugin"
+ },
+ "amazon-ecr": {
+ "buildDate": "Jun 06, 2016",
+ "dependencies": [
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.24"
+ },
+ {
+ "name": "aws-credentials",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.45"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ }
+ ],
+ "excerpt": "This plugin offer integration with Amazon EC2 Container Registry (ECR) as a DockerRegistryToken source to convert Amazon Credentials into a Docker CLI Authentication Token. ",
+ "gav": "com.cloudbees.jenkins.plugins:amazon-ecr:1.3",
+ "labels": [],
+ "name": "amazon-ecr",
+ "previousTimestamp": "2016-01-18T10:50:20.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-06-06T13:05:46.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "sWwMFckAueoRlaOPkPpJvzfjd2M=",
+ "title": "Amazon ECR plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/amazon-ecr/1.3/amazon-ecr.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+ECR"
+ },
+ "amazon-ecs": {
+ "buildDate": "Sep 25, 2016",
+ "dependencies": [
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.45"
+ },
+ {
+ "name": "aws-credentials",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ }
+ ],
+ "excerpt": "Use Amazon ECS Containers to setup (docker-based) elastic build executors. ",
+ "gav": "com.cloudbees.jenkins.plugins:amazon-ecs:1.6",
+ "labels": [
+ "cluster",
+ "slaves"
+ ],
+ "name": "amazon-ecs",
+ "previousTimestamp": "2016-08-12T22:00:10.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2016-09-25T12:47:48.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "3kxaCRnEAPWviHTft+gVM9mfzCg=",
+ "title": "Amazon EC2 Container Service plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/amazon-ecs/1.6/amazon-ecs.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+EC2+Container+Service+Plugin"
+ },
+ "analysis-collector": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "tasks",
+ "optional": true,
+ "version": "4.46"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.77"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "pmd",
+ "optional": true,
+ "version": "3.42"
+ },
+ {
+ "name": "warnings",
+ "optional": true,
+ "version": "4.49"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "findbugs",
+ "optional": true,
+ "version": "4.62"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "checkstyle",
+ "optional": true,
+ "version": "3.43"
+ },
+ {
+ "name": "dry",
+ "optional": true,
+ "version": "2.42"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drulli",
+ "email": "ullrich.hafner@gmail.com",
+ "name": "Ulli Hafner"
+ }
+ ],
+ "excerpt": "This plug-in is an add-on for the plug-ins <a href='Checkstyle Plugin'>Checkstyle</a>, <a href='DRY Plugin'>Dry</a>, <a href='FindBugs Plugin'>FindBugs</a>, <a href='PMD Plugin'>PMD</a>, <a href='Task Scanner Plugin'>Task Scanner</a>, and <a href='Warnings Plugin'>Warnings</a>: the plug-in collects the different analysis results and shows the results in a combined trend graph. Additionally, the plug-in provides health reporting and build stability based on these combined results. ",
+ "gav": "org.jvnet.hudson.plugins:analysis-collector:1.48",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "analysis-collector",
+ "previousTimestamp": "2016-02-28T00:16:54.00Z",
+ "previousVersion": "1.47",
+ "releaseTimestamp": "2016-06-01T14:57:58.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "iYoFiVZhA2i15QOEWzdAQPw1OvM=",
+ "title": "Static Analysis Collector Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/analysis-collector/1.48/analysis-collector.hpi",
+ "version": "1.48",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Analysis+Collector+Plugin"
+ },
+ "analysis-core": {
+ "buildDate": "Jul 17, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "ant",
+ "optional": true,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drulli",
+ "email": "ullrich.hafner@gmail.com",
+ "name": "Ulli Hafner"
+ }
+ ],
+ "excerpt": "This plug-in provides utilities for the static code analysis plug-ins.",
+ "gav": "org.jvnet.hudson.plugins:analysis-core:1.79",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "analysis-core",
+ "previousTimestamp": "2016-06-04T23:48:30.00Z",
+ "previousVersion": "1.78",
+ "releaseTimestamp": "2016-07-17T09:41:18.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "yL1CsqtDL5wbr+T553lIxLLTzbc=",
+ "title": "Static Analysis Utilities",
+ "url": "http://updates.jenkins-ci.org/download/plugins/analysis-core/1.79/analysis-core.hpi",
+ "version": "1.79",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Static+Code+Analysis+Plug-ins"
+ },
+ "anchore-container-scanner": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nurmi",
+ "email": "nurmi@anchore.com",
+ "name": "Daniel Nurmi"
+ }
+ ],
+ "excerpt": "Allows users to add a build step to run the <a href='https://www.anchore.com/'>Anchore</a> container image scanner.",
+ "gav": "org.jenkins-ci.plugins:anchore-container-scanner:1.0.1",
+ "labels": [
+ "builder",
+ "scm",
+ "security"
+ ],
+ "name": "anchore-container-scanner",
+ "previousTimestamp": "2016-10-03T15:52:46.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-10-03T19:22:34.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "pkv64wcZEhdF2zLfjJau15tCWXo=",
+ "title": "Anchore Container Image Scanner Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/anchore-container-scanner/1.0.1/anchore-container-scanner.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Anchore+Container+Image+Scanner+Plugin"
+ },
+ "android-emulator": {
+ "buildDate": "May 23, 2016",
+ "dependencies": [
+ {
+ "name": "port-allocator",
+ "optional": false,
+ "version": "1.8"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "orrc",
+ "email": "chris@orr.me.uk",
+ "name": "Christopher Orr"
+ }
+ ],
+ "excerpt": "Automates many <a href='https://developer.android.com/'>Android development</a> tasks including SDK installation, build file generation, emulator creation and launch, APK (un)installation, monkey testing and analysis... ",
+ "gav": "org.jenkins-ci.plugins:android-emulator:2.15",
+ "labels": [
+ "buildwrapper",
+ "android"
+ ],
+ "name": "android-emulator",
+ "previousTimestamp": "2016-04-20T08:48:48.00Z",
+ "previousVersion": "2.14.1",
+ "releaseTimestamp": "2016-05-23T18:38:38.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "pvU6q9+OCzgrHuBuHyuJYF76i4A=",
+ "title": "Android Emulator Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/android-emulator/2.15/android-emulator.hpi",
+ "version": "2.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Android+Emulator+Plugin"
+ },
+ "android-lint": {
+ "buildDate": "Aug 27, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.76"
+ },
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "orrc",
+ "email": "chris@orr.me.uk",
+ "name": "Christopher Orr"
+ }
+ ],
+ "excerpt": "Parses output from the Android lint tool and displays the results for analysis.",
+ "gav": "org.jvnet.hudson.plugins:android-lint:2.4",
+ "labels": [
+ "report",
+ "android",
+ "listview-column"
+ ],
+ "name": "android-lint",
+ "previousTimestamp": "2016-04-27T00:37:30.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2016-08-27T12:09:34.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "mmXaJtsFJQTSqaI8IizqENXGmOs=",
+ "title": "Android Lint Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/android-lint/2.4/android-lint.hpi",
+ "version": "2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Android+Lint+Plugin"
+ },
+ "ansible": {
+ "buildDate": "May 05, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.36"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.16.1"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jcsirot",
+ "email": "sirot@chelonix.com",
+ "name": "Jean-Christophe Sirot"
+ }
+ ],
+ "excerpt": "This plugin allows to execute&amp;nbsp;<a href='http://www.ansible.com/'>Ansible</a> tasks as a job build step.",
+ "gav": "org.jenkins-ci.plugins:ansible:0.5",
+ "labels": [
+ "builder",
+ "devops",
+ "deployment",
+ "external",
+ "pipeline"
+ ],
+ "name": "ansible",
+ "previousTimestamp": "2015-12-25T21:33:34.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2016-05-05T22:39:02.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "Oiqa4hh6TXVj2bPR5lYW8+AFc7w=",
+ "title": "Jenkins Ansible plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ansible/0.5/ansible.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ansible+Plugin"
+ },
+ "ansicolor": {
+ "buildDate": "Oct 29, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dblock",
+ "email": "dblock@dblock.org",
+ "name": "Daniel Doubrovkine"
+ }
+ ],
+ "excerpt": "This plugin adds support for ANSI escape sequences, including color, to Console Output.",
+ "gav": "org.jenkins-ci.plugins:ansicolor:0.4.2",
+ "labels": [
+ "misc"
+ ],
+ "name": "ansicolor",
+ "previousTimestamp": "2014-12-11T11:10:12.00Z",
+ "previousVersion": "0.4.1",
+ "releaseTimestamp": "2015-10-29T07:46:12.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "dvrijC29PnvdoK12Xr/d7pWF/nc=",
+ "title": "AnsiColor",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ansicolor/0.4.2/ansicolor.hpi",
+ "version": "0.4.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AnsiColor+Plugin"
+ },
+ "ant": {
+ "buildDate": "Aug 30, 2016",
+ "dependencies": [
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "armfergom",
+ "name": "Armando Fernandez"
+ }
+ ],
+ "excerpt": "This plugin adds <a href='http://ant.apache.org/'>Apache Ant</a> support to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:ant:1.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "ant",
+ "previousTimestamp": "2016-05-11T13:52:16.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-08-30T15:49:22.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "jlbhn/llfio4zxRp8YuBtqvwjss=",
+ "title": "Ant Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ant/1.4/ant.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ant+Plugin"
+ },
+ "antexec": {
+ "buildDate": "Aug 18, 2015",
+ "dependencies": [
+ {
+ "name": "ant",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "svasek",
+ "email": "svasek@gmail.com",
+ "name": "Milos Svasek"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to run Apache Ant code directly from Jenkins-CI. ",
+ "gav": "org.jenkins-ci.plugins:antexec:1.11",
+ "labels": [],
+ "name": "antexec",
+ "previousTimestamp": "2013-10-31T18:19:00.00Z",
+ "previousVersion": "1.10",
+ "releaseTimestamp": "2015-08-18T13:50:34.00Z",
+ "requiredCore": "1.596",
+ "scm": "github.com",
+ "sha1": "WsIoweE66UWdLf3e0bwVf/CBpXA=",
+ "title": "AntExec",
+ "url": "http://updates.jenkins-ci.org/download/plugins/antexec/1.11/antexec.hpi",
+ "version": "1.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AntExec+plugin"
+ },
+ "antisamy-markup-formatter": {
+ "buildDate": "Jun 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stevenchristou"
+ }
+ ],
+ "excerpt": "Uses policy definitions to allow limited HTML markup in user-submitted text.",
+ "gav": "org.jenkins-ci.plugins:antisamy-markup-formatter:1.5",
+ "labels": [
+ "security"
+ ],
+ "name": "antisamy-markup-formatter",
+ "previousTimestamp": "2014-10-30T17:51:54.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-06-08T14:11:10.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "sgwsCtEwMPWv0PHMoxiBwAn8pR0=",
+ "title": "OWASP Markup Formatter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/antisamy-markup-formatter/1.5/antisamy-markup-formatter.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OWASP+Markup+Formatter+Plugin"
+ },
+ "any-buildstep": {
+ "buildDate": "Nov 14, 2011",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "0.5"
+ },
+ {
+ "name": "conditional-buildstep",
+ "optional": false,
+ "version": "0.2"
+ },
+ {
+ "name": "flexible-publish",
+ "optional": false,
+ "version": "0.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Use publishers as builders and builders as publishers. Adds builders to the actions available in the [Flexible Publish Plugin] and publishers to the list of builders available in the [Conditional BuildStep Plugin]. ",
+ "gav": "org.jenkins-ci.plugins:any-buildstep:0.1",
+ "labels": [],
+ "name": "any-buildstep",
+ "releaseTimestamp": "2011-11-14T18:43:44.00Z",
+ "requiredCore": "1.408",
+ "scm": "github.com",
+ "sha1": "46R/wmiCUngBl8Zrt4cRwvGbJuI=",
+ "title": "Any Build Step Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/any-buildstep/0.1/any-buildstep.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Any+Build+Step+Plugin"
+ },
+ "anything-goes-formatter": {
+ "buildDate": "Mar 14, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kk@kohsuke.org",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin allows you to use JavaScript inside your project description.",
+ "gav": "org.jenkins-ci.plugins:anything-goes-formatter:1.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "anything-goes-formatter",
+ "releaseTimestamp": "2012-03-14T11:50:52.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "P+91IIgNJvsFUhaxCZLaZPG0VI0=",
+ "title": "\"Anything Goes\" formatter",
+ "url": "http://updates.jenkins-ci.org/download/plugins/anything-goes-formatter/1.0/anything-goes-formatter.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/pages/viewpage.action?pageId=60915753"
+ },
+ "appaloosa-plugin": {
+ "buildDate": "Oct 29, 2014",
+ "dependencies": [
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aheritier",
+ "email": "aheritier@apache.org",
+ "name": "Arnaud Heritier"
+ },
+ {
+ "developerId": "joel1di1",
+ "email": "joel1di1@gmail.com",
+ "name": "Benoit Lafontaine"
+ },
+ {
+ "developerId": "rsfez",
+ "email": "rsfez@octo.com",
+ "name": "Robin Sfez"
+ }
+ ],
+ "excerpt": "Publish your mobile applications (Android, iOS, ...) to the&amp;nbsp;<a href='http://www.appaloosa-store.com'>appaloosa-store.com</a>&amp;nbsp;platform.",
+ "gav": "org.jenkins-ci.plugins:appaloosa-plugin:1.4.2",
+ "labels": [
+ "upload",
+ "ios",
+ "android"
+ ],
+ "name": "appaloosa-plugin",
+ "previousTimestamp": "2013-06-19T11:50:12.00Z",
+ "previousVersion": "1.4.0",
+ "releaseTimestamp": "2014-10-29T14:29:06.00Z",
+ "requiredCore": "1.586",
+ "scm": "github.com",
+ "sha1": "OGziqLNwK/2WRvfNVOZOfSXnsiY=",
+ "title": "Appaloosa Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/appaloosa-plugin/1.4.2/appaloosa-plugin.hpi",
+ "version": "1.4.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Appaloosa+Plugin"
+ },
+ "appdynamics-dashboard": {
+ "buildDate": "Apr 29, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mdonkers",
+ "email": "miel.donkers@codecentric.nl",
+ "name": "Miel Donkers"
+ }
+ ],
+ "excerpt": "This plugin integrates with <a href='http://www.appdynamics.com'>AppDynamics</a> to fetch measurements. ",
+ "gav": "org.jenkins-ci.plugins:appdynamics-dashboard:1.0.7",
+ "labels": [
+ "external",
+ "report"
+ ],
+ "name": "appdynamics-dashboard",
+ "previousTimestamp": "2014-07-28T21:20:16.00Z",
+ "previousVersion": "1.0.6",
+ "releaseTimestamp": "2015-04-29T21:25:52.00Z",
+ "requiredCore": "1.570",
+ "scm": "github.com",
+ "sha1": "+Wfw/xFYkq6fiiVTvYcLnh7/XwE=",
+ "title": "AppDynamics Dashboard Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/appdynamics-dashboard/1.0.7/appdynamics-dashboard.hpi",
+ "version": "1.0.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AppDynamics+Plugin"
+ },
+ "appetize": {
+ "buildDate": "Apr 03, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "weiyin",
+ "email": "weiyin@appetize.io",
+ "name": "Weiyin He"
+ },
+ {
+ "developerId": "jcsnyder",
+ "email": "john@appetize.io",
+ "name": "John Snyder"
+ }
+ ],
+ "excerpt": "Stream iOS &amp; Android builds directly within Jenkins via Appetize.io's cloud-based iOS Simulators &amp; Android Emulators.",
+ "gav": "org.jenkins-ci.plugins:appetize:1.1.0",
+ "labels": [
+ "upload",
+ "ios",
+ "android"
+ ],
+ "name": "appetize",
+ "previousTimestamp": "2015-01-27T00:32:44.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2015-04-03T01:06:12.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "x71X40lVbvwe2Zzd6SKWkrogA+o=",
+ "title": "Appetize.io Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/appetize/1.1.0/appetize.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Appetize.io+Plugin"
+ },
+ "appio": {
+ "buildDate": "Sep 10, 2013",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mprichard",
+ "email": "mprichard@cloudbees.com",
+ "name": "Mark Prichard"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with App.io for online iOS simulator support",
+ "gav": "org.jenkins-ci.plugins:appio:1.3",
+ "labels": [
+ "post-build",
+ "ios"
+ ],
+ "name": "appio",
+ "previousTimestamp": "2013-09-08T23:12:28.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2013-09-10T11:28:12.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "xyoNic9Q2QnEfrJ1O9uqu/JOaeA=",
+ "title": "Jenkins App.io Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/appio/1.3/appio.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/App.io+Plugin"
+ },
+ "application-director-plugin": {
+ "buildDate": "Nov 25, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jfullam",
+ "email": "jonathanfullam@gmail.com",
+ "name": "Jonathan Fullam"
+ }
+ ],
+ "excerpt": "Integrates Jenkins to vFabric Application Director",
+ "gav": "org.jenkins-ci.plugins:application-director-plugin:1.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "application-director-plugin",
+ "previousTimestamp": "2012-11-24T19:48:32.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-11-25T18:15:18.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "RnI/LBtk2Inxndos34t6fY4I+mE=",
+ "title": "vFabric Application Director Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/application-director-plugin/1.3/application-director-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/vFabric+Application+Director+Plugin"
+ },
+ "applitools-eyes": {
+ "buildDate": "Sep 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "applitools",
+ "email": "team@applitools.com",
+ "name": "Applitools Team"
+ }
+ ],
+ "excerpt": "This plugin adds <a href='https://applitools.com/'>Applitools Eyes</a> test results to your Jenkins build report. See this video for a recorded tutorial:&amp;nbsp;<a href='https://youtu.be/5MUaXS2_AmU'>https://youtu.be/5MUaXS2_AmU</a>.",
+ "gav": "org.jenkins-ci.plugins:applitools-eyes:1.4",
+ "labels": [
+ "report"
+ ],
+ "name": "applitools-eyes",
+ "previousTimestamp": "2016-09-13T10:28:40.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-09-14T18:55:54.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "0nS8d152HpUoOmboFzZ5uAlJpWY=",
+ "title": "Applitools Eyes Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/applitools-eyes/1.4/applitools-eyes.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Applitools+Eyes+Plugin"
+ },
+ "aqua-security-scanner": {
+ "buildDate": "Sep 11, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "norbyltd",
+ "email": "norbyltd@gmail.com"
+ }
+ ],
+ "excerpt": "Adds a Build Step for scanning Docker images, local or hosted on registries, for security vulnerabilities, using the API provided by <a href='https://www.aquasec.com'>Aqua Security</a>.",
+ "gav": "org.jenkins-ci.plugins:aqua-security-scanner:1.3.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "aqua-security-scanner",
+ "previousTimestamp": "2016-08-21T19:41:40.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2016-09-11T09:47:12.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "Ap2unB/d16fvmXz5APPuGQJ1n6E=",
+ "title": "Aqua Security Scanner",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aqua-security-scanner/1.3.2/aqua-security-scanner.hpi",
+ "version": "1.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Aqua+Security+Scanner+Plugin"
+ },
+ "archived-artifact-url-viewer": {
+ "buildDate": "Aug 01, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vimil",
+ "name": "Vimil Saju"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:archived-artifact-url-viewer:1.1",
+ "labels": [
+ "ui"
+ ],
+ "name": "archived-artifact-url-viewer",
+ "previousTimestamp": "2013-07-29T15:52:26.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-08-01T10:39:10.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "F8oQYsdzRtSa9amq+58TimTPoB4=",
+ "title": "Archived Artifact Url Viewer Plug-In",
+ "url": "http://updates.jenkins-ci.org/download/plugins/archived-artifact-url-viewer/1.1/archived-artifact-url-viewer.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Archived+Artifact+Url+Viewer+PlugIn"
+ },
+ "artifact-diff-plugin": {
+ "buildDate": "May 26, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Plugin can compare content of an artifact identified by its relative path among different builds. ",
+ "gav": "org.jenkins-ci.plugins:artifact-diff-plugin:1.3",
+ "labels": [],
+ "name": "artifact-diff-plugin",
+ "previousTimestamp": "2013-06-25T11:48:16.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-05-26T11:01:28.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "C5bS8vM2QYxndk1sa7ak+vpkhgg=",
+ "title": "Artifact diff Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/artifact-diff-plugin/1.3/artifact-diff-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Artifact+Diff+Plugin"
+ },
+ "artifact-promotion": {
+ "buildDate": "Dec 28, 2015",
+ "compatibleSinceVersion": "0.3.0",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.35"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "hcguersoy",
+ "email": "hcguersoy@gmail.com",
+ "name": "Halil-Cem Gürsoy"
+ }
+ ],
+ "excerpt": "Using this plugin you can promote artifacts by moving release candidates into release repositories. ",
+ "gav": "org.jenkins-ci.plugins:artifact-promotion:0.4.0",
+ "labels": [
+ "buildwrapper",
+ "post-build",
+ "maven",
+ "upload",
+ "external"
+ ],
+ "name": "artifact-promotion",
+ "previousTimestamp": "2015-09-23T21:51:24.00Z",
+ "previousVersion": "0.3.7",
+ "releaseTimestamp": "2015-12-28T16:47:08.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "RFe2+p5ILcoV94NMdyCXpAx2TTM=",
+ "title": "ArtifactPromotionPlugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/artifact-promotion/0.4.0/artifact-promotion.hpi",
+ "version": "0.4.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ArtifactPromotionPlugin"
+ },
+ "artifactdeployer": {
+ "buildDate": "Feb 16, 2015",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to copy artifacts to remote locations.",
+ "gav": "org.jenkins-ci.plugins:artifactdeployer:0.33",
+ "labels": [
+ "upload"
+ ],
+ "name": "artifactdeployer",
+ "previousTimestamp": "2014-08-14T22:21:20.00Z",
+ "previousVersion": "0.32",
+ "releaseTimestamp": "2015-02-16T17:00:00.00Z",
+ "requiredCore": "1.565.1",
+ "scm": "github.com",
+ "sha1": "O1XWoPII8gVwuNpTpDoh7WNnEmo=",
+ "title": "Jenkins Artifact Deployer Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/artifactdeployer/0.33/artifactdeployer.hpi",
+ "version": "0.33",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ArtifactDeployer+Plugin"
+ },
+ "artifactory": {
+ "buildDate": "Sep 26, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.521"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "flexible-publish",
+ "optional": true,
+ "version": "0.12"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "jira",
+ "optional": true,
+ "version": "2.2"
+ },
+ {
+ "name": "jenkins-multijob-plugin",
+ "optional": true,
+ "version": "1.13"
+ },
+ {
+ "name": "ant",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "p4",
+ "optional": true,
+ "version": "1.3.3"
+ },
+ {
+ "name": "ivy",
+ "optional": false,
+ "version": "1.17"
+ },
+ {
+ "name": "perforce",
+ "optional": true,
+ "version": "1.3.7"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.13"
+ },
+ {
+ "name": "subversion",
+ "optional": true,
+ "version": "2.5"
+ },
+ {
+ "name": "gradle",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.5.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "yossis",
+ "email": "yossis@jfrog.org",
+ "name": "Yossi Shaul"
+ }
+ ],
+ "excerpt": "This plugin allows deploying Maven 2, Maven 3, Ivy and Gradle artifacts and build info to the Artifactory artifacts manager.",
+ "gav": "org.jenkins-ci.plugins:artifactory:2.7.2",
+ "labels": [
+ "pipeline"
+ ],
+ "name": "artifactory",
+ "previousTimestamp": "2016-09-25T17:13:50.00Z",
+ "previousVersion": "2.7.1",
+ "releaseTimestamp": "2016-09-26T15:15:16.00Z",
+ "requiredCore": "1.521",
+ "scm": "github.com",
+ "sha1": "Uaf/TIBPd7jr5cEZqIAKZrVPlnY=",
+ "title": "Jenkins Artifactory Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/artifactory/2.7.2/artifactory.hpi",
+ "version": "2.7.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Artifactory+Plugin"
+ },
+ "asakusa-satellite-plugin": {
+ "buildDate": "Oct 23, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "suer",
+ "email": "suetsugu.r@gmail.com",
+ "name": "Ryo SUETSUGU"
+ }
+ ],
+ "excerpt": "This plugin notifies <a href='https://github.com/codefirst/AsakusaSatellite'>AsakusaSatellite</a> of build results. ",
+ "gav": "org.codefirst.jenkins.asakusasatellite:asakusa-satellite-plugin:0.1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "asakusa-satellite-plugin",
+ "previousTimestamp": "2012-10-23T00:22:24.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2012-10-23T16:35:50.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "UQMnOOD1ObzOU2XNOoTAExRKx3U=",
+ "title": "AsakusaSatellite Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/asakusa-satellite-plugin/0.1.1/asakusa-satellite-plugin.hpi",
+ "version": "0.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AsakusaSatellite+Plugin"
+ },
+ "assembla": {
+ "buildDate": "May 03, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lucamilanesio",
+ "email": "luca@milanesio.org",
+ "name": "Luca Milanesio"
+ }
+ ],
+ "excerpt": "This plugin integrates&amp;nbsp;<a href='http://www.assembla.com'>Assembla</a>&amp;nbsp;to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:assembla:1.4",
+ "labels": [
+ "external"
+ ],
+ "name": "assembla",
+ "previousTimestamp": "2013-04-18T15:12:34.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2013-05-03T18:50:06.00Z",
+ "requiredCore": "1.458",
+ "scm": "github.com",
+ "sha1": "VorNO45IMaRhYt/b+ADDS2MCMTg=",
+ "title": "Assembla plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/assembla/1.4/assembla.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Assembla+plugin"
+ },
+ "assembla-auth": {
+ "buildDate": "Aug 22, 2016",
+ "compatibleSinceVersion": "0.3",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "damir_assembla",
+ "name": "Damir Milovic"
+ },
+ {
+ "developerId": "vitaliel",
+ "name": "Vitalie Lazu"
+ }
+ ],
+ "excerpt": "This plugin enables OAuth (see <a href='http://oauth.net/'>http://oauth.net</a>) authentication for <a href='https://www.assembla.com'>Assembla</a> users to Jenkins instance using their Assembla credentials and delegate the authorization to an Assembla space permissions.",
+ "gav": "org.jenkins-ci.plugins:assembla-auth:1.11",
+ "labels": [
+ "external",
+ "user"
+ ],
+ "name": "assembla-auth",
+ "previousTimestamp": "2016-06-03T13:05:10.00Z",
+ "previousVersion": "1.09",
+ "releaseTimestamp": "2016-08-22T19:02:04.00Z",
+ "requiredCore": "1.622",
+ "scm": "git.assembla.com",
+ "sha1": "Shoic49RCElQy0x6EzH1A751e+o=",
+ "title": "Assembla Auth Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/assembla-auth/1.11/assembla-auth.hpi",
+ "version": "1.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Assembla+Auth+Plugin"
+ },
+ "assembla-merge-request-builder": {
+ "buildDate": "Sep 20, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.2.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "paveld",
+ "email": "pavel@assembla.com",
+ "name": "Pavel Dotsulenko"
+ }
+ ],
+ "excerpt": "Allows Jenkins to build merge requests from <a href='https://assembla.com/'>Assembla</a>.",
+ "gav": "org.jenkins-ci.plugins:assembla-merge-request-builder:1.1.4",
+ "labels": [
+ "trigger"
+ ],
+ "name": "assembla-merge-request-builder",
+ "previousTimestamp": "2016-04-25T23:13:58.00Z",
+ "previousVersion": "1.1.3",
+ "releaseTimestamp": "2016-09-20T11:47:06.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "WVf/gVIkyBn6fJq2QO4ON5EvmTE=",
+ "title": "Assembla merge request builder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/assembla-merge-request-builder/1.1.4/assembla-merge-request-builder.hpi",
+ "version": "1.1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Assembla+Merge+Request+Builder+Plugin"
+ },
+ "associated-files": {
+ "buildDate": "Aug 27, 2012",
+ "dependencies": [],
+ "developers": [],
+ "excerpt": "This plugin allows for marking files or directories outside of Jenkins as related to a build.",
+ "gav": "org.jenkinsci.plugins:associated-files:0.2.1",
+ "labels": [
+ "post-build"
+ ],
+ "name": "associated-files",
+ "previousTimestamp": "2012-03-23T13:51:00.00Z",
+ "previousVersion": "0.2.0",
+ "releaseTimestamp": "2012-08-27T08:36:20.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "TXHl3auAG4wvX6g1vuwpxX6rtu8=",
+ "title": "Associated Files Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/associated-files/0.2.1/associated-files.hpi",
+ "version": "0.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Associated+Files+Plugin"
+ },
+ "async-http-client": {
+ "buildDate": "Jun 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenc",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a shared dependency on the ning.com async-http-client library so that other plugins can co-operate when using this library. ",
+ "gav": "org.jenkins-ci.plugins:async-http-client:1.7.24.1",
+ "labels": [
+ "library"
+ ],
+ "name": "async-http-client",
+ "previousTimestamp": "2015-12-04T09:44:56.00Z",
+ "previousVersion": "1.7.24",
+ "releaseTimestamp": "2016-06-20T14:19:26.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "SC/TzSN+eOrewaDZJZyzLpIQV7E=",
+ "title": "Async Http Client",
+ "url": "http://updates.jenkins-ci.org/download/plugins/async-http-client/1.7.24.1/async-http-client.hpi",
+ "version": "1.7.24.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Async+Http+Client+Plugin"
+ },
+ "async-job": {
+ "buildDate": "Nov 21, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "Library plugin for custom job types that model external asynchronous processes",
+ "gav": "org.jenkins-ci.plugins:async-job:1.3",
+ "labels": [],
+ "name": "async-job",
+ "previousTimestamp": "2012-11-21T11:09:58.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-11-21T11:33:36.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "WaHABPk+pZbS91vn/A9MxuA4CwU=",
+ "title": "Asynchronous Job type plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/async-job/1.3/async-job.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Async+Job+Plugin"
+ },
+ "attention": {
+ "buildDate": "Oct 10, 2015",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": true,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "hanabishi",
+ "email": "jenkins@hanabi.se",
+ "name": "Marcus Jacobsson"
+ },
+ {
+ "developerId": "patrikha",
+ "name": "Patrik Harlén"
+ },
+ {
+ "developerId": "olofek",
+ "name": "Olof Ekedahl"
+ },
+ {
+ "developerId": "miphip",
+ "name": "Mikael Pahmp"
+ }
+ ],
+ "excerpt": "A plugin to handle red builds in Jenkins. The plugin allows users to volunteer to investigate/fix red builds. It also creates a report with all volunteers and a summary report of all the current red builds in a view. For develops it's possible to extend the attention plugin to create your own build failure detection to populete the issue list.",
+ "gav": "org.jenkins-ci.plugins:attention:1.1",
+ "labels": [],
+ "name": "attention",
+ "previousTimestamp": "2015-10-09T06:24:58.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-10-10T01:21:42.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "BuZiK7oTjcXtYqJ2vROxKjq5z6o=",
+ "title": "Attention",
+ "url": "http://updates.jenkins-ci.org/download/plugins/attention/1.1/attention.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Attention-plugin"
+ },
+ "audit-trail": {
+ "buildDate": "Aug 26, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ogondza"
+ }
+ ],
+ "excerpt": "Keep a log of who performed particular Jenkins operations, such as configuring jobs.",
+ "gav": "org.jenkins-ci.plugins:audit-trail:2.2",
+ "labels": [
+ "user"
+ ],
+ "name": "audit-trail",
+ "previousTimestamp": "2014-09-16T15:07:52.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2015-08-26T12:58:16.00Z",
+ "requiredCore": "1.520",
+ "scm": "github.com",
+ "sha1": "gEUEe0EhOkRlLLz0/Q7Q7qFFa1k=",
+ "title": "Audit Trail",
+ "url": "http://updates.jenkins-ci.org/download/plugins/audit-trail/2.2/audit-trail.hpi",
+ "version": "2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Audit+Trail+Plugin"
+ },
+ "audit2db": {
+ "buildDate": "Jan 25, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mscata",
+ "email": "mscata@hotmail.com",
+ "name": "Marco Scata"
+ }
+ ],
+ "excerpt": "This plugin provides database audit functionality to Jenkins. It allows recording build information to database, including the build parameters (if any), the node where the build is executed, and the user who started the build. ",
+ "gav": "org.jenkins-ci.plugins:audit2db:0.5",
+ "labels": [
+ "user"
+ ],
+ "name": "audit2db",
+ "previousTimestamp": "2013-01-21T17:06:04.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2013-01-25T11:36:44.00Z",
+ "requiredCore": "1.460",
+ "scm": "github.com",
+ "sha1": "I3DKjt+ClTYItaKHWoInLoCa/2Y=",
+ "title": "Jenkins Audit to Database Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/audit2db/0.5/audit2db.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Audit+To+Database+Plugin"
+ },
+ "authentication-tokens": {
+ "buildDate": "Jun 17, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides an API for converting credentials into authentication tokens in Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:authentication-tokens:1.3",
+ "labels": [],
+ "name": "authentication-tokens",
+ "previousTimestamp": "2015-09-07T16:55:16.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-06-17T09:27:26.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "L8NQdrDN05YwIZDwTAWBkhJZ9Cc=",
+ "title": "Authentication Tokens API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/authentication-tokens/1.3/authentication-tokens.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Authentication+Tokens+API+Plugin"
+ },
+ "authorize-project": {
+ "buildDate": "May 28, 2016",
+ "compatibleSinceVersion": "1.1.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ikedam",
+ "name": "IKEDA Yasuyuki"
+ }
+ ],
+ "excerpt": "Configure projects to run with specified authorization.",
+ "gav": "org.jenkins-ci.plugins:authorize-project:1.2.2",
+ "labels": [
+ "user"
+ ],
+ "name": "authorize-project",
+ "previousTimestamp": "2016-04-03T14:24:36.00Z",
+ "previousVersion": "1.2.1",
+ "releaseTimestamp": "2016-05-28T13:08:56.00Z",
+ "requiredCore": "1.625",
+ "scm": "github.com",
+ "sha1": "kT4ukhcUXd4hlIg5QX4TyWsQ4Hk=",
+ "title": "Authorize Project",
+ "url": "http://updates.jenkins-ci.org/download/plugins/authorize-project/1.2.2/authorize-project.hpi",
+ "version": "1.2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Authorize+Project+plugin"
+ },
+ "avatar": {
+ "buildDate": "Jun 23, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oxcafebabe",
+ "email": "edward@hurst-frost.net",
+ "name": "Edward Hurst-Frost"
+ }
+ ],
+ "excerpt": "This plugin allows avatar images to be uploaded and associated with Jenkins users.",
+ "gav": "net.hurstfrost.jenkins:avatar:1.2",
+ "labels": [
+ "user"
+ ],
+ "name": "avatar",
+ "previousTimestamp": "2012-05-24T12:22:40.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2013-06-23T09:40:32.00Z",
+ "requiredCore": "1.434",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "VFKpSiSzJJb+MVkzd4NuSeZvg4U=",
+ "title": "Avatar Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/avatar/1.2/avatar.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Avatar+Plugin"
+ },
+ "aws-beanstalk-publisher-plugin": {
+ "buildDate": "Sep 16, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "DavidTanner",
+ "email": "david.joel.tanner@gmail.com",
+ "name": "David Tanner"
+ }
+ ],
+ "excerpt": "Publish zip files to Amazon Web Service Elastic Beanstalk Applications.",
+ "gav": "org.jenkins-ci.plugins:aws-beanstalk-publisher-plugin:1.7.1",
+ "labels": [],
+ "name": "aws-beanstalk-publisher-plugin",
+ "previousTimestamp": "2016-04-27T12:56:46.00Z",
+ "previousVersion": "1.6.0",
+ "releaseTimestamp": "2016-09-16T14:22:14.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "771DqeM76i2WZADHoDFkOCp0VUQ=",
+ "title": "AWS Elastic Beanstalk Publisher Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aws-beanstalk-publisher-plugin/1.7.1/aws-beanstalk-publisher-plugin.hpi",
+ "version": "1.7.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWS+Beanstalk+Publisher+Plugin"
+ },
+ "aws-codepipeline": {
+ "buildDate": "Aug 10, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "biagic",
+ "email": "codepipeline-dev+jenkinsci@amazon.com",
+ "name": "Eduardo Lopez Biagi"
+ }
+ ],
+ "excerpt": "&#65279;<a href='https://aws.amazon.com/codepipeline/'>AWS CodePipeline</a> is a continuous delivery service for fast and reliable application updates.",
+ "gav": "com.amazonaws:aws-codepipeline:0.17",
+ "labels": [
+ "scm",
+ "post-build"
+ ],
+ "name": "aws-codepipeline",
+ "previousTimestamp": "2016-07-21T20:25:30.00Z",
+ "previousVersion": "0.16",
+ "releaseTimestamp": "2016-08-10T17:41:44.00Z",
+ "requiredCore": "1.479",
+ "scm": "github.com",
+ "sha1": "EVAzpTAmAxeMWgEfIVOP/84It3g=",
+ "title": "AWS CodePipeline Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aws-codepipeline/0.17/aws-codepipeline.hpi",
+ "version": "0.17",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWS+CodePipeline+Plugin"
+ },
+ "aws-credentials": {
+ "buildDate": "Jul 01, 2016",
+ "dependencies": [
+ {
+ "name": "credentials-binding",
+ "optional": false,
+ "version": "1.7"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.16"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "andresrc"
+ }
+ ],
+ "excerpt": "Allows storing Amazon IAM credentials within the Jenkins Credentials API. ",
+ "gav": "org.jenkins-ci.plugins:aws-credentials:1.16",
+ "labels": [],
+ "name": "aws-credentials",
+ "previousTimestamp": "2016-05-13T11:50:30.00Z",
+ "previousVersion": "1.15",
+ "releaseTimestamp": "2016-07-01T10:14:16.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "5zcnk7eEwZhbFCXxrHUYC2/9XU8=",
+ "title": "CloudBees Amazon Web Services Credentials Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aws-credentials/1.16/aws-credentials.hpi",
+ "version": "1.16",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+AWS+Credentials+Plugin"
+ },
+ "aws-device-farm": {
+ "buildDate": "Apr 16, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ahawker",
+ "email": "ahawker@amazon.com",
+ "name": "Andrew Hawker"
+ }
+ ],
+ "excerpt": "AWS Device Farm Jenkins Plugin",
+ "gav": "org.jenkins-ci.plugins:aws-device-farm:1.13",
+ "labels": [
+ "post-build",
+ "upload",
+ "android"
+ ],
+ "name": "aws-device-farm",
+ "previousTimestamp": "2016-03-14T16:41:30.00Z",
+ "previousVersion": "1.12",
+ "releaseTimestamp": "2016-04-16T10:19:06.00Z",
+ "requiredCore": "1.509.2",
+ "scm": "github.com",
+ "sha1": "m0gTg4JPtEjdyf1M+rYD7MctbaQ=",
+ "title": "aws-device-farm",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aws-device-farm/1.13/aws-device-farm.hpi",
+ "version": "1.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWS+Device+Farm+Plugin"
+ },
+ "aws-java-sdk": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "jackson2-api",
+ "optional": false,
+ "version": "2.5.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vlatombe",
+ "email": "vincent@latombe.net",
+ "name": "Vincent Latombe"
+ }
+ ],
+ "excerpt": "This plugin provides the <a href='https://aws.amazon.com/sdk-for-java/'>AWS SDK for Java</a> as a library to be used by other plugins. It follows the same versioning as the AWS SDK itself.",
+ "gav": "org.jenkins-ci.plugins:aws-java-sdk:1.11.37",
+ "labels": [],
+ "name": "aws-java-sdk",
+ "previousTimestamp": "2016-06-20T21:41:04.00Z",
+ "previousVersion": "1.10.50",
+ "releaseTimestamp": "2016-09-23T12:31:00.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "Q9OiKCLIH3Tm0jTa0i+/sS5U3MQ=",
+ "title": "Amazon Web Services SDK",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aws-java-sdk/1.11.37/aws-java-sdk.hpi",
+ "version": "1.11.37",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+Web+Services+SDK+library"
+ },
+ "aws-lambda": {
+ "buildDate": "Aug 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cast",
+ "name": "Michael Willemse"
+ }
+ ],
+ "excerpt": "This plugin adds AWS Lambda invocation and deployment abilities to build steps and post build actions ",
+ "gav": "org.jenkins-ci.plugins:aws-lambda:0.5.5",
+ "labels": [
+ "upload"
+ ],
+ "name": "aws-lambda",
+ "previousTimestamp": "2016-08-09T17:36:42.00Z",
+ "previousVersion": "0.5.4",
+ "releaseTimestamp": "2016-08-26T19:32:44.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "xIumVHsnTMBQW9MgNO7hrU8BvRE=",
+ "title": "AWS Lambda Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aws-lambda/0.5.5/aws-lambda.hpi",
+ "version": "0.5.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWS+Lambda+Plugin"
+ },
+ "aws-sqs": {
+ "buildDate": "Sep 21, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.4.4"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mwaylabs",
+ "email": "jenkins.ios.bot@mwaysolutions.com",
+ "name": "M-Way Solutions GmbH"
+ },
+ {
+ "developerId": "nickg",
+ "email": "nickgrealy@gmail.com",
+ "name": "Nick Grealy"
+ }
+ ],
+ "excerpt": "Jenkins plugin that triggers builds on events that are published via Amazon Simple Queue Service (SQS) ",
+ "gav": "io.relution.jenkins:aws-sqs:1.004",
+ "labels": [
+ "trigger"
+ ],
+ "name": "aws-sqs",
+ "releaseTimestamp": "2016-09-21T15:12:00.00Z",
+ "requiredCore": "1.651.2",
+ "scm": "github.com",
+ "sha1": "gqNyMm1FDhz7kukT+MpWzg9aRMA=",
+ "title": "AWS SQS Build Trigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/aws-sqs/1.004/aws-sqs.hpi",
+ "version": "1.004",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWS+SQS+Plugin"
+ },
+ "awseb-deployment-plugin": {
+ "buildDate": "Jun 15, 2016",
+ "compatibleSinceVersion": "0.0.4",
+ "dependencies": [
+ {
+ "name": "aws-credentials",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.12.1"
+ },
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.45"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aldrinleal",
+ "name": "Aldrin Leal"
+ }
+ ],
+ "excerpt": "This plugin allows you to deploy into <a href='http://aws.amazon.com/elasticbeanstalk/'>AWS Elastic Beanstalk</a> by Packaging, Creating a new Application Version, and Updating an Environment",
+ "gav": "br.com.ingenieux.jenkins.plugins:awseb-deployment-plugin:0.3.10",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "awseb-deployment-plugin",
+ "previousTimestamp": "2016-05-09T11:20:22.00Z",
+ "previousVersion": "0.3.8",
+ "releaseTimestamp": "2016-06-15T22:38:40.00Z",
+ "requiredCore": "1.642.1",
+ "scm": "github.com",
+ "sha1": "uKyamyGxp9Z68vkJPUBi9m53UIA=",
+ "title": "AWS Elastic Beanstalk Deployment Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/awseb-deployment-plugin/0.3.10/awseb-deployment-plugin.hpi",
+ "version": "0.3.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWSEB+Deployment+Plugin"
+ },
+ "azure-batch-parallel": {
+ "buildDate": "Aug 05, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "junguan@microsoft.com",
+ "name": "Jun Guan"
+ },
+ {
+ "email": "mominhaz@microsoft.com",
+ "name": "Mohammad Minhaz"
+ }
+ ],
+ "excerpt": "This Jenkins post-build plugin allows you to execute tests in parallel with the Microsoft Azure Batch service, and can reduce the duration of your test runs, and therefore, potentially the cost. Azure Batch enables you to run parallel applications efficiently in the cloud. It's a platform service that schedules tasks to run on a managed collection of virtual machines. You can find an introduction to the Batch service in the <a href='https://azure.microsoft.com/documentation/articles/batch-technical-overview/'>Basics of Azure Batch</a>. ",
+ "gav": "com.microsoft.azurebatch:azure-batch-parallel:0.1",
+ "labels": [
+ "post-build"
+ ],
+ "name": "azure-batch-parallel",
+ "releaseTimestamp": "2016-08-05T17:14:30.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "vLrdywq5QooHwzcQn4ztlqfaFSU=",
+ "title": "Azure Batch Parallel Test Execution Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/azure-batch-parallel/0.1/azure-batch-parallel.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Azure+Batch+Parallel+Test+Execution+Plugin"
+ },
+ "azure-publishersettings-credentials": {
+ "buildDate": "Sep 19, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "credentials-binding",
+ "optional": true,
+ "version": "1.7"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.11.2-0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nicolas",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ }
+ ],
+ "excerpt": "This plugin manage Azure PublisherSettings using Jenkins Crendentials API. ",
+ "gav": "org.jenkins-ci.plugins:azure-publishersettings-credentials:1.2",
+ "labels": [],
+ "name": "azure-publishersettings-credentials",
+ "previousTimestamp": "2015-09-17T11:43:34.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-09-19T20:13:24.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "dT0SoVsryhefXjue7JMuvpXaq1o=",
+ "title": "Azure PublisherSettings Credentials Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/azure-publishersettings-credentials/1.2/azure-publishersettings-credentials.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Azure+PublisherSettings+Credentials+Plugin"
+ },
+ "azure-slave-plugin": {
+ "buildDate": "Jan 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "martinsawicki",
+ "email": "marcins@microsoft.com",
+ "name": "Martin Sawicki"
+ },
+ {
+ "developerId": "snallami",
+ "email": "snallami@gmail.com",
+ "name": "Suresh Nallamilli"
+ }
+ ],
+ "excerpt": "Azure plugin to provision and deprovision slaves. ",
+ "gav": "org.jenkins-ci.plugins:azure-slave-plugin:0.3.3",
+ "labels": [
+ "cluster"
+ ],
+ "name": "azure-slave-plugin",
+ "previousTimestamp": "2015-05-26T05:03:28.00Z",
+ "previousVersion": "0.3.2",
+ "releaseTimestamp": "2016-01-17T17:39:26.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "a7brH7MIBRXr/3vpcLPXgKMbw1I=",
+ "title": "Azure Slave Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/azure-slave-plugin/0.3.3/azure-slave-plugin.hpi",
+ "version": "0.3.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Azure+Slave+Plugin"
+ },
+ "backlog": {
+ "buildDate": "Oct 04, 2015",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "1.1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dragon3",
+ "name": "Ryuzo Yamamoto"
+ },
+ {
+ "developerId": "ikikko",
+ "name": "Tomonari Nakamura"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://backlogtool.com/'>Backlog</a> (<a href='http://backlog.jp'>for Japanese users</a>) to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:backlog:1.11",
+ "labels": [
+ "notifier",
+ "external",
+ "user",
+ "upload"
+ ],
+ "name": "backlog",
+ "previousTimestamp": "2014-05-06T21:42:36.00Z",
+ "previousVersion": "1.10",
+ "releaseTimestamp": "2015-10-04T02:03:20.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "VBYdVHpC91rliwlJRP5PC752Bxo=",
+ "title": "Jenkins Backlog plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/backlog/1.11/backlog.hpi",
+ "version": "1.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Backlog+Plugin"
+ },
+ "backup": {
+ "buildDate": "Aug 04, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vsellier",
+ "name": "Vincent Sellier"
+ },
+ {
+ "developerId": "rseguy",
+ "name": "Romain Seguy"
+ }
+ ],
+ "excerpt": "Backup plugin allows archiving and restoring your Jenkins (and Hudson) home directory.",
+ "gav": "org.jvnet.hudson.plugins:backup:1.6.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "backup",
+ "previousTimestamp": "2010-12-10T15:48:50.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2011-08-04T14:44:02.00Z",
+ "requiredCore": "1.375",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "zJzJeZ1RJUAHLcTMCX1h6oXj3l0=",
+ "title": "Backup plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/backup/1.6.1/backup.hpi",
+ "version": "1.6.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Backup+Plugin"
+ },
+ "backup-interrupt-plugin": {
+ "buildDate": "Jan 18, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "Back up and restore runing jobs",
+ "gav": "jenkins.ci.plugins.backup:backup-interrupt-plugin:1.0",
+ "labels": [],
+ "name": "backup-interrupt-plugin",
+ "releaseTimestamp": "2013-01-18T13:19:26.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "n18hDbEengF1BSMYcYMl8WwORBw=",
+ "title": "Backup and interrupt job pluign",
+ "url": "http://updates.jenkins-ci.org/download/plugins/backup-interrupt-plugin/1.0/backup-interrupt-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Backup+and+interrupt+running+job+plugin"
+ },
+ "bamboo-notifier": {
+ "buildDate": "Apr 22, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "asgeirn",
+ "email": "asgeir@twingine.no",
+ "name": "Asgeir Storesund Nilsen"
+ }
+ ],
+ "excerpt": "Trigger a Bamboo build upon successful completion of a Jenkins job.",
+ "gav": "hudson.plugins.bamboo:bamboo-notifier:1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "bamboo-notifier",
+ "previousTimestamp": "2009-12-30T16:05:20.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2010-04-22T23:49:02.00Z",
+ "requiredCore": "1.355",
+ "scm": "svn.dev.java.net",
+ "sha1": "6B/9qHkLC0818IeGfLOo+TAo3I0=",
+ "title": "Bamboo Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bamboo-notifier/1.1/bamboo-notifier.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bamboo+Notifier"
+ },
+ "batch-task": {
+ "buildDate": "Jul 01, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "mindless",
+ "name": "Alan Harder"
+ }
+ ],
+ "excerpt": "This plugin adds batch tasks that are not regularly executed to projects, such as releases, integration, archiving, etc.",
+ "gav": "org.jenkins-ci.plugins:batch-task:1.19",
+ "labels": [
+ "post-build",
+ "builder"
+ ],
+ "name": "batch-task",
+ "previousTimestamp": "2016-06-07T16:15:58.00Z",
+ "previousVersion": "1.18",
+ "releaseTimestamp": "2016-07-01T15:31:56.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "OJuBEDUxJCog354/8IyIpKXpUAE=",
+ "title": "Jenkins batch task plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/batch-task/1.19/batch-task.hpi",
+ "version": "1.19",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Batch+Task+Plugin"
+ },
+ "bazaar": {
+ "buildDate": "Feb 19, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stewart",
+ "email": "stewart@flamingspork.com",
+ "name": "Stewart Smith"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://bazaar-vcs.org/'>Bazaar</a> version control system to Jenkins. The plugin requires the Bazaar binary (bzr) to be installed on the target machine.",
+ "gav": "org.jenkins-ci.plugins:bazaar:1.22",
+ "labels": [
+ "scm"
+ ],
+ "name": "bazaar",
+ "previousTimestamp": "2012-10-12T18:34:24.00Z",
+ "previousVersion": "1.21",
+ "releaseTimestamp": "2013-02-19T20:09:20.00Z",
+ "requiredCore": "1.413",
+ "scm": "github.com",
+ "sha1": "47k7P8pwU/kCfEIrEqWjSN7ZivA=",
+ "title": "Jenkins Bazaar plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bazaar/1.22/bazaar.hpi",
+ "version": "1.22",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bazaar+Plugin"
+ },
+ "bds-plugin": {
+ "buildDate": "Nov 28, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kazssym",
+ "email": "kazssym@vx68k.org",
+ "name": "Kaz Nishimura"
+ }
+ ],
+ "excerpt": "This plugin allows users to build <a href='http://www.embarcadero.com/products/rad-studio'>RAD Studio</a> (<a href='http://www.embarcadero.com/products/delphi'>Delphi</a> or <a href='http://www.embarcadero.com/products/cbuilder'>C++Builder</a>) projects or project groups in a job.",
+ "gav": "org.jenkins-ci.plugins:bds-plugin:3.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "bds-plugin",
+ "previousTimestamp": "2014-11-22T13:52:38.00Z",
+ "previousVersion": "3.0",
+ "releaseTimestamp": "2014-11-28T13:41:40.00Z",
+ "requiredCore": "1.532",
+ "scm": "bitbucket.org",
+ "sha1": "A949WebezNq6wprKxl/M0S+LRRY=",
+ "title": "RAD Studio Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bds-plugin/3.1/bds-plugin.hpi",
+ "version": "3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RAD+Studio+Plugin"
+ },
+ "beaker-builder": {
+ "buildDate": "Aug 09, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ogondza",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "This plugin ingrates Jenkins with <a href='http://beaker-project.org/'>Beaker</a>. ",
+ "gav": "org.jenkins-ci.plugins:beaker-builder:1.9",
+ "labels": [
+ "builder",
+ "external"
+ ],
+ "name": "beaker-builder",
+ "previousTimestamp": "2015-05-30T19:05:28.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2016-08-09T15:30:14.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "QLvHqdGVYLweAaGA2+I1644s4n0=",
+ "title": "Jenkins Beaker builder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/beaker-builder/1.9/beaker-builder.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Beaker+Builder+Plugin"
+ },
+ "bearychat": {
+ "buildDate": "Feb 18, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "yuanbohan",
+ "email": "yuanbo.han@bearyinnovative.com",
+ "name": "Yuanbo Han"
+ }
+ ],
+ "excerpt": "Integrate Jenkins with BearyChat.",
+ "gav": "org.jenkins-ci.plugins:bearychat:2.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "bearychat",
+ "previousTimestamp": "2016-01-28T23:20:04.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-02-18T00:15:12.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "uKcxNEgOIgRQUReItyfgn6253L4=",
+ "title": "BearyChat Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bearychat/2.1/bearychat.hpi",
+ "version": "2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bearychat+Plugin"
+ },
+ "beer": {
+ "buildDate": "Mar 21, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "We all need beer from time to time",
+ "gav": "org.jenkins-ci.plugins:beer:1.2",
+ "labels": [],
+ "name": "beer",
+ "previousTimestamp": "2012-01-04T09:43:28.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2012-03-21T09:59:58.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "FLwF/QynS4lSxqG3eBrGBSkiYxw=",
+ "title": "Beer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/beer/1.2/beer.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Beer+Plugin"
+ },
+ "bigpanda-jenkins": {
+ "buildDate": "Nov 06, 2014",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "1.1.26"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "erikzaadi",
+ "email": "erik.zaadi@gmail.com",
+ "name": "Erik Zaadi"
+ }
+ ],
+ "excerpt": "Notify <a href='http://bigpanda.io'>BigPanda</a> of Jenkins builds ",
+ "gav": "org.jenkins-ci.plugins:bigpanda-jenkins:1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "bigpanda-jenkins",
+ "previousTimestamp": "2014-10-13T12:08:46.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2014-11-06T15:08:10.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "4YOHQIto2pMGvOu2Xmjd+ZQA4B4=",
+ "title": "BigPanda Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bigpanda-jenkins/1.1/bigpanda-jenkins.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BigPanda+Jenkins+Plugin"
+ },
+ "bitbucket": {
+ "buildDate": "Jan 26, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3.5"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.40"
+ },
+ {
+ "name": "mercurial",
+ "optional": false,
+ "version": "1.54"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "fbelzunc"
+ }
+ ],
+ "excerpt": "integrate Jenkins with BitBucket.",
+ "gav": "org.jenkins-ci.plugins:bitbucket:1.1.5",
+ "labels": [],
+ "name": "bitbucket",
+ "previousTimestamp": "2015-12-28T23:42:36.00Z",
+ "previousVersion": "1.1.4",
+ "releaseTimestamp": "2016-01-26T09:01:18.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "W4PSHdrNOdj61v1JHgF46C2AmV4=",
+ "title": "Jenkins Bitbucket Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bitbucket/1.1.5/bitbucket.hpi",
+ "version": "1.1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BitBucket+Plugin"
+ },
+ "bitbucket-approve": {
+ "buildDate": "Apr 03, 2015",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.2.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bhurling",
+ "email": "hurling83@gmail.com",
+ "name": "Bjoern Hurling"
+ }
+ ],
+ "excerpt": "This Plugin enables Jenkins to approve commits on Bitbucket after successful builds. ",
+ "gav": "org.jenkins-ci.plugins:bitbucket-approve:1.0.3",
+ "labels": [
+ "post-build",
+ "report",
+ "notifier"
+ ],
+ "name": "bitbucket-approve",
+ "previousTimestamp": "2015-03-23T19:22:48.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2015-04-03T17:08:52.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "KsowpN1nxg3L4pekdDjkCIxJ1ng=",
+ "title": "Bitbucket Approve Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bitbucket-approve/1.0.3/bitbucket-approve.hpi",
+ "version": "1.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+Approve+Plugin"
+ },
+ "bitbucket-build-status-notifier": {
+ "buildDate": "Jul 13, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.0"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "mercurial",
+ "optional": false,
+ "version": "1.54"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": false,
+ "version": "0.6"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "amansilla",
+ "email": "antonio.mansilla@flagbit.de",
+ "name": "Antonio Mansilla"
+ }
+ ],
+ "excerpt": "Every time you trigger a build, you don't have to log in to your build server to see if it passed or failed. Now you will be able to know when your build is passing right within the Bitbucket UI.&amp;nbsp;",
+ "gav": "org.jenkins-ci.plugins:bitbucket-build-status-notifier:1.3.0",
+ "labels": [
+ "scm-related",
+ "notifier"
+ ],
+ "name": "bitbucket-build-status-notifier",
+ "previousTimestamp": "2016-06-16T16:37:42.00Z",
+ "previousVersion": "1.2.2",
+ "releaseTimestamp": "2016-07-13T09:38:28.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "GVmLbETL/VDI/m3vvqwQa7MbSMQ=",
+ "title": "Bitbucket Build Status Notifier Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bitbucket-build-status-notifier/1.3.0/bitbucket-build-status-notifier.hpi",
+ "version": "1.3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+Cloud+Build+Status+Notifier+Plugin"
+ },
+ "bitbucket-oauth": {
+ "buildDate": "Jun 05, 2016",
+ "compatibleSinceVersion": "0.3",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mallowlabs",
+ "email": "mallowlabs@gmail.com",
+ "name": "mallowlabs"
+ }
+ ],
+ "excerpt": "This Jenkins plugin enables OAuth authentication for <a href='https://bitbucket.org'>Bitbucket</a> users. ",
+ "gav": "org.jenkins-ci.plugins:bitbucket-oauth:0.5",
+ "labels": [
+ "external"
+ ],
+ "name": "bitbucket-oauth",
+ "previousTimestamp": "2014-05-14T00:45:56.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2016-06-05T01:23:06.00Z",
+ "requiredCore": "1.645",
+ "scm": "github.com",
+ "sha1": "+3raJk6pqnMls5EHKJi6zUB9Two=",
+ "title": "Bitbucket OAuth Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bitbucket-oauth/0.5/bitbucket-oauth.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+OAuth+Plugin"
+ },
+ "bitbucket-pullrequest-builder": {
+ "buildDate": "Jun 03, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.2.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nishio_dens",
+ "email": "nishio@densan-labs.net",
+ "name": "nishio_dens"
+ }
+ ],
+ "excerpt": "This plugin builds pull requests from Bitbucket.org and will report the test results.",
+ "gav": "org.jenkins-ci.plugins:bitbucket-pullrequest-builder:1.4.19",
+ "labels": [
+ "trigger"
+ ],
+ "name": "bitbucket-pullrequest-builder",
+ "previousTimestamp": "2016-04-30T00:21:32.00Z",
+ "previousVersion": "1.4.18",
+ "releaseTimestamp": "2016-06-03T00:45:04.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "8FePHi6VB71+C6Ax4BXHt7JVe8Q=",
+ "title": "Bitbucket Pullrequest Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bitbucket-pullrequest-builder/1.4.19/bitbucket-pullrequest-builder.hpi",
+ "version": "1.4.19",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+pullrequest+builder+plugin"
+ },
+ "bitkeeper": {
+ "buildDate": "Aug 17, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mdonohue",
+ "email": "michael.donohue@gmail.com",
+ "name": "Michael Donohue"
+ }
+ ],
+ "excerpt": "Add BitKeeper support to Jenkins",
+ "gav": "org.jenkins-ci.plugins:bitkeeper:1.8",
+ "labels": [
+ "scm"
+ ],
+ "name": "bitkeeper",
+ "previousTimestamp": "2011-10-11T02:26:58.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2015-08-17T23:12:44.00Z",
+ "requiredCore": "1.613",
+ "scm": "github.com",
+ "sha1": "j9Wu3wVN4XKOrOJkVjbVfxFbdZM=",
+ "title": "BitKeeeper plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bitkeeper/1.8/bitkeeper.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BitKeeper+Plugin"
+ },
+ "blame-upstream-commiters": {
+ "buildDate": "Sep 15, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "taksan",
+ "email": "g.takeuchi@gmail.com",
+ "name": "Gabriel Takeuchi"
+ },
+ {
+ "developerId": "willemv",
+ "name": "Willem Verstraeten"
+ }
+ ],
+ "excerpt": "This is a simple plugin that adds a post build action to mail upstream committers when a build fails.",
+ "gav": "hudson.plugins:blame-upstream-commiters:1.2",
+ "labels": [
+ "notifier"
+ ],
+ "name": "blame-upstream-commiters",
+ "previousTimestamp": "2010-01-21T12:26:24.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2010-09-15T21:37:02.00Z",
+ "requiredCore": "1.375",
+ "scm": "svn.dev.java.net",
+ "sha1": "kZeGWhk47OJBs9OJWnGBmnF23yE=",
+ "title": "Blame Upstream Committers",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blame-upstream-commiters/1.2/blame-upstream-commiters.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blame+Upstream+Committers+Plugin"
+ },
+ "blink1": {
+ "buildDate": "Dec 20, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "maripo",
+ "email": "goda.mariko@gmail.com",
+ "name": "Maripo GODA"
+ }
+ ],
+ "excerpt": "This plugin shows build results with <a href='http://thingm.com/products/blink-1.html'>blink(1)</a>, a tiny full-color status light.",
+ "gav": "org.jenkins-ci.plugins:blink1:1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "blink1",
+ "previousTimestamp": "2012-12-17T00:07:30.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2012-12-20T22:46:06.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "Ga4ZFkUrbwosjuvCmnNSvxG2/oc=",
+ "title": "BLINK(1) Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blink1/1.1/blink1.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blink1+Plugin"
+ },
+ "blitz_io-jenkins": {
+ "buildDate": "Jun 05, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jeffli",
+ "email": "jeff.li@spirent.com",
+ "name": "Jeff Li"
+ }
+ ],
+ "excerpt": "This plugin allows you to run web load tests from the cloud&amp;nbsp;using&amp;nbsp;<a href='http://blitz.io'>Blitz.io</a>.&amp;nbsp; ",
+ "gav": "io.blitz:blitz_io-jenkins:1.04",
+ "labels": [
+ "external"
+ ],
+ "name": "blitz_io-jenkins",
+ "previousTimestamp": "2012-06-04T13:08:32.00Z",
+ "previousVersion": "1.03",
+ "releaseTimestamp": "2012-06-05T13:33:34.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "N6OPL25lUyGUWNHcBbf0FebR2Ao=",
+ "title": "Blitz.io Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blitz_io-jenkins/1.04/blitz_io-jenkins.hpi",
+ "version": "1.04",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blitz_io"
+ },
+ "block-queued-job": {
+ "buildDate": "Jan 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "KostyaSha",
+ "email": "kanstantsin.sha@gmail.com",
+ "name": "Kanstantsin Shautsou"
+ }
+ ],
+ "excerpt": "Blocks/unblocks job in queue with matched conditions scope",
+ "gav": "org.jenkins-ci.plugins:block-queued-job:0.2.0",
+ "labels": [
+ "queue"
+ ],
+ "name": "block-queued-job",
+ "previousTimestamp": "2015-04-28T17:20:00.00Z",
+ "previousVersion": "0.1.1",
+ "releaseTimestamp": "2016-01-21T23:28:56.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "n3CQ8i9lO/JUEvVgpg1/Z5yY0TA=",
+ "title": "Block Queued Job Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/block-queued-job/0.2.0/block-queued-job.hpi",
+ "version": "0.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Block+queued+job+plugin"
+ },
+ "blueocean": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "blueocean-web",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-rest-impl",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-commons",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-dashboard",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-personalization",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-jwt",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-config",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-rest",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "pipeline-model-definition",
+ "optional": false,
+ "version": "0.2"
+ },
+ {
+ "name": "blueocean-pipeline-api-impl",
+ "optional": false,
+ "version": "1.0.0-b07"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean",
+ "previousTimestamp": "2016-09-13T22:57:54.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:35:08.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "IAQoSv/fgAloRqQe8Wds4jCVke4=",
+ "title": "BlueOcean beta",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean/1.0.0-b07/blueocean.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-commons": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-commons:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-commons",
+ "previousTimestamp": "2016-09-13T22:49:28.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:02:32.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "763DIWlbEoaT3aVn9Y0qOM3ZUVM=",
+ "title": "Module :: BlueOcean :: Commons API",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-commons/1.0.0-b07/blueocean-commons.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-config": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "blueocean-web",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-commons",
+ "optional": false,
+ "version": "1.0.0-b07"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-config:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-config",
+ "previousTimestamp": "2016-09-13T22:57:42.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:34:42.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "RfvkITYGl26hTb186POI1RpsDrE=",
+ "title": "Module :: BlueOcean :: Config",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-config/1.0.0-b07/blueocean-config.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-dashboard": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "blueocean-events",
+ "optional": false,
+ "version": "1.0.0-b07"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-dashboard:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-dashboard",
+ "previousTimestamp": "2016-09-13T22:54:38.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:24:34.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "VGw4szffjU7IXPuWV5b+Jec/0nY=",
+ "title": "Module :: BlueOcean :: Dashboard",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-dashboard/1.0.0-b07/blueocean-dashboard.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-events": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "blueocean-pipeline-api-impl",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "sse-gateway",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-events:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-events",
+ "previousTimestamp": "2016-09-13T22:52:44.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:18:46.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "UtrSVLRqsedcfCdyRu3g4TwrYyw=",
+ "title": "Module :: BlueOcean :: Events",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-events/1.0.0-b07/blueocean-events.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-jwt": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.16"
+ },
+ {
+ "name": "blueocean-commons",
+ "optional": false,
+ "version": "1.0.0-b07"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-jwt:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-jwt",
+ "previousTimestamp": "2016-09-13T22:51:40.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:07:38.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "BhU7+ymOm9C79EC9K6L8Z5w2ysg=",
+ "title": "Module :: BlueOcean :: JWT module",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-jwt/1.0.0-b07/blueocean-jwt.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-personalization": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "blueocean-events",
+ "optional": false,
+ "version": "1.0.0-b07"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-personalization:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-personalization",
+ "previousTimestamp": "2016-09-13T22:56:36.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:31:04.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "XuF4SvZp2aVvbITD9y6WW4N0ab0=",
+ "title": "Module :: BlueOcean :: Personalization",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-personalization/1.0.0-b07/blueocean-personalization.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-pipeline-api-impl": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "github-branch-source",
+ "optional": false,
+ "version": "1.8.1"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "workflow-multibranch",
+ "optional": false,
+ "version": "2.8"
+ },
+ {
+ "name": "workflow-durable-task-step",
+ "optional": false,
+ "version": "2.4"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "2.6"
+ },
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "blueocean-rest-impl",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.15"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-pipeline-api-impl:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-pipeline-api-impl",
+ "previousTimestamp": "2016-09-13T22:52:12.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:11:14.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "+Y428KfyWft00AHZD9dQ6y+nWGA=",
+ "title": "Module :: BlueOcean :: Pipeline REST API implementation",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-pipeline-api-impl/1.0.0-b07/blueocean-pipeline-api-impl.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-rest": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "blueocean-commons",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "blueocean-web",
+ "optional": false,
+ "version": "1.0.0-b07"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-rest:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-rest",
+ "previousTimestamp": "2016-09-13T22:51:32.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:07:14.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "FPwE/9zodWCaEwGma6snk0WdbuI=",
+ "title": "Module :: BlueOcean :: Rest module",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-rest/1.0.0-b07/blueocean-rest.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-rest-impl": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "blueocean-jwt",
+ "optional": false,
+ "version": "1.0.0-b07"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.16"
+ },
+ {
+ "name": "favorite",
+ "optional": false,
+ "version": "1.16"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.12.1"
+ },
+ {
+ "name": "blueocean-rest",
+ "optional": false,
+ "version": "1.0.0-b07"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-rest-impl:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-rest-impl",
+ "previousTimestamp": "2016-09-13T22:51:50.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:08:00.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "MEb4wApUfq6N1rhtjaWz6VgASXg=",
+ "title": "Module :: BlueOcean :: REST API implementation",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-rest-impl/1.0.0-b07/blueocean-rest-impl.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "blueocean-web": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "metrics",
+ "optional": false,
+ "version": "3.0.9"
+ },
+ {
+ "name": "variant",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "scherler",
+ "name": "Thorsten Iberian Sumurai"
+ },
+ {
+ "developerId": "cliffmeyers",
+ "name": "Cliff Meyers"
+ },
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ },
+ {
+ "developerId": "vivek",
+ "name": "Vivek Pandey"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke"
+ },
+ {
+ "developerId": "sophistifunk",
+ "name": "Josh McDonald"
+ },
+ {
+ "developerId": "imeredith",
+ "name": "Ivan Meredith"
+ },
+ {
+ "developerId": "michaelneale",
+ "name": "Michael Neale"
+ },
+ {
+ "developerId": "kzantow",
+ "name": "Keith Zantow"
+ },
+ {
+ "developerId": "i386",
+ "name": "James Dumay"
+ },
+ {
+ "developerId": "marcesher",
+ "name": "Marc"
+ },
+ {
+ "developerId": "dragoonis",
+ "name": "Paul Dragoonis"
+ },
+ {
+ "developerId": "pragmaticivan",
+ "name": "Ivan Santos"
+ },
+ {
+ "developerId": "PeterDaveHello",
+ "name": "Peter Dave Hello"
+ },
+ {
+ "developerId": "alexsomai",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "A new user experience for Jenkins",
+ "gav": "io.jenkins.blueocean:blueocean-web:1.0.0-b07",
+ "labels": [
+ "ui"
+ ],
+ "name": "blueocean-web",
+ "previousTimestamp": "2016-09-13T22:51:12.00Z",
+ "previousVersion": "1.0.0-b06",
+ "releaseTimestamp": "2016-09-27T11:06:00.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "T1JsusqtY0rW7sM4K6+9W1Q0NiA=",
+ "title": "Module :: BlueOcean :: Web module",
+ "url": "http://updates.jenkins-ci.org/download/plugins/blueocean-web/1.0.0-b07/blueocean-web.hpi",
+ "version": "1.0.0-b07",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blue+Ocean+Plugin"
+ },
+ "bmc-rpd": {
+ "buildDate": "Apr 22, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "aivaniuk",
+ "email": "Anatolii_Ivaniuk_CW@bmc.com",
+ "name": "Anatolii Ivaniuk"
+ }
+ ],
+ "excerpt": "The RPD Plugin integrates Jenkins with BMC Release Package and Deployment (RPD)&amp;nbsp;",
+ "gav": "RPD:bmc-rpd:1.1",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "bmc-rpd",
+ "releaseTimestamp": "2016-04-22T20:04:50.00Z",
+ "requiredCore": "1.639",
+ "scm": "github.com",
+ "sha1": "RKgbyZyjkkDdB708bA5WfvfdbCc=",
+ "title": "BMC Release Package and Deployment plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bmc-rpd/1.1/bmc-rpd.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RPD+Plugin"
+ },
+ "boot-clj": {
+ "buildDate": "Apr 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "joelws",
+ "email": "jdws.dev@gmail.com",
+ "name": "Joel Whittaker-Smith"
+ }
+ ],
+ "excerpt": "Allows users to build projects using <a href='http://boot-clj.com/'>Boot</a> ",
+ "gav": "org.jenkins-ci.plugins:boot-clj:1.0.0",
+ "labels": [
+ "builder"
+ ],
+ "name": "boot-clj",
+ "releaseTimestamp": "2016-04-20T22:48:56.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "jFWLa0YcxCm+kqicF8RwXVSSIIo=",
+ "title": "Boot build tool for Clojure",
+ "url": "http://updates.jenkins-ci.org/download/plugins/boot-clj/1.0.0/boot-clj.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Boot-clj+Plugin"
+ },
+ "bootstrap": {
+ "buildDate": "Mar 03, 2016",
+ "dependencies": [
+ {
+ "name": "jquery-detached",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "tfennelly"
+ }
+ ],
+ "excerpt": "Twitter Bootstrap Plugin",
+ "gav": "org.jenkins-ci.ui:bootstrap:1.3.2",
+ "labels": [],
+ "name": "bootstrap",
+ "previousTimestamp": "2016-01-04T13:05:38.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2016-03-03T12:07:30.00Z",
+ "requiredCore": "1.580.1",
+ "sha1": "yDtTMYpjVDMhPYDQSHh+N5zgzGE=",
+ "title": "JavaScript GUI Lib: Twitter Bootstrap bundle plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bootstrap/1.3.2/bootstrap.hpi",
+ "version": "1.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Twitter+Bootstrap"
+ },
+ "bootstraped-multi-test-results-report": {
+ "buildDate": "Sep 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bogdanlivadariu",
+ "email": "bogdan.livadariu@gmail.com",
+ "name": "Bogdan Livadariu"
+ }
+ ],
+ "excerpt": "Allows you to have a pretty bootstraped HTML report of the test results generated by the automated tests for <a href='https://web-innovate.github.io/cucumber-reports/featuresOverview.html'>Cucumber </a>/ JUnit / RSpec / TestNG. <a href='https://gitter.im/web-innovate/bootstraped-multi-test-results-report?utm_source=share-link&amp;utm_medium=link&amp;utm_campaign=share-link'>Join chat</a> for more details about the plugin, or visit <a href='https://github.com/web-innovate/bootstraped-multi-test-results-report'>repo</a> or <a href='http://web-innovate.github.io/bootstraped-multi-test-results-report/'>page</a>. ",
+ "gav": "com.github.bogdanlivadariu:bootstraped-multi-test-results-report:1.4.22",
+ "labels": [
+ "report",
+ "post-build",
+ "test"
+ ],
+ "name": "bootstraped-multi-test-results-report",
+ "previousTimestamp": "2016-09-06T19:30:08.00Z",
+ "previousVersion": "1.4.21",
+ "releaseTimestamp": "2016-09-14T11:28:20.00Z",
+ "requiredCore": "1.602",
+ "scm": "github.com",
+ "sha1": "VNOEGfjY/DdgJLBxgExNzxcPGMk=",
+ "title": "bootstraped-multi-test-results-report",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bootstraped-multi-test-results-report/1.4.22/bootstraped-multi-test-results-report.hpi",
+ "version": "1.4.22",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bootstraped+Multi+Test+Results+Report"
+ },
+ "bouncycastle-api": {
+ "buildDate": "Jul 27, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "alvarolobato",
+ "email": "alobato@cloudbees.com",
+ "name": "Alvaro Lobato"
+ }
+ ],
+ "excerpt": "Provides an stable API to Bouncy Castle related tasks. Plugins using Bouncy Castle should depend on this plugin and not directly on Bouncy Castle ",
+ "gav": "org.jenkins-ci.plugins:bouncycastle-api:2.16.0",
+ "labels": [
+ "library"
+ ],
+ "name": "bouncycastle-api",
+ "previousTimestamp": "2016-06-17T15:45:48.00Z",
+ "previousVersion": "1.648.3",
+ "releaseTimestamp": "2016-07-27T09:19:14.00Z",
+ "requiredCore": "2.16",
+ "scm": "github.com",
+ "sha1": "IIOSwykf+UWKG/YNIHunIoI5oBk=",
+ "title": "bouncycastle API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bouncycastle-api/2.16.0/bouncycastle-api.hpi",
+ "version": "2.16.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bouncy+Castle+API+Plugin"
+ },
+ "brakeman": {
+ "buildDate": "Jul 16, 2016",
+ "dependencies": [
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.78"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "presidentbeef",
+ "name": "Justin Collins"
+ }
+ ],
+ "excerpt": "This plugin reads output from <a href='http://brakemanscanner.org'>Brakeman</a>, a static analysis security vulnerability scanner for Ruby on Rails. ",
+ "gav": "org.jenkins-ci.plugins:brakeman:0.8",
+ "labels": [
+ "report",
+ "ruby"
+ ],
+ "name": "brakeman",
+ "previousTimestamp": "2012-03-21T17:45:02.00Z",
+ "previousVersion": "0.7",
+ "releaseTimestamp": "2016-07-16T12:48:18.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "GfVC2cljaOt+1N08URHBPi+Tq5Y=",
+ "title": "Brakeman Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/brakeman/0.8/brakeman.hpi",
+ "version": "0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Brakeman+Plugin"
+ },
+ "branch-api": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": false,
+ "version": "5.10"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides an API for multiple branch based projects. ",
+ "gav": "org.jenkins-ci.plugins:branch-api:1.11",
+ "labels": [],
+ "name": "branch-api",
+ "previousTimestamp": "2016-09-03T07:58:16.00Z",
+ "previousVersion": "1.10.2",
+ "releaseTimestamp": "2016-09-23T09:55:24.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "XyrwVYc/5P9kcGzDqor+n/yWw0I=",
+ "title": "Branch API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/branch-api/1.11/branch-api.hpi",
+ "version": "1.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Branch+API+Plugin"
+ },
+ "browser-axis-plugin": {
+ "buildDate": "Apr 02, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plugin add browser axis to matrix job ",
+ "gav": "org.jenkins-ci.plugins:browser-axis-plugin:1.0",
+ "labels": [],
+ "name": "browser-axis-plugin",
+ "releaseTimestamp": "2012-04-02T13:33:00.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "JQIsqTmj+FpviQ315kyNHWhtuUg=",
+ "title": "Browser axis",
+ "url": "http://updates.jenkins-ci.org/download/plugins/browser-axis-plugin/1.0/browser-axis-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Browser+axis+plugin"
+ },
+ "browserstack-integration": {
+ "buildDate": "Jul 29, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.8"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "support",
+ "email": "support@browserstack.com",
+ "name": "BrowserStack Support"
+ },
+ {
+ "developerId": "integration",
+ "email": "integrations@browserstack.com",
+ "name": "BrowserStack Integrations"
+ }
+ ],
+ "excerpt": "This plugin allows you to integrate with <a href='https://www.browserstack.com/'>BrowserStack</a>.",
+ "gav": "org.jenkins-ci.plugins:browserstack-integration:1.0.3",
+ "labels": [
+ "buildwrapper",
+ "report"
+ ],
+ "name": "browserstack-integration",
+ "previousTimestamp": "2016-07-14T15:56:26.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2016-07-29T19:22:08.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "Q9Q+ZxSp1tI4XAHqtNVi69OHHsw=",
+ "title": "BrowserStack",
+ "url": "http://updates.jenkins-ci.org/download/plugins/browserstack-integration/1.0.3/browserstack-integration.hpi",
+ "version": "1.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BrowserStack+Plugin"
+ },
+ "bruceschneier": {
+ "buildDate": "Oct 15, 2009",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dinomite",
+ "email": "dstephens@genius.com",
+ "name": "Drew Stephens"
+ }
+ ],
+ "excerpt": "Displays a picture of Bruce Schneier (instead of Jenkins the butler) and a random Bruce Schneier fact on each build page. ",
+ "gav": "org.jvnet.hudson.plugins:bruceschneier:0.1",
+ "labels": [
+ "ui"
+ ],
+ "name": "bruceschneier",
+ "releaseTimestamp": "2009-10-15T16:24:54.00Z",
+ "requiredCore": "1.328",
+ "scm": "svn.dev.java.net",
+ "sha1": "8bQawVNxgl+tjz3BCkELvxZpFuc=",
+ "title": "Bruce Schneier Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bruceschneier/0.1/bruceschneier.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BruceSchneier+Plugin"
+ },
+ "buckminster": {
+ "buildDate": "Feb 17, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jutzig",
+ "email": "mail@jutzig.de",
+ "name": "Johannes Utzig"
+ },
+ {
+ "developerId": "lorebett",
+ "email": "bettini@dsi.unifi.it",
+ "name": "Lorenzo Bettini"
+ }
+ ],
+ "excerpt": "This PlugIn integrates <a href='http://www.eclipse.org/buckminster'>Eclipse Buckminster</a> as a new build step into Jenkins.",
+ "gav": "org.jenkins-ci.plugins:buckminster:1.1.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "buckminster",
+ "previousTimestamp": "2011-04-01T00:30:56.00Z",
+ "previousVersion": "1.1.0",
+ "releaseTimestamp": "2013-02-17T19:04:40.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "+Wx6hbc+MgVNWKgTEZoCM7xXJoM=",
+ "title": "Buckminster",
+ "url": "http://updates.jenkins-ci.org/download/plugins/buckminster/1.1.1/buckminster.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Buckminster+PlugIn"
+ },
+ "buddycloud": {
+ "buildDate": "Jun 05, 2014",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.10"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jenkins"
+ }
+ ],
+ "excerpt": "Sends build notifications to a buddycloud instance.",
+ "gav": "org.jenkins-ci.ruby-plugins:buddycloud:0.3.0",
+ "labels": [
+ "notifier"
+ ],
+ "name": "buddycloud",
+ "previousTimestamp": "2012-08-04T12:48:12.00Z",
+ "previousVersion": "0.2.3",
+ "releaseTimestamp": "2014-06-05T22:25:46.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "MrECuM0EqZRmYxaiiD8x8nhvxEI=",
+ "title": "buddycloud Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/buddycloud/0.3.0/buddycloud.hpi",
+ "version": "0.3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Buddycloud+Plugin"
+ },
+ "bugzilla": {
+ "buildDate": "Nov 04, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "name": "New Maintainer Needed"
+ },
+ {
+ "developerId": "mdonohue",
+ "name": "mdonohue"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.bugzilla.org/'>Bugzilla</a> into Jenkins.",
+ "gav": "org.jvnet.hudson.plugins:bugzilla:1.5",
+ "labels": [
+ "external"
+ ],
+ "name": "bugzilla",
+ "previousTimestamp": "2010-01-30T17:33:34.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2011-11-04T11:27:08.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "I4ZhiTbY4Qm0Vfxb3I23I7ZVHyM=",
+ "title": "Bugzilla Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bugzilla/1.5/bugzilla.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bugzilla+Plugin"
+ },
+ "build-alias-setter": {
+ "buildDate": "Jan 30, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Add cusom build aliases for easier build identification.",
+ "gav": "org.jenkins-ci.plugins:build-alias-setter:0.4",
+ "labels": [],
+ "name": "build-alias-setter",
+ "previousTimestamp": "2014-06-30T17:37:48.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2016-01-30T07:56:18.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "tp2T/ZvRzSbi4jcmAwQFwpBzpBs=",
+ "title": "Build Alias Setter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-alias-setter/0.4/build-alias-setter.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Alias+Setter+Plugin"
+ },
+ "build-blocker-plugin": {
+ "buildDate": "Dec 14, 2015",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ffromm",
+ "email": "frederik.fromm@gmail.com",
+ "name": "Frederik Fromm"
+ }
+ ],
+ "excerpt": "This plugin keeps the actual job in the queue if at least one name of currently running jobs is matching with one of the given regular expressions.",
+ "gav": "org.jenkins-ci.plugins:build-blocker-plugin:1.7.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "build-blocker-plugin",
+ "previousTimestamp": "2015-11-24T22:08:10.00Z",
+ "previousVersion": "1.7.2",
+ "releaseTimestamp": "2015-12-14T00:18:48.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "qiJIzfJFjI3xjsXvH1Gak2So8/I=",
+ "title": "Build Blocker Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-blocker-plugin/1.7.3/build-blocker-plugin.hpi",
+ "version": "1.7.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Blocker+Plugin"
+ },
+ "build-cause-run-condition": {
+ "buildDate": "Jul 25, 2012",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "0.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "cjo9900",
+ "email": "cjo.johnson@gmail.com",
+ "name": "Chris Johnson"
+ }
+ ],
+ "excerpt": "Build Cause Run condition to select whether to execute a build step or publisher. Used by the [Run Condition Plugin]. ",
+ "gav": "org.jenkins-ci.plugins:build-cause-run-condition:0.1",
+ "labels": [
+ "misc",
+ "runcondition"
+ ],
+ "name": "build-cause-run-condition",
+ "releaseTimestamp": "2012-07-25T17:43:24.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "my5PF28k9N0wVDymOp7LwHbeDQM=",
+ "title": "Build Cause Run Condition Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-cause-run-condition/0.1/build-cause-run-condition.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Cause+Run+Condition"
+ },
+ "build-env-propagator": {
+ "buildDate": "Jul 08, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vivek",
+ "email": "vivek.pandey@gmail.com",
+ "name": "Vivek Pandey"
+ }
+ ],
+ "excerpt": "This plugin lets you add new build environment variables, override a pre-defined and existing variables at each build&amp;nbsp; step. Set of variables defined at a build step is carried over to the sub-sequent build steps. Any subsequent build step &amp;nbsp;can override any variable defined by the previous build step. ",
+ "gav": "org.jenkins-ci.plugins:build-env-propagator:1.0",
+ "labels": [],
+ "name": "build-env-propagator",
+ "releaseTimestamp": "2014-07-08T12:19:16.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "315/RGkyyCBkSuHzoGfQNv6WP5w=",
+ "title": "Build Env Propagator Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-env-propagator/1.0/build-env-propagator.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Env+Propagator+Plugin"
+ },
+ "build-environment": {
+ "buildDate": "Sep 01, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "boev",
+ "email": "iordan.boev@gmail.com",
+ "name": "Yordan Boev"
+ }
+ ],
+ "excerpt": "This plugin shows information about the environment of a build and gives the option to compare the environments of two builds. ",
+ "gav": "org.jenkins-ci.plugins:build-environment:1.6",
+ "labels": [
+ "post-build",
+ "ui",
+ "report"
+ ],
+ "name": "build-environment",
+ "previousTimestamp": "2015-04-28T13:03:24.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2015-09-01T13:17:06.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "og0p11e3x/ZYJBmAL4OJTosBlt4=",
+ "title": "Build Environment Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-environment/1.6/build-environment.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Environment+Plugin"
+ },
+ "build-failure-analyzer": {
+ "buildDate": "Sep 05, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "matrix-auth",
+ "optional": true,
+ "version": "1.2"
+ },
+ {
+ "name": "gerrit-trigger",
+ "optional": true,
+ "version": "2.15.0"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": true,
+ "version": "4.9"
+ },
+ {
+ "name": "build-flow-plugin",
+ "optional": true,
+ "version": "0.10"
+ },
+ {
+ "name": "credentials",
+ "optional": true,
+ "version": "1.24"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rsandell",
+ "email": "robert.sandell@cloudbees.com",
+ "name": "Robert Sandell"
+ },
+ {
+ "developerId": "t_westling",
+ "email": "tomas.westling@sonymobile.com",
+ "name": "Tomas Westling"
+ }
+ ],
+ "excerpt": "This plugin analyzes the causes of failed builds and presents the causes on the build page.&amp;nbsp;It does this by using a knowledge base of build failure causes that is built up from scratch. Saving statistics&amp;nbsp;about failure causes is also possible. ",
+ "gav": "com.sonyericsson.jenkins.plugins.bfa:build-failure-analyzer:1.17.1",
+ "labels": [
+ "post-build",
+ "report"
+ ],
+ "name": "build-failure-analyzer",
+ "previousTimestamp": "2016-08-17T16:19:02.00Z",
+ "previousVersion": "1.17.0",
+ "releaseTimestamp": "2016-09-05T13:04:26.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "YjrQp7GJLYMlXHIOIyNFCmpmQuk=",
+ "title": "Build Failure Analyzer",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-failure-analyzer/1.17.1/build-failure-analyzer.hpi",
+ "version": "1.17.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Failure+Analyzer"
+ },
+ "build-flow-extensions-plugin": {
+ "buildDate": "Jul 29, 2014",
+ "dependencies": [
+ {
+ "name": "build-flow-plugin",
+ "optional": false,
+ "version": "0.11"
+ },
+ {
+ "name": "buildgraph-view",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "teilo",
+ "name": "James Nord"
+ }
+ ],
+ "excerpt": "This plugin adds defines some <a href='Build Flow Plugin'>build flow</a> extensions.",
+ "gav": "org.jenkins-ci.plugins:build-flow-extensions-plugin:0.1.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "build-flow-extensions-plugin",
+ "releaseTimestamp": "2014-07-29T22:28:20.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "nseHowW6I2Bv9johvfi5+6xy10s=",
+ "title": "Build Flow Extensions",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-flow-extensions-plugin/0.1.1/build-flow-extensions-plugin.hpi",
+ "version": "0.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Extensions+Plugin"
+ },
+ "build-flow-plugin": {
+ "buildDate": "Aug 04, 2016",
+ "compatibleSinceVersion": "0.11",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rodrigc",
+ "name": "Craig Rodrigues"
+ }
+ ],
+ "excerpt": "This plugin allows managing Jenkins jobs orchestration using a dedicated DSL, extracting the flow logic from jobs. ",
+ "gav": "com.cloudbees.plugins:build-flow-plugin:0.20",
+ "labels": [
+ "misc",
+ "trigger"
+ ],
+ "name": "build-flow-plugin",
+ "previousTimestamp": "2016-05-09T19:30:14.00Z",
+ "previousVersion": "0.19",
+ "releaseTimestamp": "2016-08-04T01:23:02.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "SD11/m37CN/YRqjD9cl1g2omEec=",
+ "title": "Build Flow plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-flow-plugin/0.20/build-flow-plugin.hpi",
+ "version": "0.20",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin"
+ },
+ "build-flow-test-aggregator": {
+ "buildDate": "Aug 31, 2015",
+ "dependencies": [
+ {
+ "name": "jenkins-multijob-plugin",
+ "optional": false,
+ "version": "1.16"
+ },
+ {
+ "name": "build-flow-plugin",
+ "optional": false,
+ "version": "0.12"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "poolik",
+ "email": "tonis.pool@gmail.com",
+ "name": "Tonis Pool"
+ }
+ ],
+ "excerpt": "Build Flow Test Aggregator is the simplest way to aggregate test results from builds started dynamically by the <a href='https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin'>build flow job</a>. It's a post-build step that only shows up for build flow projects.",
+ "gav": "org.zeroturnaround.jenkins:build-flow-test-aggregator:1.2",
+ "labels": [],
+ "name": "build-flow-test-aggregator",
+ "previousTimestamp": "2015-04-18T16:33:24.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-08-31T21:53:18.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "Dn84azV+JWZFWjj73eUEFJWoxAg=",
+ "title": "Build flow test aggregator",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-flow-test-aggregator/1.2/build-flow-test-aggregator.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Test+Aggregator+Plugin"
+ },
+ "build-history-metrics-plugin": {
+ "buildDate": "Jun 06, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mcgin",
+ "email": "aidan@aidanmcginley.com",
+ "name": "Aidan McGinley"
+ }
+ ],
+ "excerpt": "Provides build metrics that encompass the history of all the runs",
+ "gav": "org.jenkins-ci.plugins:build-history-metrics-plugin:1.2",
+ "labels": [
+ "misc"
+ ],
+ "name": "build-history-metrics-plugin",
+ "previousTimestamp": "2014-10-13T22:12:58.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-06-06T16:14:26.00Z",
+ "requiredCore": "1.579",
+ "scm": "github.com",
+ "sha1": "qPT45E7unHTjdscxkiYXW9dHgtE=",
+ "title": "Build History Metrics plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-history-metrics-plugin/1.2/build-history-metrics-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+History+Metrics+Plugin"
+ },
+ "build-keeper-plugin": {
+ "buildDate": "Apr 16, 2012",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "0.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Select a policy for automatically marking builds as &quot;keep forever&quot; to enable long term analysis trending when discarding old builds - or use to protect logs and artifacts from certain builds ",
+ "gav": "org.jenkins-ci.plugins:build-keeper-plugin:1.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "build-keeper-plugin",
+ "previousTimestamp": "2012-01-11T23:07:56.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-04-16T23:10:06.00Z",
+ "requiredCore": "1.408",
+ "scm": "github.com",
+ "sha1": "OqMzcGSJtV6erzuvU28ebESw114=",
+ "title": "Build Keeper Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-keeper-plugin/1.3/build-keeper-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Keeper+Plugin"
+ },
+ "build-line": {
+ "buildDate": "Aug 24, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "k-qing",
+ "email": "k.qing@outlook.com"
+ }
+ ],
+ "excerpt": "This plugin can show the multiple build line relationship in one view. ",
+ "gav": "org.jenkins-ci.plugins:build-line:1.0.4",
+ "labels": [],
+ "name": "build-line",
+ "previousTimestamp": "2013-08-20T21:40:48.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2013-08-24T19:56:58.00Z",
+ "requiredCore": "1.457",
+ "scm": "github.com",
+ "sha1": "p5SAHazR9HkuOhwxJjB6XVVnX24=",
+ "title": "Build Line Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-line/1.0.4/build-line.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/build+line+plugin"
+ },
+ "build-metrics": {
+ "buildDate": "Aug 22, 2016",
+ "dependencies": [
+ {
+ "name": "global-build-stats",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "javamllama",
+ "email": "madeline.goss@gmail.com",
+ "name": "Maddy Goss"
+ },
+ {
+ "developerId": "ydubreuil",
+ "email": "ydubreuil@cloudbees.com",
+ "name": "Yoann Dubreuil"
+ },
+ {
+ "developerId": "px3",
+ "email": "roropx3@googlemail.com",
+ "name": "Rolf Rother"
+ }
+ ],
+ "excerpt": "This plugin uses the results from the <a href='JENKINS:Global Build Stats Plugin'>Global Build Stats Plugin</a>&amp;nbsp;to generate some basic build metrics. &amp;nbsp;It is really useful in combination with the <a href='JENKINS:Sidebar-Link Plugin'>sidebar links plugin</a>. ",
+ "gav": "org.jenkins-ci.plugins:build-metrics:1.3",
+ "labels": [
+ "report"
+ ],
+ "name": "build-metrics",
+ "previousTimestamp": "2016-08-21T15:07:38.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-08-22T16:10:38.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "+VCW/taQSHZvgxI9gYoex36xnEA=",
+ "title": "build-metrics-plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-metrics/1.3/build-metrics.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/build-metrics-plugin"
+ },
+ "build-monitor-plugin": {
+ "buildDate": "Oct 04, 2016",
+ "dependencies": [
+ {
+ "name": "build-failure-analyzer",
+ "optional": true,
+ "version": "1.9.0"
+ },
+ {
+ "name": "claim",
+ "optional": true,
+ "version": "2.8"
+ },
+ {
+ "name": "credentials",
+ "optional": true,
+ "version": "1.14"
+ },
+ {
+ "name": "view-job-filters",
+ "optional": true,
+ "version": "1.26"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": true,
+ "version": "4.2.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jan-molak",
+ "email": "jan.molak+build.monitor@smartcodeltd.co.uk",
+ "name": "Jan Molak"
+ }
+ ],
+ "excerpt": "Build Monitor Plugin provides a highly visible view of the status of selected Jenkins jobs. It easily accommodates different computer screen sizes and is ideal as an Extreme Feedback Device to be displayed on a screen on your office wall. (Inspired by the no longer maintained RadiatorView plugin). ",
+ "gav": "org.jenkins-ci.plugins:build-monitor-plugin:1.10+build.201610041454",
+ "labels": [
+ "view",
+ "report",
+ "ui"
+ ],
+ "name": "build-monitor-plugin",
+ "previousTimestamp": "2016-08-03T02:24:50.00Z",
+ "previousVersion": "1.10+build.201608030223",
+ "releaseTimestamp": "2016-10-04T14:56:34.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "qZ7aYMg9k9/YLyM2WmcgtHWppLw=",
+ "title": "Build Monitor View",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-monitor-plugin/1.10+build.201610041454/build-monitor-plugin.hpi",
+ "version": "1.10+build.201610041454",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Monitor+Plugin"
+ },
+ "build-name-setter": {
+ "buildDate": "Apr 24, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kkawaguchi@cloudbees.com",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "Le0",
+ "email": "leomichine@gmail.com",
+ "name": "Lev Mishin"
+ }
+ ],
+ "excerpt": "This plugin sets the display name of a build to something other than #1, #2, #3, ...",
+ "gav": "org.jenkins-ci.plugins:build-name-setter:1.6.5",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "build-name-setter",
+ "previousTimestamp": "2016-04-16T11:38:38.00Z",
+ "previousVersion": "1.6.3",
+ "releaseTimestamp": "2016-04-24T15:11:48.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "tq5KjinLlG57OorNoICRK5oO9Ec=",
+ "title": "Build Name Setter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-name-setter/1.6.5/build-name-setter.hpi",
+ "version": "1.6.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Name+Setter+Plugin"
+ },
+ "build-pipeline-plugin": {
+ "buildDate": "Jul 27, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.2"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": false,
+ "version": "2.17"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "centrum",
+ "email": "plugins@centrumsystems.com.au",
+ "name": "Centrum Systems"
+ },
+ {
+ "developerId": "dalvizu",
+ "email": "alvizu@gmail.com",
+ "name": "Dan Alvizu"
+ }
+ ],
+ "excerpt": "This plugin provides a _Build Pipeline View_ of upstream and downstream connected jobs that typically form a build pipeline. &amp;nbsp;In addition, it offers the ability to define manual triggers for jobs that require intervention prior to execution, e.g. an approval process outside of Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:build-pipeline-plugin:1.5.4",
+ "labels": [
+ "builder",
+ "post-build",
+ "ui"
+ ],
+ "name": "build-pipeline-plugin",
+ "previousTimestamp": "2016-05-23T15:13:08.00Z",
+ "previousVersion": "1.5.3.1",
+ "releaseTimestamp": "2016-07-27T19:12:14.00Z",
+ "requiredCore": "1.619",
+ "scm": "github.com",
+ "sha1": "sHV7Jik/l3B0cAKl3ZG6zlShB0Q=",
+ "title": "Build Pipeline Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-pipeline-plugin/1.5.4/build-pipeline-plugin.hpi",
+ "version": "1.5.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Pipeline+Plugin"
+ },
+ "build-publisher": {
+ "buildDate": "Jun 16, 2015",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ }
+ ],
+ "excerpt": "This plugin allows records from one Jenkins to be published on another Jenkins.",
+ "gav": "org.jenkins-ci.plugins:build-publisher:1.21",
+ "labels": [
+ "upload"
+ ],
+ "name": "build-publisher",
+ "previousTimestamp": "2015-01-28T08:53:06.00Z",
+ "previousVersion": "1.20",
+ "releaseTimestamp": "2015-06-16T23:06:26.00Z",
+ "requiredCore": "1.535",
+ "scm": "github.com",
+ "sha1": "RH6wY5ptEeSTcpw+iZ3XVrxInLw=",
+ "title": "Hudson Build-Publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-publisher/1.21/build-publisher.hpi",
+ "version": "1.21",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Publisher+Plugin"
+ },
+ "build-steps-from-json": {
+ "buildDate": "Aug 10, 2016",
+ "dependencies": [
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pskumar448",
+ "email": "pskumar448@gmail.com",
+ "name": "Suresh Kumar"
+ }
+ ],
+ "excerpt": "This plugin enables a builder which takes build steps from json and executes them in freestyle project. ",
+ "gav": "com.spcow.plugins:build-steps-from-json:1.0",
+ "labels": [],
+ "name": "build-steps-from-json",
+ "releaseTimestamp": "2016-08-10T21:19:04.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "CKbXVgReq+8InYHpggzEavNKw+s=",
+ "title": "Build Steps from Json Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-steps-from-json/1.0/build-steps-from-json.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Steps+from+Json+Plugin"
+ },
+ "build-timeout": {
+ "buildDate": "Jul 19, 2016",
+ "dependencies": [
+ {
+ "name": "naginator",
+ "optional": true,
+ "version": "1.16"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ikedam"
+ }
+ ],
+ "excerpt": "This plugin allows you to automatically abort a build if it's taking too long.",
+ "gav": "org.jenkins-ci.plugins:build-timeout:1.17.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "build-timeout",
+ "previousTimestamp": "2016-06-26T09:52:34.00Z",
+ "previousVersion": "1.17",
+ "releaseTimestamp": "2016-07-19T07:37:00.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "lK23wYyl3GOf1hJ+QNnCG7noBWs=",
+ "title": "Jenkins build timeout plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-timeout/1.17.1/build-timeout.hpi",
+ "version": "1.17.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build-timeout+Plugin"
+ },
+ "build-timestamp": {
+ "buildDate": "Dec 24, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "orctom",
+ "email": "orctom@gmail.com",
+ "name": "Hao CHEN"
+ }
+ ],
+ "excerpt": "Export build timestamps to build env variables. ",
+ "gav": "org.jenkins-ci.plugins:build-timestamp:1.0.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "build-timestamp",
+ "previousTimestamp": "2015-12-23T07:21:58.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2015-12-24T00:54:26.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "ZfYExAQmCrLMU7pGbsFJUsJUQbs=",
+ "title": "Build Timestamp Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-timestamp/1.0.1/build-timestamp.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Timestamp+Plugin"
+ },
+ "build-token-root": {
+ "buildDate": "May 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick",
+ "email": "jglick@cloudbees.com",
+ "name": "Jesse Glick"
+ }
+ ],
+ "excerpt": "Lets build and related REST build triggers be accessed even when anonymous users cannot see Jenkins.",
+ "gav": "org.jenkins-ci.plugins:build-token-root:1.4",
+ "labels": [
+ "trigger"
+ ],
+ "name": "build-token-root",
+ "previousTimestamp": "2015-08-11T15:23:06.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-05-03T11:04:46.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "mVleWc5eDiFWcbAjAduPEb+6USs=",
+ "title": "Build Authorization Token Root Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-token-root/1.4/build-token-root.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Token+Root+Plugin"
+ },
+ "build-user-vars-plugin": {
+ "buildDate": "Dec 11, 2015",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.16"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gkonovalenko",
+ "email": "gkonovalenko@gmail.com",
+ "name": "Gavriil Konovalenko"
+ }
+ ],
+ "excerpt": "This plugin provides a set of environment variables that describe the user who started the build. ",
+ "gav": "org.jenkins-ci.plugins:build-user-vars-plugin:1.5",
+ "labels": [],
+ "name": "build-user-vars-plugin",
+ "previousTimestamp": "2014-10-10T09:49:12.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2015-12-11T09:26:54.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "wP2G+s2cj44zGch43q3jktgTSIc=",
+ "title": "Jenkins user build vars plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-user-vars-plugin/1.5/build-user-vars-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+User+Vars+Plugin"
+ },
+ "build-view-column": {
+ "buildDate": "Jun 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Adds a new abstraction for rendering a list of builds as a table.",
+ "gav": "org.jenkins-ci.plugins:build-view-column:0.3",
+ "labels": [
+ "listview-column",
+ "misc"
+ ],
+ "name": "build-view-column",
+ "previousTimestamp": "2013-07-25T14:56:10.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2016-06-17T10:43:34.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "0EnCaKUVM4wJHULm3vJkle290sM=",
+ "title": "Build View Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-view-column/0.3/build-view-column.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+View+Column+Plugin"
+ },
+ "build-with-parameters": {
+ "buildDate": "Nov 09, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jessicaaustin",
+ "email": "jessica@aus10.org",
+ "name": "Jessica Austin"
+ }
+ ],
+ "excerpt": "Allows the user to provide parameters for a build in the url, prompting for confirmation before triggering the job.",
+ "gav": "org.jenkins-ci.plugins:build-with-parameters:1.3",
+ "labels": [
+ "parameter",
+ "trigger"
+ ],
+ "name": "build-with-parameters",
+ "previousTimestamp": "2014-11-03T14:57:46.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2014-11-09T20:51:50.00Z",
+ "requiredCore": "1.498",
+ "scm": "github.com",
+ "sha1": "S5mW6dNspUi6BIib9Q4TPSLw86U=",
+ "title": "Build With Parameters",
+ "url": "http://updates.jenkins-ci.org/download/plugins/build-with-parameters/1.3/build-with-parameters.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+With+Parameters+Plugin"
+ },
+ "buildcontext-capture": {
+ "buildDate": "Aug 15, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to capture the build context to ensure traceability and auditability.",
+ "gav": "org.jenkins-ci.plugins:buildcontext-capture:0.6",
+ "labels": [
+ "misc"
+ ],
+ "name": "buildcontext-capture",
+ "previousTimestamp": "2012-04-30T23:06:58.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2012-08-15T12:34:40.00Z",
+ "requiredCore": "1.410",
+ "scm": "github.com",
+ "sha1": "WyAqcNQbOPchin307zamdFGjx48=",
+ "title": "Jenkins BuildContext Capture Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/buildcontext-capture/0.6/buildcontext-capture.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BuildContextCapture+Plugin"
+ },
+ "buildgraph-view": {
+ "buildDate": "Jun 26, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": false,
+ "version": "2.18"
+ },
+ {
+ "name": "promoted-builds",
+ "optional": false,
+ "version": "2.17"
+ },
+ {
+ "name": "build-flow-plugin",
+ "optional": false,
+ "version": "0.19"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "name": "Nicolas De Loof"
+ },
+ {
+ "developerId": "gregory144",
+ "name": "Greg Gross"
+ },
+ {
+ "developerId": "pskumar448",
+ "name": "Suresh Kumar"
+ }
+ ],
+ "excerpt": "Shows a graph of builds that relates together (aka &quot;build pipeline&quot;).",
+ "gav": "org.jenkins-ci.plugins:buildgraph-view:1.3.2",
+ "labels": [
+ "ui"
+ ],
+ "name": "buildgraph-view",
+ "previousTimestamp": "2016-05-20T00:20:14.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2016-06-26T10:13:28.00Z",
+ "requiredCore": "1.582",
+ "scm": "github.com",
+ "sha1": "fbe+cDms5ckG6+Czuk0kWUKkVfc=",
+ "title": "Build Graph View Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/buildgraph-view/1.3.2/buildgraph-view.hpi",
+ "version": "1.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Graph+View+Plugin"
+ },
+ "buildresult-trigger": {
+ "buildDate": "Mar 28, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "BuildResultTrigger makes it possible to monitor the build results of other jobs. ",
+ "gav": "org.jenkins-ci.plugins:buildresult-trigger:0.17",
+ "labels": [
+ "trigger"
+ ],
+ "name": "buildresult-trigger",
+ "previousTimestamp": "2013-08-04T11:35:44.00Z",
+ "previousVersion": "0.16",
+ "releaseTimestamp": "2014-03-28T22:39:48.00Z",
+ "requiredCore": "1.522",
+ "scm": "github.com",
+ "sha1": "BWuXE8OZSstOu5XhyYk54YwLYqo=",
+ "title": "Jenkins BuildResultTrigger Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/buildresult-trigger/0.17/buildresult-trigger.hpi",
+ "version": "0.17",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BuildResultTrigger+Plugin"
+ },
+ "buildtriggerbadge": {
+ "buildDate": "Oct 07, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mpapo",
+ "email": "mpapo.dev@gmail.com",
+ "name": "Michael Pailloncy"
+ },
+ {
+ "developerId": "batmat",
+ "email": "batmat@batmat.net",
+ "name": "Baptiste Mathus"
+ }
+ ],
+ "excerpt": "This plugin&amp;nbsp;displays icon(s) representing the cause(s) of a build directly in the build history. It lets you quickly know which cause triggered a build. ",
+ "gav": "org.jenkins-ci.plugins:buildtriggerbadge:2.5",
+ "labels": [
+ "ui"
+ ],
+ "name": "buildtriggerbadge",
+ "previousTimestamp": "2016-10-04T20:52:48.00Z",
+ "previousVersion": "2.4",
+ "releaseTimestamp": "2016-10-07T10:44:52.00Z",
+ "requiredCore": "1.509.2",
+ "scm": "github.com",
+ "sha1": "/uWB1iwF0f2fpakT/xAm6+SWMFU=",
+ "title": "Build Trigger Badge Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/buildtriggerbadge/2.5/buildtriggerbadge.hpi",
+ "version": "2.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Trigger+Badge+Plugin"
+ },
+ "built-on-column": {
+ "buildDate": "Jul 26, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "voorth",
+ "email": "voorth@xs4all.nl",
+ "name": "Henk van Voorthuijsen"
+ }
+ ],
+ "excerpt": "Adds a column that shows the actual node the last build was run on. ",
+ "gav": "org.jenkins-ci.plugins:built-on-column:1.1",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "built-on-column",
+ "previousTimestamp": "2011-05-01T16:10:02.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-07-26T10:53:14.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "qmhau75igj9lfUb/Qf205PJL/3c=",
+ "title": "Built-on Column",
+ "url": "http://updates.jenkins-ci.org/download/plugins/built-on-column/1.1/built-on-column.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Built-on+Column"
+ },
+ "bulk-builder": {
+ "buildDate": "Mar 04, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "swestcott",
+ "email": "swestcott@gmail.com",
+ "name": "Simon Westcott"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse farinacci"
+ }
+ ],
+ "excerpt": "Trigger multiple builds with ease. Designed for users with many jobs.",
+ "gav": "org.jvnet.hudson.plugins:bulk-builder:1.5",
+ "labels": [
+ "builder",
+ "misc"
+ ],
+ "name": "bulk-builder",
+ "previousTimestamp": "2011-11-13T12:56:38.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2012-03-04T22:15:32.00Z",
+ "requiredCore": "1.388",
+ "scm": "github.com",
+ "sha1": "oxuygc8GHIZWT3EG/OUvZhApg3A=",
+ "title": "Bulk Builder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bulk-builder/1.5/bulk-builder.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bulk+Builder+Plugin"
+ },
+ "bumblebee": {
+ "buildDate": "Aug 30, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ali",
+ "email": "ali.raza@agiletestware.com",
+ "name": "Ali Raza"
+ }
+ ],
+ "excerpt": "Bumblebee Jenkins plugin allows seamless integration of Jenkins jobs and build test results with HP ALM 10, 11, 12. The plugin processes jenkins build data and sends it to the Bumblebee server for processing. Bumblebee automatically creates TestPlan, TestLab, TestSet, and TestRuns in HP ALM. ",
+ "gav": "org.jenkins-ci.plugins:bumblebee:4.0.4",
+ "labels": [
+ "post-build",
+ "report"
+ ],
+ "name": "bumblebee",
+ "previousTimestamp": "2016-07-14T16:02:10.00Z",
+ "previousVersion": "4.0.3",
+ "releaseTimestamp": "2016-08-30T16:24:34.00Z",
+ "requiredCore": "1.625.1",
+ "scm": "github.com",
+ "sha1": "/F9RLKrZzgqrM9WWe5C9QTiZ8Tw=",
+ "title": "Bumblebee HP ALM Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/bumblebee/4.0.4/bumblebee.hpi",
+ "version": "4.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bumblebee+HP+ALM+Plugin"
+ },
+ "ca-apm": {
+ "buildDate": "Mar 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "srikns",
+ "email": "srikns@yahoo.com",
+ "name": "Srikant Noorani"
+ }
+ ],
+ "excerpt": "Allows users to collect CA APM performance data and publish it in Jenkins and allows the users to publish build number, status etc into CA APM APM Team Center(ATC)",
+ "gav": "org.jenkins-ci.plugins:ca-apm:1.0",
+ "labels": [
+ "ca-apm"
+ ],
+ "name": "ca-apm",
+ "releaseTimestamp": "2016-03-14T19:35:00.00Z",
+ "requiredCore": "1.642",
+ "scm": "github.com",
+ "sha1": "4EDMUtXCMzFtxMRvLZvC00Lbn/E=",
+ "title": "CA-APM Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ca-apm/1.0/ca-apm.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CA+APM+Plugin"
+ },
+ "call-remote-job-plugin": {
+ "buildDate": "Dec 13, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ukiuni",
+ "email": "ukiuni@gmail.com",
+ "name": "ukiuni"
+ }
+ ],
+ "excerpt": "Call another jenkins job. and get result. Job is fail when remote job is fail",
+ "gav": "org.ukiuni.callOtherJenkins:call-remote-job-plugin:1.0.21",
+ "labels": [],
+ "name": "call-remote-job-plugin",
+ "previousTimestamp": "2013-07-31T21:06:44.00Z",
+ "previousVersion": "1.0.20",
+ "releaseTimestamp": "2013-12-13T10:49:46.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "Cdwsk+Xr2t7sGfpzQIxojIZkk1I=",
+ "title": "Call Remote Job Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/call-remote-job-plugin/1.0.21/call-remote-job-plugin.hpi",
+ "version": "1.0.21",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Call+Remote+Job+Plugin"
+ },
+ "campfire": {
+ "buildDate": "Dec 19, 2013",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.424"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jenslukowski",
+ "email": "jens.lukowski@softwareschneiderei.de",
+ "name": "Jens Lukowski"
+ },
+ {
+ "developerId": "thickpaddy",
+ "name": "Mark Woods"
+ },
+ {
+ "developerId": "jkrall",
+ "name": "Joshua Krall"
+ },
+ {
+ "developerId": "bgreenlee",
+ "name": "Brad Greenlee"
+ },
+ {
+ "developerId": "hpoydar",
+ "name": "Henry Poydar"
+ },
+ {
+ "developerId": "mortice",
+ "name": "Tom Stuart"
+ },
+ {
+ "developerId": "dbriones",
+ "name": "Dante Briones"
+ }
+ ],
+ "excerpt": "This plugin allows your team to setup build notifications to be sent to Campfire rooms.",
+ "gav": "org.jenkins-ci.plugins:campfire:2.7",
+ "labels": [
+ "notifier"
+ ],
+ "name": "campfire",
+ "previousTimestamp": "2012-12-01T22:28:14.00Z",
+ "previousVersion": "2.6",
+ "releaseTimestamp": "2013-12-19T15:00:12.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "9jwmMZ+GsMdxsgyLSVDBVidBYWQ=",
+ "title": "Jenkins Campfire Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/campfire/2.7/campfire.hpi",
+ "version": "2.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Campfire+Plugin"
+ },
+ "capitomcat": {
+ "buildDate": "Feb 16, 2015",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sunggun"
+ }
+ ],
+ "excerpt": "This plugin deploy the WAR file to multiple remote Tomcat servers by using Capistrano 3",
+ "gav": "org.jenkins-ci.ruby-plugins:capitomcat:0.1.0",
+ "labels": [
+ "upload"
+ ],
+ "name": "capitomcat",
+ "previousTimestamp": "2015-01-23T19:33:38.00Z",
+ "previousVersion": "0.0.11",
+ "releaseTimestamp": "2015-02-16T20:32:08.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "Zov7Vfv3YJW5t4TK2rmUOnWl+FA=",
+ "title": "Capitomcat Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/capitomcat/0.1.0/capitomcat.hpi",
+ "version": "0.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Capitomcat+Plugin"
+ },
+ "cas-plugin": {
+ "buildDate": "Sep 13, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "fcrespel",
+ "email": "fabien@crespel.net",
+ "name": "Fabien Crespel"
+ }
+ ],
+ "excerpt": "This plugin enables use of <a href='https://www.apereo.org/projects/cas'>CAS</a> (Central Authentication Service) as an authentication source for Jenkins, with single sign-on and single sign-out support.",
+ "gav": "org.jenkins-ci.plugins:cas-plugin:1.2.0",
+ "labels": [
+ "user"
+ ],
+ "name": "cas-plugin",
+ "previousTimestamp": "2014-06-02T00:13:14.00Z",
+ "previousVersion": "1.1.2",
+ "releaseTimestamp": "2015-09-13T20:23:50.00Z",
+ "requiredCore": "1.470",
+ "scm": "github.com",
+ "sha1": "Ra69djb8q19E6/1LCwJQ6b/tjgo=",
+ "title": "CAS Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cas-plugin/1.2.0/cas-plugin.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CAS+Plugin"
+ },
+ "cas1": {
+ "buildDate": "Mar 09, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "david_beutel",
+ "email": "jbeutel@hawaii.edu",
+ "name": "J. David Beutel"
+ }
+ ],
+ "excerpt": "This plugin lets Jenkins authenticate users via your organization's Central Authentication Service (<a href='http://www.jasig.org/cas'>CAS</a>), for single-sign-on. ",
+ "gav": "org.jvnet.hudson.plugins:cas1:1.0.1",
+ "labels": [
+ "user"
+ ],
+ "name": "cas1",
+ "previousTimestamp": "2010-03-05T12:23:56.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2010-03-09T09:55:46.00Z",
+ "requiredCore": "1.349",
+ "scm": "svn.dev.java.net",
+ "sha1": "4HqufRisxkuZQLp7fjix5jMNmgk=",
+ "title": "CAS protocol version 1 plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cas1/1.0.1/cas1.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CAS1+Plugin"
+ },
+ "categorized-view": {
+ "buildDate": "Apr 15, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "taksan",
+ "name": "Gabriel Takeuchi"
+ }
+ ],
+ "excerpt": "Introduce a new kind of view where you can categorize groups of jobs under a single label created by regular expressions or other criterias that can be implemented as extension points. ",
+ "gav": "org.jenkins-ci.plugins:categorized-view:1.8",
+ "labels": [
+ "ui"
+ ],
+ "name": "categorized-view",
+ "previousTimestamp": "2014-04-13T09:59:46.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2014-04-15T12:46:56.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "RpXfK2cYQV+AcEM7/h6YVTQ1ImU=",
+ "title": "Categorized Jobs View",
+ "url": "http://updates.jenkins-ci.org/download/plugins/categorized-view/1.8/categorized-view.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Categorized+Jobs+View"
+ },
+ "cccc": {
+ "buildDate": "Nov 24, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin generates the trend report for <a href='http://cccc.sourceforge.net/'>CCCC</a> (C and C+\\+ Code Counter).",
+ "gav": "com.thalesgroup.jenkins-ci.plugins:cccc:0.6",
+ "labels": [
+ "report"
+ ],
+ "name": "cccc",
+ "previousTimestamp": "2011-08-13T23:57:30.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2011-11-24T23:29:22.00Z",
+ "requiredCore": "1.410",
+ "scm": "github.com",
+ "sha1": "dkJsiKHW6rmqQ0VAEUqlB8kwFls=",
+ "title": "Jenkins CCCC Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cccc/0.6/cccc.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CCCC+Plugin"
+ },
+ "ccm": {
+ "buildDate": "Oct 20, 2015",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.9"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.74"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kinow",
+ "email": "brunodepaulak@yahoo.com.br",
+ "name": "Bruno P. Kinoshita"
+ },
+ {
+ "developerId": "cesar1983",
+ "email": "cesar.fa@gmail.com",
+ "name": "Cesar Fernandes de Almeida"
+ }
+ ],
+ "excerpt": "This plug-in generates reports on cyclomatic complexity for .NET code. ",
+ "gav": "org.jvnet.hudson.plugins:ccm:3.1",
+ "labels": [
+ "report",
+ "maven",
+ "dotnet"
+ ],
+ "name": "ccm",
+ "previousTimestamp": "2015-05-12T19:50:26.00Z",
+ "previousVersion": "3.0.2",
+ "releaseTimestamp": "2015-10-20T21:14:10.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "Begz4m+YT3VCEImnIOEg3/Dzi9s=",
+ "title": "CCM Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ccm/3.1/ccm.hpi",
+ "version": "3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CCM+Plugin"
+ },
+ "change-assembly-version-plugin": {
+ "buildDate": "Feb 28, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lkobus",
+ "name": "Leonardo Kobus"
+ }
+ ],
+ "excerpt": "This plug-in change the \\[AssemblyVersion\\] and \\[AssemblyFileVersion\\] from AssemblyInfo.cs sources. ",
+ "gav": "org.jenkinsci.plugins:change-assembly-version-plugin:1.5.1",
+ "labels": [
+ "dotnet"
+ ],
+ "name": "change-assembly-version-plugin",
+ "previousTimestamp": "2015-01-28T13:58:48.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2015-02-28T12:46:28.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "z/mRD/66Gtp9DAKYk5vOiYt+fZg=",
+ "title": "Change Assembly Version",
+ "url": "http://updates.jenkins-ci.org/download/plugins/change-assembly-version-plugin/1.5.1/change-assembly-version-plugin.hpi",
+ "version": "1.5.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Change+Assembly+Version"
+ },
+ "changelog-history": {
+ "buildDate": "Aug 17, 2016",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mindless",
+ "name": "Alan Harder"
+ },
+ {
+ "developerId": "escoem",
+ "name": "Emilio Escobar"
+ }
+ ],
+ "excerpt": "This plugin copies change log data to a later build when a build is deleted.",
+ "gav": "org.jenkins-ci.plugins:changelog-history:1.6",
+ "labels": [
+ "misc"
+ ],
+ "name": "changelog-history",
+ "previousTimestamp": "2016-06-22T17:05:18.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-08-17T17:59:48.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "H6sTO1b2v3j5n7AEwaTkAUwAqPE=",
+ "title": "Change Log History",
+ "url": "http://updates.jenkins-ci.org/download/plugins/changelog-history/1.6/changelog-history.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Change+Log+History+Plugin"
+ },
+ "changes-since-last-success": {
+ "buildDate": "Jan 17, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "name": "Nicolas De Loof"
+ }
+ ],
+ "excerpt": "generate changelog for a range of builds",
+ "gav": "org.jenkins-ci.plugins:changes-since-last-success:0.5",
+ "labels": [],
+ "name": "changes-since-last-success",
+ "previousTimestamp": "2013-01-16T14:42:30.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2013-01-17T14:51:16.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "GqrqkjidkyvOH/xDOBiF4d+NICU=",
+ "title": "Changes since last successfull build Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/changes-since-last-success/0.5/changes-since-last-success.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Changes+Since+Last+Success+Plugin"
+ },
+ "chaos-butler": {
+ "buildDate": "Sep 13, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "A plugin that periodically wakes up and disconnects build agents in order to prove that your infrastructure is fault&amp;nbsp;resilient. ",
+ "gav": "org.jenkins-ci.plugins:chaos-butler:1.0",
+ "labels": [
+ "cluster"
+ ],
+ "name": "chaos-butler",
+ "releaseTimestamp": "2016-09-13T14:05:38.00Z",
+ "requiredCore": "1.625",
+ "scm": "github.com",
+ "sha1": "EYXgRdqdGYzgu0Lh7sNNSqU6nzA=",
+ "title": "Chaos Butler Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chaos-butler/1.0/chaos-butler.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Chaos+Butler+Plugin"
+ },
+ "chatter-notifier": {
+ "buildDate": "Aug 16, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sfell",
+ "email": "simon.fell@salesforce.com",
+ "name": "Simon Fell"
+ },
+ {
+ "developerId": "sortiz",
+ "email": "sortiz@salesforce.com",
+ "name": "Stephanie Ortiz"
+ }
+ ],
+ "excerpt": "Allows users to send build results via <a href='http://www.salesforce.com/chatter/overview/'>Salesforce Chatter</a>",
+ "gav": "org.jenkins-ci.plugins:chatter-notifier:2.0.2",
+ "labels": [
+ "notifier"
+ ],
+ "name": "chatter-notifier",
+ "previousTimestamp": "2015-08-16T11:57:38.00Z",
+ "previousVersion": "2.0.1",
+ "releaseTimestamp": "2015-08-16T12:19:50.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "YlawjxhyXpY0VF2eKSR1zQc8nik=",
+ "title": "Chatter Notifier Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chatter-notifier/2.0.2/chatter-notifier.hpi",
+ "version": "2.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Chatter+Notifier+Plugin"
+ },
+ "chatwork": {
+ "buildDate": "Mar 23, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vexus2",
+ "email": "hikaru.tooyama@gmail.com",
+ "name": "vexus2"
+ },
+ {
+ "developerId": "sue445",
+ "email": "sue445@sue445.net",
+ "name": "sue445"
+ }
+ ],
+ "excerpt": "This Plugin will notify the ChatWork any message. ",
+ "gav": "org.jenkins-ci.plugins:chatwork:1.0.5",
+ "labels": [
+ "notifier"
+ ],
+ "name": "chatwork",
+ "previousTimestamp": "2015-11-11T22:21:04.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2016-03-23T23:00:34.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "EywdUUxfqnnIvKKYO00egTmQApI=",
+ "title": "ChatWork Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chatwork/1.0.5/chatwork.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ChatWork+Plugin"
+ },
+ "checkmarx": {
+ "buildDate": "Sep 22, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "1.509.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "checkmarxsupport",
+ "name": "Checkmarx Support"
+ },
+ {
+ "developerId": "sergeyk",
+ "name": "Sergey Kadaner"
+ }
+ ],
+ "excerpt": "This plugin adds an ability to perform automatic code scan by Checkmarx server and shows results summary and trend in Jenkins interface.",
+ "gav": "com.checkmarx.jenkins:checkmarx:8.2.0",
+ "labels": [
+ "external",
+ "report"
+ ],
+ "name": "checkmarx",
+ "previousTimestamp": "2016-07-11T15:47:42.00Z",
+ "previousVersion": "8.1.0-2",
+ "releaseTimestamp": "2016-09-22T15:24:58.00Z",
+ "requiredCore": "1.579",
+ "scm": "github.com",
+ "sha1": "ckkFRYEml0tYqc4GihOIeK8OITw=",
+ "title": "Jenkins Checkmarx Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/checkmarx/8.2.0/checkmarx.hpi",
+ "version": "8.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Checkmarx+CxSAST+Plugin"
+ },
+ "checkstyle": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.77"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drulli",
+ "email": "ullrich.hafner@gmail.com",
+ "name": "Ulli Hafner"
+ }
+ ],
+ "excerpt": "This plugin generates the trend report for <a href='http://checkstyle.sourceforge.net/'>Checkstyle</a>, an open source static code analysis program.&amp;nbsp; ",
+ "gav": "org.jvnet.hudson.plugins:checkstyle:3.46",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "checkstyle",
+ "previousTimestamp": "2016-02-27T23:43:00.00Z",
+ "previousVersion": "3.45",
+ "releaseTimestamp": "2016-06-01T14:19:32.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "xapio8iSEkCFTYeIaD5R/N9ViYw=",
+ "title": "Checkstyle Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/checkstyle/3.46/checkstyle.hpi",
+ "version": "3.46",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Checkstyle+Plugin"
+ },
+ "chef-identity": {
+ "buildDate": "May 12, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tfitch",
+ "email": "jenkins@tfitch.com",
+ "name": "Tyler Fitch"
+ }
+ ],
+ "excerpt": "This plugin allows management of Chef credentials so jobs can execute jobs against a Chef server using those credentials by adding a section to the Jenkins configuration screen to define one or more Chef identities (a combination of the pem key for auth and contents of a knife.rb to define which server to talk to).",
+ "gav": "org.jenkins-ci.plugins:chef-identity:1.0.0",
+ "labels": [
+ "buildwrapper",
+ "parameter"
+ ],
+ "name": "chef-identity",
+ "previousTimestamp": "2015-05-08T15:14:54.00Z",
+ "previousVersion": "0.1.4",
+ "releaseTimestamp": "2015-05-12T16:12:42.00Z",
+ "requiredCore": "1.554.3",
+ "scm": "github.com",
+ "sha1": "UmaEoStHj91K+jhY/3NrZ4ksxt8=",
+ "title": "Chef Identity Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chef-identity/1.0.0/chef-identity.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/chef-identity+plugin"
+ },
+ "chef-tracking": {
+ "buildDate": "Mar 31, 2014",
+ "dependencies": [
+ {
+ "name": "deployment-notification",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:chef-tracking:1.0",
+ "labels": [],
+ "name": "chef-tracking",
+ "releaseTimestamp": "2014-03-31T10:16:54.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "Cj/OVnOlCfaFD7O0c/cidYrEZ3c=",
+ "title": "Chef Tracking Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chef-tracking/1.0/chef-tracking.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Chef+Tracking+Plugin"
+ },
+ "chosen": {
+ "buildDate": "Dec 31, 2012",
+ "dependencies": [
+ {
+ "name": "ui-samples-plugin",
+ "optional": true,
+ "version": "1.488"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin packages JavaScript <a href='http://harvesthq.github.com/chosen/'>Chosen</a> library as a Jenkins plugin",
+ "gav": "org.jenkins-ci.plugins:chosen:1.0",
+ "labels": [],
+ "name": "chosen",
+ "releaseTimestamp": "2012-12-31T13:02:50.00Z",
+ "requiredCore": "1.488",
+ "scm": "github.com",
+ "sha1": "OWXmtS3vpshYI6XG9TSpNph7A8Y=",
+ "title": "Chosen plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chosen/1.0/chosen.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Chosen+plugin"
+ },
+ "chosen-views-tabbar": {
+ "buildDate": "Apr 13, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "taksan",
+ "name": "Gabriel Takeuchi"
+ }
+ ],
+ "excerpt": "Do you have too many views in your Jenkins? Do you get the dreaded horizontal scrolling? Then this plugin is for you\\! ",
+ "gav": "org.jenkins-ci.plugins:chosen-views-tabbar:1.2",
+ "labels": [
+ "ui"
+ ],
+ "name": "chosen-views-tabbar",
+ "previousTimestamp": "2014-04-09T10:25:32.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-04-13T18:17:48.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "UmqszSa0USnjbzvMMxEQi42hM3g=",
+ "title": "Chosen Views Tab Bar",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chosen-views-tabbar/1.2/chosen-views-tabbar.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Chosen+Views+Tab+Bar"
+ },
+ "chrome-frame-plugin": {
+ "buildDate": "Sep 23, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provides <a href='http://code.google.com/chrome/chromeframe/'>Google Chrome Frame</a> request for all pages.",
+ "gav": "org.jenkins-ci.plugins:chrome-frame-plugin:1.1",
+ "labels": [
+ "page-decorator"
+ ],
+ "name": "chrome-frame-plugin",
+ "previousTimestamp": "2011-09-22T16:38:12.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-09-23T15:48:58.00Z",
+ "requiredCore": "1.429",
+ "scm": "github.com",
+ "sha1": "cU9qJp/rTvNJ3onkEN9RmHBniqQ=",
+ "title": "Chrome Frame Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chrome-frame-plugin/1.1/chrome-frame-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Chrome+Frame+Plugin"
+ },
+ "chromedriver": {
+ "buildDate": "Aug 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nicolas"
+ }
+ ],
+ "excerpt": "This plugin auto-installs <a href='http://code.google.com/p/selenium/wiki/ChromeDriver'>ChromeDriver</a> to every slave.",
+ "gav": "org.jenkins-ci.plugins:chromedriver:1.2",
+ "labels": [],
+ "name": "chromedriver",
+ "previousTimestamp": "2014-03-31T16:01:48.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-08-18T11:11:24.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "BUsc8yLZKDj6+2zeTeu7yq2UvPs=",
+ "title": "ChromeDriver plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chromedriver/1.2/chromedriver.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ChromeDriver+plugin"
+ },
+ "chroot": {
+ "buildDate": "Feb 01, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rmohr",
+ "email": "roman@fenkhuber.at",
+ "name": "Roman Mohr"
+ }
+ ],
+ "excerpt": "Support for disposable chroot environments (pbuilder), which can be very useful for C and C+\\+ projects",
+ "gav": "org.jenkins-ci.plugins:chroot:0.1.4",
+ "labels": [
+ "buildwrapper",
+ "misc",
+ "builder"
+ ],
+ "name": "chroot",
+ "previousTimestamp": "2014-07-13T14:22:04.00Z",
+ "previousVersion": "0.1.3",
+ "releaseTimestamp": "2015-02-01T21:39:50.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "ybddY3y9sxYkKfNsU0MaYv0jwYE=",
+ "title": "Chroot Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chroot/0.1.4/chroot.hpi",
+ "version": "0.1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/chroot+Plugin"
+ },
+ "chucknorris": {
+ "buildDate": "Jan 24, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "batmat",
+ "email": "batmat@batmat.net",
+ "name": "Baptiste Mathus"
+ }
+ ],
+ "excerpt": "Displays a picture of Chuck Norris (instead of Jenkins the butler) and a random Chuck Norris 'The Programmer' fact on each build page.",
+ "gav": "org.jvnet.hudson.plugins:chucknorris:1.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "chucknorris",
+ "previousTimestamp": "2015-11-02T14:19:36.00Z",
+ "previousVersion": "0.9.1",
+ "releaseTimestamp": "2016-01-24T14:36:58.00Z",
+ "requiredCore": "1.434",
+ "scm": "github.com",
+ "sha1": "busYjg1ZWe8JRN7BkmAsL/pJiX8=",
+ "title": "ChuckNorris Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/chucknorris/1.0/chucknorris.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ChuckNorris+Plugin"
+ },
+ "ci-game": {
+ "buildDate": "Jun 30, 2016",
+ "dependencies": [
+ {
+ "name": "findbugs",
+ "optional": true,
+ "version": "4.50"
+ },
+ {
+ "name": "tasks",
+ "optional": true,
+ "version": "4.0"
+ },
+ {
+ "name": "checkstyle",
+ "optional": true,
+ "version": "3.40"
+ },
+ {
+ "name": "jacoco",
+ "optional": true,
+ "version": "1.0.18"
+ },
+ {
+ "name": "warnings",
+ "optional": true,
+ "version": "3.0"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "pmd",
+ "optional": true,
+ "version": "3.1"
+ },
+ {
+ "name": "violations",
+ "optional": true,
+ "version": "0.5.4"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.58"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "redsolo",
+ "email": "eramfelt@gmail.com",
+ "name": "Erik Ramfelt"
+ },
+ {
+ "developerId": "kutzi",
+ "email": "kutzi@gmx.de",
+ "name": "Christoph Kutzinski"
+ }
+ ],
+ "excerpt": "This plugin introduces a game where users gets point on improving the builds.",
+ "gav": "org.jenkins-ci.plugins:ci-game:1.25",
+ "labels": [
+ "misc",
+ "maven"
+ ],
+ "name": "ci-game",
+ "previousTimestamp": "2016-03-12T18:01:42.00Z",
+ "previousVersion": "1.24",
+ "releaseTimestamp": "2016-06-30T09:00:10.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "SBw/uBfxDSoiomHcoSLSyAuLMBA=",
+ "title": "Jenkins Continuous Integration game",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ci-game/1.25/ci-game.hpi",
+ "version": "1.25",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/The+Continuous+Integration+Game+plugin"
+ },
+ "ci-skip": {
+ "buildDate": "Dec 24, 2013",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.12"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "banyan"
+ }
+ ],
+ "excerpt": "Commits that have [ci skip] anywhere in the commit messages will be skipped.",
+ "gav": "org.jenkins-ci.ruby-plugins:ci-skip:0.0.2",
+ "labels": [],
+ "name": "ci-skip",
+ "previousTimestamp": "2013-12-23T00:03:54.00Z",
+ "previousVersion": "0.0.1",
+ "releaseTimestamp": "2013-12-24T01:37:28.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "nRvBw3GScUvD35WD75/md5/MC1k=",
+ "title": "Ci Skip Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ci-skip/0.0.2/ci-skip.hpi",
+ "version": "0.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ci+Skip+Plugin"
+ },
+ "cisco-spark": {
+ "buildDate": "Jun 13, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.8.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jiafu1115",
+ "email": "fujian1115@gmail.com",
+ "name": "fu.jian"
+ }
+ ],
+ "excerpt": "This plugin allow you to post customized message to Cisco spark room.",
+ "gav": "org.jenkins-ci.plugins:cisco-spark:1.0.5",
+ "labels": [
+ "notifier"
+ ],
+ "name": "cisco-spark",
+ "previousTimestamp": "2016-06-12T01:16:52.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2016-06-13T03:29:56.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "THVwOcraYNVWrXCHIZZl+LMXQos=",
+ "title": "Cisco Spark Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cisco-spark/1.0.5/cisco-spark.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Spark+Plugin"
+ },
+ "claim": {
+ "buildDate": "Jan 14, 2016",
+ "dependencies": [
+ {
+ "name": "build-failure-analyzer",
+ "optional": true,
+ "version": "1.13.0"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "mailer",
+ "optional": true,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ki"
+ }
+ ],
+ "excerpt": "This plugin allows users to claim failed builds",
+ "gav": "org.jenkins-ci.plugins:claim:2.8",
+ "labels": [
+ "misc"
+ ],
+ "name": "claim",
+ "previousTimestamp": "2015-05-12T10:37:34.00Z",
+ "previousVersion": "2.7",
+ "releaseTimestamp": "2016-01-14T14:25:04.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "S2kNYZnu0Ff7rtTm5KOr4OYtQRo=",
+ "title": "Jenkins Claim Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/claim/2.8/claim.hpi",
+ "version": "2.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Claim+plugin"
+ },
+ "clamav": {
+ "buildDate": "May 10, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ssogabe",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin allows you to check the artifacts with <a href='http://www.clamav.net/lang/en/'>ClamAV</a>, which is an open source (GPL) antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats. ",
+ "gav": "org.jenkins-ci.plugins:clamav:0.3",
+ "labels": [
+ "external"
+ ],
+ "name": "clamav",
+ "previousTimestamp": "2012-09-06T20:43:34.00Z",
+ "previousVersion": "0.2.1",
+ "releaseTimestamp": "2015-05-10T11:28:26.00Z",
+ "requiredCore": "1.596.2",
+ "scm": "github.com",
+ "sha1": "rQKqZv2DXGgtLRFrjYhnkNft3CE=",
+ "title": "Jenkins ClamAV Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clamav/0.3/clamav.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClamAV+Plugin"
+ },
+ "clang-scanbuild": {
+ "buildDate": "May 06, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jkennedy1980",
+ "email": "josh@ponycode.com",
+ "name": "Joshua Kennedy"
+ },
+ {
+ "developerId": "rodrigc",
+ "email": "rodrigc@FreeBSD.org",
+ "name": "Craig Rodrigues"
+ }
+ ],
+ "excerpt": "This plugin allows you to execute Clang scan-build against Mac or iPhone XCode projects or other scan-build compatible build tools. ",
+ "gav": "org.jenkins-ci.plugins:clang-scanbuild:1.8",
+ "labels": [
+ "report",
+ "ios"
+ ],
+ "name": "clang-scanbuild",
+ "releaseTimestamp": "2016-05-06T19:25:48.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "/6hhYOfZYEd6w88MQU3sRvx1HS8=",
+ "title": "Clang Scan-Build Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clang-scanbuild/1.8/clang-scanbuild.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clang+Scan-Build+Plugin"
+ },
+ "clang-scanbuild-plugin": {
+ "buildDate": "Dec 20, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jkennedy1980",
+ "email": "josh@ponycode.com",
+ "name": "Joshua Kennedy"
+ }
+ ],
+ "excerpt": "This plugin allows you to execute Clang scan-build against Mac or iPhone XCode projects or other scan-build compatible build tools. ",
+ "gav": "jenkins.plugins.clangscanbuild:clang-scanbuild-plugin:1.7",
+ "labels": [
+ "report",
+ "ios"
+ ],
+ "name": "clang-scanbuild-plugin",
+ "previousTimestamp": "2015-07-13T11:55:04.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2015-12-20T18:47:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "H4uiE9nfXMnpBpgk9HTpuGjxTQM=",
+ "title": "Clang Scan-Build Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clang-scanbuild-plugin/1.7/clang-scanbuild-plugin.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clang+Scan-Build+Plugin"
+ },
+ "clearcase": {
+ "buildDate": "Sep 06, 2016",
+ "compatibleSinceVersion": "1.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "email": "josra@praqma.net",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with <a href='http://www.ibm.com/software/awdtools/clearcase/'>ClearCase</a>.",
+ "gav": "org.jenkins-ci.plugins:clearcase:1.6.3",
+ "labels": [
+ "scm"
+ ],
+ "name": "clearcase",
+ "previousTimestamp": "2015-10-20T14:23:26.00Z",
+ "previousVersion": "1.6.2",
+ "releaseTimestamp": "2016-09-06T14:07:42.00Z",
+ "requiredCore": "1.625.1",
+ "scm": "github.com",
+ "sha1": "6av1vR4JX2SM9GSeMh85J2Vf/fY=",
+ "title": "Jenkins ClearCase Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clearcase/1.6.3/clearcase.hpi",
+ "version": "1.6.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+Plugin"
+ },
+ "clearcase-release": {
+ "buildDate": "Feb 17, 2011",
+ "dependencies": [
+ {
+ "name": "clearcase",
+ "optional": false,
+ "version": "1.3.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gbois@dev.java.net",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to promote composite baselines or latest baselines to RELEASED promotion level for Clearcase UCM. ",
+ "gav": "org.jvnet.hudson.plugins:clearcase-release:0.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "clearcase-release",
+ "previousTimestamp": "2009-12-07T00:39:28.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2011-02-17T13:36:32.00Z",
+ "requiredCore": "1.358",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "wJ5JCXLgN+2LYyJM83A+dfmsIUk=",
+ "title": "Jenkins ClearCase Release Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clearcase-release/0.3/clearcase-release.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+Release+Plugin"
+ },
+ "clearcase-ucm-baseline": {
+ "buildDate": "Sep 19, 2011",
+ "dependencies": [
+ {
+ "name": "clearcase",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rseguy",
+ "email": "romain.seguy@gmail.com",
+ "name": "Romain Seguy"
+ }
+ ],
+ "excerpt": "Allows using ClearCase UCM baselines as the input of builds: When using this SCM, users will be asked at build-time to select the baseline on which the job has to work.",
+ "gav": "org.jvnet.hudson.plugins:clearcase-ucm-baseline:1.7.4",
+ "labels": [
+ "scm"
+ ],
+ "name": "clearcase-ucm-baseline",
+ "previousTimestamp": "2011-02-20T22:35:22.00Z",
+ "previousVersion": "1.7.3",
+ "releaseTimestamp": "2011-09-19T18:59:28.00Z",
+ "requiredCore": "1.375",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "M096rg4dK3BO7jdZAvungMCIqhs=",
+ "title": "ClearCase UCM Baseline Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clearcase-ucm-baseline/1.7.4/clearcase-ucm-baseline.hpi",
+ "version": "1.7.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+UCM+Baseline+Plugin"
+ },
+ "clearcase-ucm-plugin": {
+ "buildDate": "Aug 25, 2016",
+ "dependencies": [
+ {
+ "name": "compatibility-action-storage",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.38"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "A Praqmatic integration to ClearCase UCM, simplifying continuous integration with Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:clearcase-ucm-plugin:1.7.0",
+ "labels": [
+ "scm"
+ ],
+ "name": "clearcase-ucm-plugin",
+ "previousTimestamp": "2016-02-15T11:46:24.00Z",
+ "previousVersion": "1.6.9",
+ "releaseTimestamp": "2016-08-25T09:02:14.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "LpTyC70KLwiPlEG2iVxXh5sSyJk=",
+ "title": "ClearCase UCM Plugin!",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clearcase-ucm-plugin/1.7.0/clearcase-ucm-plugin.hpi",
+ "version": "1.7.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+UCM+Plugin"
+ },
+ "cli-commander": {
+ "buildDate": "Jul 03, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Run <a href='Jenkins CLI'>CLI commands</a> from Jenkins web UI.",
+ "gav": "org.jenkins-ci.plugins:cli-commander:0.3",
+ "labels": [],
+ "name": "cli-commander",
+ "previousTimestamp": "2015-04-17T12:28:02.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2015-07-03T10:58:04.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "VKB+fRC1095r9g4j+TpOk54XDuk=",
+ "title": "CLI Commander Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cli-commander/0.3/cli-commander.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CLI+Commander+Plugin"
+ },
+ "clone-workspace-scm": {
+ "buildDate": "Sep 06, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "abayer",
+ "email": "andrew.bayer@gmail.com",
+ "name": "Andrew Bayer"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to archive the workspace from builds of one project and reuse them as the SCM source for another project.",
+ "gav": "org.jenkins-ci.plugins:clone-workspace-scm:0.6",
+ "labels": [
+ "scm"
+ ],
+ "name": "clone-workspace-scm",
+ "previousTimestamp": "2012-08-17T10:42:58.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2013-09-06T09:11:30.00Z",
+ "requiredCore": "1.463",
+ "scm": "github.com",
+ "sha1": "5QjXyiVfpaMIMMoBhPZuZnzGVtA=",
+ "title": "Jenkins Clone Workspace SCM Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clone-workspace-scm/0.6/clone-workspace-scm.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clone+Workspace+SCM+Plugin"
+ },
+ "cloud-stats": {
+ "buildDate": "Jul 11, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Aggregate past cloud provisioning activities into a report. ",
+ "gav": "org.jenkins-ci.plugins:cloud-stats:0.3",
+ "labels": [
+ "slaves",
+ "cluster"
+ ],
+ "name": "cloud-stats",
+ "previousTimestamp": "2016-06-28T16:00:06.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2016-07-11T16:49:44.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "uguhTE2HbSg2T3xdnRao15bOhCo=",
+ "title": "Cloud Statistics Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloud-stats/0.3/cloud-stats.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cloud+Statistics+Plugin"
+ },
+ "cloudbees-bitbucket-branch-source": {
+ "buildDate": "Sep 20, 2016",
+ "dependencies": [
+ {
+ "name": "branch-api",
+ "optional": false,
+ "version": "1.10.2"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "mercurial",
+ "optional": false,
+ "version": "1.54"
+ },
+ {
+ "name": "display-url-api",
+ "optional": false,
+ "version": "0.2"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "amuniz"
+ }
+ ],
+ "excerpt": "Multibranch projects and Team/Project folders from <a href='https://bitbucket.org/'>Bitbucket Cloud</a> and <a href='https://www.atlassian.com/software/bitbucket/server'>Server</a>. Please note that this plugin requires a server running BitBucket 4.0 or later; Stash 3.x and earlier are not supported.",
+ "gav": "org.jenkins-ci.plugins:cloudbees-bitbucket-branch-source:1.8",
+ "labels": [
+ "scm"
+ ],
+ "name": "cloudbees-bitbucket-branch-source",
+ "previousTimestamp": "2016-09-10T13:22:00.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2016-09-20T12:36:30.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "PfB56qB7FCrHJzISHGuxeUCf0Qg=",
+ "title": "Bitbucket Branch Source Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloudbees-bitbucket-branch-source/1.8/cloudbees-bitbucket-branch-source.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+Branch+Source+Plugin"
+ },
+ "cloudbees-credentials": {
+ "buildDate": "Mar 17, 2014",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin is used to manage credentials within Jenkins. This plugin is used by CloudBees plugins to access CloudBees services.",
+ "gav": "com.cloudbees.jenkins.plugins:cloudbees-credentials:3.3",
+ "labels": [],
+ "name": "cloudbees-credentials",
+ "releaseTimestamp": "2014-03-17T19:03:18.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "UPlPGoZ6/sqTs8/bpOyvbpf6kOo=",
+ "title": "CloudBees Credentials Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloudbees-credentials/3.3/cloudbees-credentials.hpi",
+ "version": "3.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Credentials+Plugin"
+ },
+ "cloudbees-disk-usage-simple": {
+ "buildDate": "Oct 05, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ },
+ {
+ "developerId": "aheritier",
+ "email": "aheritier@apache.org",
+ "name": "Arnaud Heritier"
+ },
+ {
+ "developerId": "recena",
+ "email": "recena@gmail.com",
+ "name": "Manuel Recena"
+ },
+ {
+ "developerId": "ydubreuil",
+ "name": "Yoann Dubreuil"
+ }
+ ],
+ "excerpt": "This plugin offers a simplified disk usage report. It is based on the Unix {{du}} command - and as such won't work on Windows masters. ",
+ "gav": "org.jenkins-ci.plugins:cloudbees-disk-usage-simple:0.5",
+ "labels": [
+ "report"
+ ],
+ "name": "cloudbees-disk-usage-simple",
+ "previousTimestamp": "2015-09-25T10:37:04.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2015-10-05T15:22:30.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "L34Zn15oQ3YJnHZmlAWAiscKKzs=",
+ "title": "CloudBees Disk Usage Simple Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloudbees-disk-usage-simple/0.5/cloudbees-disk-usage-simple.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Simple+Disk+Usage+Plugin"
+ },
+ "cloudbees-folder": {
+ "buildDate": "Sep 23, 2016",
+ "compatibleSinceVersion": "5.2",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": true,
+ "version": "2.1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenc"
+ }
+ ],
+ "excerpt": "This plugin allows users to create &quot;folders&quot; to organize jobs. Users can define custom taxonomies (like by project type, organization type etc). Folders are nestable and you can define views within folders.",
+ "gav": "org.jenkins-ci.plugins:cloudbees-folder:5.13",
+ "labels": [
+ "ui",
+ "misc"
+ ],
+ "name": "cloudbees-folder",
+ "previousTimestamp": "2016-06-15T20:58:48.00Z",
+ "previousVersion": "5.12",
+ "releaseTimestamp": "2016-09-23T10:10:04.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "T6sJlrpybKs7TX0WWMHHu8esxCM=",
+ "title": "Folders Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloudbees-folder/5.13/cloudbees-folder.hpi",
+ "version": "5.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Folders+Plugin"
+ },
+ "cloudbees-plugin-gateway": {
+ "buildDate": "Dec 14, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin removes any update center definitions added by previous versions of this plugin ",
+ "gav": "org.jenkins-ci.plugins:cloudbees-plugin-gateway:7.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "cloudbees-plugin-gateway",
+ "previousTimestamp": "2014-02-26T15:49:48.00Z",
+ "previousVersion": "5.0",
+ "releaseTimestamp": "2015-12-14T21:41:04.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "GtkgrIxCLyboUDEN7D2aBonERdg=",
+ "title": "CloudBees Free Enterprise Plugins (one-time tidy-up)",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloudbees-plugin-gateway/7.0/cloudbees-plugin-gateway.hpi",
+ "version": "7.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Free+Enterprise+Plugins"
+ },
+ "cloudbees-registration": {
+ "buildDate": "Jun 23, 2016",
+ "dependencies": [
+ {
+ "name": "cloudbees-credentials",
+ "optional": false,
+ "version": "3.3"
+ },
+ {
+ "name": "async-http-client",
+ "optional": false,
+ "version": "1.7.8"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.23"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dudu"
+ }
+ ],
+ "excerpt": "This plugin provides the ability for users and administrators to provide the credentials required to access CloudBees' services.",
+ "gav": "com.cloudbees.jenkins.plugins:cloudbees-registration:3.15",
+ "labels": [],
+ "name": "cloudbees-registration",
+ "previousTimestamp": "2014-03-17T19:11:46.00Z",
+ "previousVersion": "3.14",
+ "releaseTimestamp": "2016-06-23T15:00:46.00Z",
+ "requiredCore": "1.596",
+ "scm": "github.com",
+ "sha1": "vcm24L4nZKQR1LqR5RQLSoTz/cE=",
+ "title": "CloudBees Registration Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloudbees-registration/3.15/cloudbees-registration.hpi",
+ "version": "3.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Registration+Plugin"
+ },
+ "cloudfoundry": {
+ "buildDate": "Oct 21, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.21"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "WilliamG",
+ "email": "william.gautier@hpe.com",
+ "name": "William Gautier"
+ }
+ ],
+ "excerpt": "Pushes a project to Cloud Foundry or a CF-based platform (e.g. Stackato) at the end of a build. ",
+ "gav": "org.jenkins-ci.plugins:cloudfoundry:1.5",
+ "labels": [
+ "upload"
+ ],
+ "name": "cloudfoundry",
+ "previousTimestamp": "2015-09-30T13:25:24.00Z",
+ "previousVersion": "1.4.4",
+ "releaseTimestamp": "2015-10-21T15:10:50.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "OyLHxX4OA/RrAK/WoUbM7HNTSjs=",
+ "title": "Cloud Foundry Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloudfoundry/1.5/cloudfoundry.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cloud+Foundry+Plugin"
+ },
+ "cloudtest": {
+ "buildDate": "Jun 13, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "msolnit",
+ "name": "Matt Solnit"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.soasta.com/products/cloudtest/'>SOASTA CloudTest</a> and <a href='http://www.soasta.com/products/touchtest/'>SOASTA TouchTest</a> features into Jenkins.",
+ "gav": "com.soasta.jenkins:cloudtest:2.25",
+ "labels": [
+ "android",
+ "ios",
+ "report",
+ "external"
+ ],
+ "name": "cloudtest",
+ "previousTimestamp": "2016-06-02T16:07:46.00Z",
+ "previousVersion": "2.24",
+ "releaseTimestamp": "2016-06-13T10:42:32.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "4IbxJ/6m7jgI0mAmzsz2XDNc9qY=",
+ "title": "SOASTA CloudTest Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloudtest/2.25/cloudtest.hpi",
+ "version": "2.25",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SOASTA+CloudTest+Plugin"
+ },
+ "clover": {
+ "buildDate": "Mar 04, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "npellow",
+ "name": "Nick Pellow"
+ },
+ {
+ "developerId": "olamy",
+ "name": "Olivier Lamy"
+ },
+ {
+ "developerId": "mparfianowicz",
+ "name": "Marek Parfianowicz"
+ }
+ ],
+ "excerpt": "This plugin allows you to capture code coverage reports from <a href='http://atlassian.com/software/clover/'>Clover</a>. Jenkins will generate and track code coverage across time. This plugin can be used without the need to modify your build.xml. ",
+ "gav": "org.jenkins-ci.plugins:clover:4.6.0",
+ "labels": [
+ "report"
+ ],
+ "name": "clover",
+ "previousTimestamp": "2015-12-09T12:01:46.00Z",
+ "previousVersion": "4.5.0",
+ "releaseTimestamp": "2016-03-04T11:15:44.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "5ZaER2Tmg7dnXYHYCj5hKmKDHhc=",
+ "title": "Jenkins Clover plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/clover/4.6.0/clover.hpi",
+ "version": "4.6.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clover+Plugin"
+ },
+ "cloverphp": {
+ "buildDate": "Nov 21, 2015",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ssogabe",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin allows you to capture code coverage reports from *PHPUnit*. For more information on how to set up PHP projects with Jenkins have a look at the <a href='http://jenkins-php.org/'>Template for Jenkins Jobs for PHP Projects</a>. ",
+ "gav": "org.jenkins-ci.plugins:cloverphp:0.5",
+ "labels": [
+ "report"
+ ],
+ "name": "cloverphp",
+ "previousTimestamp": "2015-04-04T09:56:00.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2015-11-21T04:43:14.00Z",
+ "requiredCore": "1.596.2",
+ "scm": "github.com",
+ "sha1": "ZF4n6SbEabr91vR3wLJtvMTpFq8=",
+ "title": "Jenkins Clover PHP plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cloverphp/0.5/cloverphp.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clover+PHP+Plugin"
+ },
+ "cluster-stats": {
+ "buildDate": "Dec 30, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "toomasr",
+ "email": "toomas@zeroturnaround.com",
+ "name": "Toomas Romer"
+ }
+ ],
+ "excerpt": "Every now and then your Jenkins cluster will get slow for the users. Usually this happens because of the increase in utilization due to added projects, team members or added supported platforms. Then starts whining. Cluster is slow, not enough executors, long builds etc. From higher up it is difficult to assess if we need more computing power or less whining. Hence, Jenkins Cluster Statistics Plugin was conceived. ",
+ "gav": "org.zeroturnaround:cluster-stats:0.4.6",
+ "labels": [
+ "cluster"
+ ],
+ "name": "cluster-stats",
+ "previousTimestamp": "2014-08-25T11:16:28.00Z",
+ "previousVersion": "0.4.5",
+ "releaseTimestamp": "2014-12-30T11:43:04.00Z",
+ "requiredCore": "1.557",
+ "scm": "github.com",
+ "sha1": "8/cob4ollV4bHpEX7sxZTIdHeQg=",
+ "title": "Cluster Statistics Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cluster-stats/0.4.6/cluster-stats.hpi",
+ "version": "0.4.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cluster+Statistics+Plugin"
+ },
+ "cmakebuilder": {
+ "buildDate": "Sep 20, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "15knots",
+ "name": "Martin Weber"
+ }
+ ],
+ "excerpt": "This plugin can be used to build <a href='https://cmake.org/'>cmake</a> based projects within Jenkins. It provides * a build-step that generates the build scripts from a _CMakeLists.txt_ file and allows to run these with the appropriate build tool, * a build-step to invoke some tools of the CMake suite (CMake/CPack/CTest) with arbitrary arguments plus * automatic installation of the CMake tool suite. ",
+ "gav": "org.jenkins-ci.plugins:cmakebuilder:2.4.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "cmakebuilder",
+ "previousTimestamp": "2016-06-26T14:54:42.00Z",
+ "previousVersion": "2.4.3",
+ "releaseTimestamp": "2016-09-20T20:15:34.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "KWIhxtYJ77Yu8qZfXOwPx7n4Zig=",
+ "title": "CMake plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cmakebuilder/2.4.4/cmakebuilder.hpi",
+ "version": "2.4.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CMake+Plugin"
+ },
+ "cmvc": {
+ "buildDate": "Aug 27, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gawab",
+ "email": "fuechi@ciandt.com",
+ "name": "Fábio Franco Uechi"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.redbooks.ibm.com/abstracts/gg244178.html'>CMVC</a> to Hudson. ",
+ "gav": "org.jenkins-ci.plugins:cmvc:0.4",
+ "labels": [
+ "scm"
+ ],
+ "name": "cmvc",
+ "previousTimestamp": "2009-12-29T15:19:14.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2011-08-27T09:08:28.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "IwFWF5TxVmre5/uPpUsJ4wR9xks=",
+ "title": "Jenkins CMVC Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cmvc/0.4/cmvc.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CMVC+Plugin"
+ },
+ "cobertura": {
+ "buildDate": "May 08, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.4"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.480.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "email": "stephenconnolly@dev.java.net",
+ "name": "Stephen Connolly"
+ },
+ {
+ "developerId": "manuel_carrasco",
+ "email": "manolo@apache",
+ "name": "Manuel Carrasco Monino"
+ },
+ {
+ "developerId": "ssogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin allows you to capture code coverage report from <a href='http://cobertura.sourceforge.net/'>Cobertura</a>. Jenkins will generate the trend report of coverage. ",
+ "gav": "org.jenkins-ci.plugins:cobertura:1.9.8",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "cobertura",
+ "previousTimestamp": "2015-03-04T15:19:58.00Z",
+ "previousVersion": "1.9.7",
+ "releaseTimestamp": "2016-05-08T10:35:08.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "g2FDAe53lD0sXl4SnZCnd+A8qKQ=",
+ "title": "Jenkins Cobertura Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cobertura/1.9.8/cobertura.hpi",
+ "version": "1.9.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cobertura+Plugin"
+ },
+ "cocoapods-integration": {
+ "buildDate": "Nov 16, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ljanzik",
+ "email": "leif.janzik@gmail.com",
+ "name": "Leif Janzik"
+ }
+ ],
+ "excerpt": "This plugin provides a very basic build step for projects which use CocoaPods. ",
+ "gav": "com.thoughtsonmobile:cocoapods-integration:0.2.0",
+ "labels": [
+ "ios",
+ "misc"
+ ],
+ "name": "cocoapods-integration",
+ "previousTimestamp": "2012-11-08T19:00:44.00Z",
+ "previousVersion": "0.1.1",
+ "releaseTimestamp": "2012-11-16T12:04:32.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "GzH3wqVWk+Sceu7aaJCjCmd5G5k=",
+ "title": "CocoaPods Jenkins Integration",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cocoapods-integration/0.2.0/cocoapods-integration.hpi",
+ "version": "0.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CocoaPods+Plugin"
+ },
+ "codebeamer-coverage-publisher": {
+ "buildDate": "Sep 25, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "abanfi",
+ "email": "support@intland.com",
+ "name": "Attila Banfi"
+ }
+ ],
+ "excerpt": "Uploads coverage results to codeBeamer",
+ "gav": "org.jenkins-ci.plugins:codebeamer-coverage-publisher:1.0.13",
+ "labels": [
+ "report"
+ ],
+ "name": "codebeamer-coverage-publisher",
+ "previousTimestamp": "2016-09-22T22:08:48.00Z",
+ "previousVersion": "1.0.8",
+ "releaseTimestamp": "2016-09-25T09:20:22.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "MapS8z5OuZdRKXFe2r1yuEsyiCM=",
+ "title": "Codebeamer Coverage Publisher Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codebeamer-coverage-publisher/1.0.13/codebeamer-coverage-publisher.hpi",
+ "version": "1.0.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CodeBeamer+Source+Code+Coverage+Publisher+Plugin"
+ },
+ "codebeamer-result-trend-updater": {
+ "buildDate": "Apr 07, 2016",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.5.2"
+ },
+ {
+ "name": "performance",
+ "optional": true,
+ "version": "1.13"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "mercurial",
+ "optional": true,
+ "version": "1.54"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.4.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "balazstar",
+ "email": "balazs.tar@intland.com",
+ "name": "Balazs Tar"
+ }
+ ],
+ "excerpt": "Allows users to to update wiki pages in <a href='http://intland.com/codebeamer/product-overview/'>codebeamer</a> with test or performance results ",
+ "gav": "org.jenkins-ci.plugins:codebeamer-result-trend-updater:1.0.3",
+ "labels": [
+ "notifier"
+ ],
+ "name": "codebeamer-result-trend-updater",
+ "previousTimestamp": "2015-10-08T15:56:24.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2016-04-07T15:55:44.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "+ykjhtSMmB1VUJ/TBpVq1peZc7Q=",
+ "title": "Codebeamer Test Results Trend Updater Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codebeamer-result-trend-updater/1.0.3/codebeamer-result-trend-updater.hpi",
+ "version": "1.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Codebeamer+Result+Trend+Updater+Plugin"
+ },
+ "codebeamer-xunit-importer": {
+ "buildDate": "Jul 08, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.4.0"
+ },
+ {
+ "name": "mercurial",
+ "optional": true,
+ "version": "1.54"
+ },
+ {
+ "name": "subversion",
+ "optional": true,
+ "version": "2.5.2"
+ },
+ {
+ "name": "junit",
+ "optional": true,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "balazstar",
+ "email": "balazs.tar@intland.com",
+ "name": "Balazs Tar"
+ }
+ ],
+ "excerpt": "Uploads xUnit test to codeBeamer",
+ "gav": "org.jenkins-ci.plugins:codebeamer-xunit-importer:1.1",
+ "labels": [
+ "report"
+ ],
+ "name": "codebeamer-xunit-importer",
+ "previousTimestamp": "2016-06-20T17:41:06.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-07-08T12:16:52.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "ZdJqwct/QFl/w7o39V5h8A85qI4=",
+ "title": "Codebeamer xUnit Importer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codebeamer-xunit-importer/1.1/codebeamer-xunit-importer.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Codebeamer+xUnit+Importer+Plugin"
+ },
+ "codecommit-url-helper": {
+ "buildDate": "Mar 30, 2016",
+ "dependencies": [
+ {
+ "name": "aws-credentials",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.4"
+ },
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.45"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aldrinleal",
+ "name": "Aldrin Leal"
+ }
+ ],
+ "excerpt": "This plugin creates an extra Git Plugin Behaviour, thus helping you use AWS Keys when checking out from <a href='https://aws.amazon.com/codecommit/'>AWS CodeCommit</a> Service and avoiding the need to <a href='http://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-unixes.html'>customize your \\~/.gitconfig</a> for usage with the awscli tool.",
+ "gav": "br.com.ingenieux.jenkins.plugins:codecommit-url-helper:0.0.1",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "codecommit-url-helper",
+ "releaseTimestamp": "2016-03-30T12:02:36.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "2kc+jO0LWvigq7wJwEZLELVOVcA=",
+ "title": "AWS CodeCommit URL Helper",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codecommit-url-helper/0.0.1/codecommit-url-helper.hpi",
+ "version": "0.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CodeCommit+URL+Helper"
+ },
+ "codecover": {
+ "buildDate": "Nov 04, 2011",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.1"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.400"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kbonnette",
+ "email": "kane.bonnette@paperhost.com",
+ "name": "Kane Bonnette"
+ }
+ ],
+ "excerpt": "This plugin allows you to capture code coverage report from <a href='http://codecover.org/'>CodeCover</a>. Jenkins will generate the trend report of coverage. ",
+ "gav": "org.jenkins-ci.plugins:codecover:1.1",
+ "labels": [
+ "report"
+ ],
+ "name": "codecover",
+ "releaseTimestamp": "2011-11-04T11:32:48.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "a4YmbqXIiaEQtD2oQvQB1AsP21E=",
+ "title": "Jenkins CodeCover plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codecover/1.1/codecover.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CodeCover+Plugin"
+ },
+ "codedeploy": {
+ "buildDate": "Aug 08, 2016",
+ "dependencies": [
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.50"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "afitzgibbon",
+ "email": "gibbon@amazon.com",
+ "name": "Andrew Fitz Gibbon"
+ }
+ ],
+ "excerpt": "Adds a post-build step to integrate Jenkins with AWS CodeDeploy",
+ "gav": "com.amazonaws:codedeploy:1.12",
+ "labels": [
+ "upload"
+ ],
+ "name": "codedeploy",
+ "previousTimestamp": "2016-03-12T00:58:28.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2016-08-08T23:27:34.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "djM60rIeyZ73HoDiv0DjCghucoI=",
+ "title": "AWS CodeDeploy Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codedeploy/1.12/codedeploy.hpi",
+ "version": "1.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWS+Codedeploy+plugin"
+ },
+ "codedx": {
+ "buildDate": "Aug 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "samuelbjohnson",
+ "email": "samuel.johnson@codedx.com",
+ "name": "Samuel B. Johnson"
+ },
+ {
+ "developerId": "baf",
+ "email": "robert.ferris@codedx.com",
+ "name": "Robert Ferris"
+ }
+ ],
+ "excerpt": "Allows Jenkins to push source and build artifacts to <a href='http://codedx.com'>Code Dx</a> and display the aggregated results of its <a href='http://codedx.com/supported-tools/'>full suite</a> of analysis tools.",
+ "gav": "org.jenkins-ci.plugins:codedx:2.1.1",
+ "labels": [
+ "report"
+ ],
+ "name": "codedx",
+ "previousTimestamp": "2016-03-01T14:35:46.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2016-08-08T15:07:40.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "za6mxLyEbFzkz3YlDP9tJpmj0Uk=",
+ "title": "Code Dx Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codedx/2.1.1/codedx.hpi",
+ "version": "2.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Code+Dx+Plugin"
+ },
+ "codefresh": {
+ "buildDate": "Sep 01, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "antweiss",
+ "email": "ant@otomato.link",
+ "name": "Anton Weiss"
+ }
+ ],
+ "excerpt": "Allows integrating&amp;nbsp;<a href='https://codefresh.io'>Codefresh</a>&amp;nbsp;docker flow pipelines into your existing Jenkins flows. ",
+ "gav": "org.jenkins-ci.plugins:codefresh:1.2",
+ "labels": [
+ "builder",
+ "external"
+ ],
+ "name": "codefresh",
+ "previousTimestamp": "2016-08-10T17:42:08.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-09-01T11:46:30.00Z",
+ "requiredCore": "1.651.2",
+ "scm": "github.com",
+ "sha1": "x8u0lhDFcKdWBbYQTkfy+xV+iAk=",
+ "title": "Codefresh Integration Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codefresh/1.2/codefresh.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Codefresh+Plugin"
+ },
+ "codescan": {
+ "buildDate": "May 24, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "villagechief",
+ "email": "support@villagechief.com",
+ "name": "Ben van Klinken"
+ }
+ ],
+ "excerpt": "Jenkins plugin to run hosted CodeScan for Salesforce builds on <a href='http://www.code-scan.com/'>www.code-scan.com</a> ",
+ "gav": "com.villagechief.codescan.jenkins:codescan:1.0",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "codescan",
+ "releaseTimestamp": "2016-05-24T14:06:10.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "7aaN/hYWCjBlXqN306Pmh+WMmcc=",
+ "title": "CodeScan Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codescan/1.0/codescan.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CodeScan+Plugin"
+ },
+ "codescanner": {
+ "buildDate": "Jan 03, 2011",
+ "dependencies": [
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.357"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "lkz633",
+ "name": "Maximilian Odendahl"
+ }
+ ],
+ "excerpt": "This plugin generates the trend report for <a href='http://carbidehelp.nokia.com/help/index.jsp?topic=/com.nokia.carbide.cpp.codescanner/html/codescanner.htm'>Codescanner</a>, a tool which uses static analysis to look for bugs, hints and other useful information in Symbian C+\\+ source code. ",
+ "gav": "org.jvnet.hudson.plugins:codescanner:0.11",
+ "labels": [
+ "report"
+ ],
+ "name": "codescanner",
+ "previousTimestamp": "2010-03-18T17:26:20.00Z",
+ "previousVersion": "0.10",
+ "releaseTimestamp": "2011-01-03T11:15:00.00Z",
+ "requiredCore": "1.357",
+ "scm": "svn.java.net",
+ "sha1": "NGNsgXJAt3bJzHTeT/UZRtXVffs=",
+ "title": "Hudson Codescanner Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codescanner/0.11/codescanner.hpi",
+ "version": "0.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CodeScanner+Plugin"
+ },
+ "codesonar": {
+ "buildDate": "Sep 12, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.24"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.37"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "email": "josra@praqma.net",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:codesonar:2.0.4",
+ "labels": [
+ "notifier",
+ "report",
+ "post-build",
+ "devops"
+ ],
+ "name": "codesonar",
+ "previousTimestamp": "2016-09-12T13:16:56.00Z",
+ "previousVersion": "2.0.3",
+ "releaseTimestamp": "2016-09-12T14:09:58.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "kFDu5vnSFtXA3avlnhyJFCQweFw=",
+ "title": "CodeSonar Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/codesonar/2.0.4/codesonar.hpi",
+ "version": "2.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CodeSonar+Plugin"
+ },
+ "collabnet": {
+ "buildDate": "May 11, 2016",
+ "dependencies": [
+ {
+ "name": "promoted-builds",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.363"
+ },
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.23"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "The CollabNet Plugin is an integration with <a href='http://www.open.collab.net/products/sfee/'>CollabNet TeamForge</a>.",
+ "gav": "org.jenkins-ci.plugins:collabnet:1.2.0",
+ "labels": [
+ "external"
+ ],
+ "name": "collabnet",
+ "previousTimestamp": "2015-11-11T01:15:10.00Z",
+ "previousVersion": "1.1.10",
+ "releaseTimestamp": "2016-05-11T13:51:32.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "GaECD9AtJ5SBiHSxmudTvgcMPh8=",
+ "title": "CollabNet Plugins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/collabnet/1.2.0/collabnet.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CollabNet+Plugin"
+ },
+ "collapsing-console-sections": {
+ "buildDate": "Jun 13, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dty",
+ "name": "Dean Yu"
+ },
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "This plugin allows the creation of sections in build consoles.",
+ "gav": "org.jenkins-ci.plugins:collapsing-console-sections:1.5.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "collapsing-console-sections",
+ "previousTimestamp": "2013-11-04T21:00:16.00Z",
+ "previousVersion": "1.4.1",
+ "releaseTimestamp": "2016-06-13T11:07:34.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "YBxrkaaxhjgi2lG5Ny0guE3go3Y=",
+ "title": "Jenkins Collapsing Console Sections Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/collapsing-console-sections/1.5.0/collapsing-console-sections.hpi",
+ "version": "1.5.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Collapsing+Console+Sections+Plugin"
+ },
+ "commit-message-trigger-plugin": {
+ "buildDate": "Sep 30, 2014",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.12"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "lorenklingman"
+ }
+ ],
+ "excerpt": "This plugin allows builds to be made only for certain text in the commit message.",
+ "gav": "org.jenkins-ci.ruby-plugins:commit-message-trigger-plugin:0.1",
+ "labels": [],
+ "name": "commit-message-trigger-plugin",
+ "releaseTimestamp": "2014-09-30T13:21:20.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "tZX9JVae3Yg3rxJA+cvXHvbmRXY=",
+ "title": "Commit Message Trigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/commit-message-trigger-plugin/0.1/commit-message-trigger-plugin.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Commit+Message+Trigger+Plugin"
+ },
+ "compact-columns": {
+ "buildDate": "Nov 07, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jacob_robertson",
+ "email": "jacob.robertson.work@gmail.com",
+ "name": "Jacob Robertson"
+ }
+ ],
+ "excerpt": "More compact columns for showing last success and failure. Easier to understand, and takes less room in your view. ",
+ "gav": "org.jenkins-ci.plugins:compact-columns:1.10",
+ "labels": [
+ "ui",
+ "listview-column"
+ ],
+ "name": "compact-columns",
+ "previousTimestamp": "2011-09-17T20:30:30.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2013-11-07T21:52:36.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "Yu4//f358TwxA1H09s/ikC2v0wE=",
+ "title": "Compact Columns",
+ "url": "http://updates.jenkins-ci.org/download/plugins/compact-columns/1.10/compact-columns.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Compact+Columns"
+ },
+ "compatibility-action-storage": {
+ "buildDate": "Jun 23, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "email": "josra@praqma.net",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:compatibility-action-storage:1.0",
+ "labels": [],
+ "name": "compatibility-action-storage",
+ "releaseTimestamp": "2015-06-23T11:22:56.00Z",
+ "requiredCore": "1.554.3",
+ "scm": "github.com",
+ "sha1": "oLJ5KcOo6+hfCqzmxpYjlL2fmcg=",
+ "title": "Compatibility Action Storage Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/compatibility-action-storage/1.0/compatibility-action-storage.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Compatability+Action+Storage+Plugin"
+ },
+ "composer-security-checker": {
+ "buildDate": "Mar 25, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "easylo",
+ "email": "easylo@gmail.com",
+ "name": "Laurent RICHARD"
+ }
+ ],
+ "excerpt": "Utility plugin for Git support in Jenkins",
+ "gav": "org.jenkins-ci.plugins:composer-security-checker:1.7",
+ "labels": [],
+ "name": "composer-security-checker",
+ "previousTimestamp": "2014-03-24T20:34:34.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2014-03-25T21:03:08.00Z",
+ "requiredCore": "1.555",
+ "scm": "github.com",
+ "sha1": "rIFwIbLDwWPL4/wco5ZVzVp6K3E=",
+ "title": "Jenkins composer security checker plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/composer-security-checker/1.7/composer-security-checker.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Composer+Security+Checker+Plugin"
+ },
+ "compound-slaves": {
+ "buildDate": "Dec 07, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "pupssman",
+ "email": "pupssman@yandex-team.ru",
+ "name": "Ivan Kalinin"
+ },
+ {
+ "developerId": "mavlyutov",
+ "email": "mavlyutov@yandex-team.ru",
+ "name": "Marat Mavlyutov"
+ },
+ {
+ "developerId": "dchr",
+ "email": "dchr@yandex-team.ru",
+ "name": "Denis Chernilevsky"
+ }
+ ],
+ "excerpt": "The plugin for uniting groups of nodes into a single slave (compound slave). This allows to use several nodes for a single job\\! Moreover it works with any other cloud plugins and is able to get compound slaves from the cloud. ",
+ "gav": "ru.yandex.jenkins.plugins.compound-slaves:compound-slaves:1.2",
+ "labels": [
+ "slaves",
+ "cluster"
+ ],
+ "name": "compound-slaves",
+ "previousTimestamp": "2015-06-01T14:52:20.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-12-07T11:05:42.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "rZJnAQYoVd3RzIuqqqgrrJByOuY=",
+ "title": "Compound Slaves",
+ "url": "http://updates.jenkins-ci.org/download/plugins/compound-slaves/1.2/compound-slaves.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Compound+Slaves"
+ },
+ "compress-artifacts": {
+ "buildDate": "May 13, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Keeps build artifacts compressed to save disk space on the master.",
+ "gav": "org.jenkins-ci.plugins:compress-artifacts:1.8",
+ "labels": [
+ "post-build"
+ ],
+ "name": "compress-artifacts",
+ "previousTimestamp": "2015-06-21T18:53:10.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2016-05-13T12:36:54.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "zUqjO2KFje2pP5d8ZAWE0GOU7qc=",
+ "title": "Compress Artifacts Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/compress-artifacts/1.8/compress-artifacts.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Compress+Artifacts+Plugin"
+ },
+ "compress-buildlog": {
+ "buildDate": "Oct 13, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "danielbeck",
+ "email": "daniel@beckweb.net",
+ "name": "Daniel Beck"
+ }
+ ],
+ "excerpt": "Jenkins plugin to compress the log file after build completion ",
+ "gav": "org.jenkins-ci.plugins:compress-buildlog:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "compress-buildlog",
+ "releaseTimestamp": "2014-10-13T23:00:36.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "zl6XxRWpN0+Rvgfnn3v7HrDHHP0=",
+ "title": "Jenkins Compress Build Log plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/compress-buildlog/1.0/compress-buildlog.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Compress+Build+Log+Plugin"
+ },
+ "computer-queue-plugin": {
+ "buildDate": "Aug 22, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plug-in display the queue for given computer in it's page ",
+ "gav": "jenkins.ci.plugins.computerqueue:computer-queue-plugin:1.4",
+ "labels": [],
+ "name": "computer-queue-plugin",
+ "previousTimestamp": "2012-09-20T12:52:06.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2014-08-22T09:37:58.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "xuIfKlO0i6/SPqTWE+L95GBljX4=",
+ "title": "Computer-queue-plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/computer-queue-plugin/1.4/computer-queue-plugin.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Computer+queue+plugin"
+ },
+ "compuware-scm-downloader": {
+ "buildDate": "Aug 18, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.24"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "cpwr_jenkins",
+ "email": "steve.kansa@compuware.com",
+ "name": "Steve Kansa"
+ }
+ ],
+ "excerpt": "The Compuware Source Code Download for Endevor, PDS, and ISPW&amp;nbsp;plugin allows Jenkins users to download Endevor, PDS, or ISPW members from the mainframe to the PC.",
+ "gav": "com.compuware.jenkins:compuware-scm-downloader:1.5",
+ "labels": [
+ "scm"
+ ],
+ "name": "compuware-scm-downloader",
+ "previousTimestamp": "2016-01-04T19:03:00.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-08-18T21:13:02.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "/Wc+EKqloOxP4Y0Jyd5ETe+5C4Y=",
+ "title": "Compuware Source Code Download for Endevor, PDS, and ISPW",
+ "url": "http://updates.jenkins-ci.org/download/plugins/compuware-scm-downloader/1.5/compuware-scm-downloader.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Compuware+Source+Code+Download+for+Endevor%2C+PDS%2C+and+ISPW+Plugin"
+ },
+ "concordionpresenter": {
+ "buildDate": "Aug 13, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rjohnst",
+ "email": "rob@rjohnst.com",
+ "name": "Rob Johnston"
+ }
+ ],
+ "excerpt": "This plugin publishes <a href='http://www.concordion.org'>Concordion</a> test reports for each build",
+ "gav": "org.jenkins-ci.plugins:concordionpresenter:0.7",
+ "labels": [
+ "report"
+ ],
+ "name": "concordionpresenter",
+ "previousTimestamp": "2010-07-06T22:45:38.00Z",
+ "previousVersion": "0.6",
+ "releaseTimestamp": "2011-08-13T08:22:30.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "PIqeFs0L9RLWPIRYRc8xzbVJoNA=",
+ "title": "Concordion Presenter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/concordionpresenter/0.7/concordionpresenter.hpi",
+ "version": "0.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Concordion+Presenter+Plugin"
+ },
+ "concurrent-login-plugin": {
+ "buildDate": "Jul 19, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "blogfein",
+ "email": "snazzy7979@gmail.com",
+ "name": "BlogFein"
+ }
+ ],
+ "excerpt": "This plugin intercept a concurrent login to Jenkins. You can apply if you use Jenkins's&amp;nbsp;authenticate. If you use Jenkins authentication, it does not support concurrent login. !&#46041;&#51217;&#49444;&#51221;1.png|border=1! For security reasons, the plugin is useful when concurrent access should not be allowed If you install the plugin and configure, you can only connection by one account. session timeout settings: settings in the WAS or supports itself(1 min). ",
+ "gav": "hudson.plugins.concurrent_login:concurrent-login-plugin:0.7",
+ "labels": [],
+ "name": "concurrent-login-plugin",
+ "previousTimestamp": "2013-07-16T16:22:30.00Z",
+ "previousVersion": "0.6",
+ "releaseTimestamp": "2013-07-19T15:34:44.00Z",
+ "requiredCore": "1.513",
+ "scm": "github.com",
+ "sha1": "Pd69BYgv0y6NNGP774Vl4h3jldg=",
+ "title": "Concurrent Login Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/concurrent-login-plugin/0.7/concurrent-login-plugin.hpi",
+ "version": "0.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Concurrent+Login+Plugin"
+ },
+ "conditional-buildstep": {
+ "buildDate": "Jun 16, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.8"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.0-beta-1"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "imod",
+ "name": "Dominik Bartholdi"
+ },
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "A buildstep wrapping any number of other buildsteps, controlling their execution based on a defined condition. ",
+ "gav": "org.jenkins-ci.plugins:conditional-buildstep:1.3.5",
+ "labels": [
+ "builder"
+ ],
+ "name": "conditional-buildstep",
+ "previousTimestamp": "2013-11-13T14:39:20.00Z",
+ "previousVersion": "1.3.3",
+ "releaseTimestamp": "2016-06-16T09:11:50.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "KNDbMqubVUAr1A1HcFYifoUdH50=",
+ "title": "Conditional BuildStep",
+ "url": "http://updates.jenkins-ci.org/download/plugins/conditional-buildstep/1.3.5/conditional-buildstep.hpi",
+ "version": "1.3.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Conditional+BuildStep+Plugin"
+ },
+ "config-autorefresh-plugin": {
+ "buildDate": "Jun 23, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provide a way to configure the auto-refresh rate from the Jenkins UI.",
+ "gav": "org.jenkins-ci.plugins:config-autorefresh-plugin:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "config-autorefresh-plugin",
+ "releaseTimestamp": "2011-06-23T09:29:04.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "B3XzainxaQsI5zqnsBCanQSFxW8=",
+ "title": "Config AutoRefresh Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/config-autorefresh-plugin/1.0/config-autorefresh-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Config+AutoRefresh+Plugin"
+ },
+ "config-file-provider": {
+ "buildDate": "Sep 09, 2016",
+ "dependencies": [
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.12"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.4"
+ },
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.12.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olamy",
+ "name": "Olivier Lamy"
+ },
+ {
+ "developerId": "imod",
+ "name": "Dominik Bartholdi"
+ }
+ ],
+ "excerpt": "Adds the ability to provide configuration files (i.e., settings.xml for maven, XML, groovy, custom files, etc.) loaded through the Jenkins UI which will be copied to the job's workspace.",
+ "gav": "org.jenkins-ci.plugins:config-file-provider:2.13",
+ "labels": [
+ "maven",
+ "external",
+ "groovy-related"
+ ],
+ "name": "config-file-provider",
+ "previousTimestamp": "2016-06-24T16:19:30.00Z",
+ "previousVersion": "2.11",
+ "releaseTimestamp": "2016-09-09T14:18:34.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "8kQBaRrLNuBJ+kzLa2uS8ZMXHzo=",
+ "title": "Config File Provider Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/config-file-provider/2.13/config-file-provider.hpi",
+ "version": "2.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Config+File+Provider+Plugin"
+ },
+ "config-rotator": {
+ "buildDate": "Aug 25, 2016",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.37"
+ },
+ {
+ "name": "compatibility-action-storage",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "Automatic rotations of possible configurations. Monitors the SCM for newer versions of components and tests if compliant. Available for ClearCaseUCM and Git.",
+ "gav": "net.praqma:config-rotator:2.0.0",
+ "labels": [
+ "misc",
+ "scm",
+ "post-build"
+ ],
+ "name": "config-rotator",
+ "previousTimestamp": "2015-10-14T08:59:20.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2016-08-25T09:55:22.00Z",
+ "requiredCore": "2.15",
+ "scm": "github.com",
+ "sha1": "kq4oFXOKi+dG1x3FWe+t4XmU76g=",
+ "title": "Config Rotator Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/config-rotator/2.0.0/config-rotator.hpi",
+ "version": "2.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Config+Rotator+Plugin"
+ },
+ "configurationslicing": {
+ "buildDate": "Mar 06, 2016",
+ "dependencies": [
+ {
+ "name": "groovy",
+ "optional": true,
+ "version": "1.9"
+ },
+ {
+ "name": "python",
+ "optional": true,
+ "version": "1.2"
+ },
+ {
+ "name": "claim",
+ "optional": true,
+ "version": "2.3"
+ },
+ {
+ "name": "email-ext",
+ "optional": true,
+ "version": "2.37"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.12"
+ },
+ {
+ "name": "gradle",
+ "optional": true,
+ "version": "1.24"
+ },
+ {
+ "name": "jython",
+ "optional": true,
+ "version": "1.9"
+ },
+ {
+ "name": "PrioritySorter",
+ "optional": true,
+ "version": "1.3"
+ },
+ {
+ "name": "build-timeout",
+ "optional": true,
+ "version": "1.16"
+ },
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "ant",
+ "optional": true,
+ "version": "1.1"
+ },
+ {
+ "name": "timestamper",
+ "optional": true,
+ "version": "1.2.2"
+ },
+ {
+ "name": "config-file-provider",
+ "optional": true,
+ "version": "2.7.1"
+ },
+ {
+ "name": "logfilesizechecker",
+ "optional": true,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jacob_robertson",
+ "email": "jacob.robertson.work@gmail.com",
+ "name": "Jacob Robertson"
+ }
+ ],
+ "excerpt": "Perform mass configuration of select project properties, including email, timer, discard old builds, and Maven configuration. ",
+ "gav": "org.jenkins-ci.plugins:configurationslicing:1.45",
+ "labels": [
+ "misc",
+ "builder",
+ "emailext"
+ ],
+ "name": "configurationslicing",
+ "previousTimestamp": "2015-09-24T23:00:46.00Z",
+ "previousVersion": "1.44",
+ "releaseTimestamp": "2016-03-06T13:20:46.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "9nNkx42/yRiV/s916gO9V70ROQ4=",
+ "title": "Configuration Slicing plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/configurationslicing/1.45/configurationslicing.hpi",
+ "version": "1.45",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Configuration+Slicing+Plugin"
+ },
+ "configure-job-column-plugin": {
+ "buildDate": "May 30, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provide a fast-path configure job link available for views.",
+ "gav": "org.jenkins-ci.plugins:configure-job-column-plugin:1.0",
+ "labels": [
+ "listview-column",
+ "ui",
+ "misc"
+ ],
+ "name": "configure-job-column-plugin",
+ "releaseTimestamp": "2012-05-30T22:36:24.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "p8yOFqsuzF0mA9Qu5fGYtl1EfXo=",
+ "title": "Configure Job Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/configure-job-column-plugin/1.0/configure-job-column-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Configure+Job+Column+Plugin"
+ },
+ "confluence-publisher": {
+ "buildDate": "Jan 14, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jhansche",
+ "email": "jhansche@myyearbook.com",
+ "name": "Joe Hansche"
+ }
+ ],
+ "excerpt": "This plugin allows you to publish build artifacts as attachments to an <a href='http://www.atlassian.com/'>Atlassian</a> <a href='http://www.atlassian.com/software/confluence/'>Confluence</a> wiki page. ",
+ "gav": "org.jenkins-ci.plugins:confluence-publisher:1.8",
+ "labels": [
+ "upload",
+ "external"
+ ],
+ "name": "confluence-publisher",
+ "previousTimestamp": "2012-06-25T12:57:18.00Z",
+ "previousVersion": "1.7.1",
+ "releaseTimestamp": "2013-01-14T14:05:22.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "5j6Gzz0Nzq9hKOChHRQOV2kvGgg=",
+ "title": "Confluence Publisher",
+ "url": "http://updates.jenkins-ci.org/download/plugins/confluence-publisher/1.8/confluence-publisher.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Confluence+Publisher+Plugin"
+ },
+ "console-badge": {
+ "buildDate": "Aug 02, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oleksii",
+ "email": "oleksiy@noroutine.me",
+ "name": "Oleksii Khilkevych"
+ }
+ ],
+ "excerpt": "Adds quick-access badge to each build to navigate to build console",
+ "gav": "me.noroutine.jenkins.plugin:console-badge:1.1",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "console-badge",
+ "previousTimestamp": "2016-08-02T09:59:46.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-08-02T10:19:44.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "HR/ZZ4+NVWD/UG8qrWk0RZxpyas=",
+ "title": "Console Badge",
+ "url": "http://updates.jenkins-ci.org/download/plugins/console-badge/1.1/console-badge.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Console+Badge+Plugin"
+ },
+ "console-column-plugin": {
+ "buildDate": "Oct 15, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provide a fast-path console link available for views.",
+ "gav": "org.jenkins-ci.plugins:console-column-plugin:1.5",
+ "labels": [
+ "listview-column",
+ "ui"
+ ],
+ "name": "console-column-plugin",
+ "previousTimestamp": "2011-10-12T07:56:20.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2011-10-15T14:52:30.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "mtd/5cTNMwFDXjDLSl3GeRdwyZY=",
+ "title": "Console Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/console-column-plugin/1.5/console-column-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Console+Column+Plugin"
+ },
+ "console-tail": {
+ "buildDate": "Oct 22, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a tail view of the console on the main job page when the last build failed.",
+ "gav": "org.jenkins-ci.plugins:console-tail:1.1",
+ "labels": [],
+ "name": "console-tail",
+ "previousTimestamp": "2013-10-22T14:06:04.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-10-22T14:17:26.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "3Ydb4nZQjePDKExStasUFt+XwYY=",
+ "title": "Console Tail Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/console-tail/1.1/console-tail.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Console+Tail+Plugin"
+ },
+ "consul-kv-builder": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jimmyraywv",
+ "email": "james.ray@capitalone.com",
+ "name": "Jimmy Ray"
+ }
+ ],
+ "excerpt": "Consul KV BUilder for reading/writing/deleting K,V pairs in Consul.",
+ "gav": "org.jenkins-ci.plugins:consul-kv-builder:2.0.12",
+ "labels": [
+ "builder"
+ ],
+ "name": "consul-kv-builder",
+ "previousTimestamp": "2016-09-20T17:16:08.00Z",
+ "previousVersion": "2.0.7",
+ "releaseTimestamp": "2016-10-03T16:08:28.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "9l5OTHCuBIzY4w4rb7jjtiAbV/I=",
+ "title": "Consul KV Builder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/consul-kv-builder/2.0.12/consul-kv-builder.hpi",
+ "version": "2.0.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Consul-KV-Builder+Plugin"
+ },
+ "contrast-continuous-application-security": {
+ "buildDate": "Aug 03, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jleo",
+ "email": "justin.leo@contrastsecurity.com",
+ "name": "Justin Leo"
+ }
+ ],
+ "excerpt": "This plugin downloads the latest Contrast java agent from a Saas or on-premise Teamserver environment, and allows failing the build on vulnerability detection.&amp;nbsp;Plugin graphs history of vulnerability detection.&amp;nbsp; ",
+ "gav": "org.jenkins-ci.plugins:contrast-continuous-application-security:1.3",
+ "labels": [],
+ "name": "contrast-continuous-application-security",
+ "previousTimestamp": "2016-07-25T15:44:02.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-08-03T13:51:18.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "7tnW4+0fBvtdH7/EPcnY5RGrRlY=",
+ "title": "Contrast Continuous Application Security",
+ "url": "http://updates.jenkins-ci.org/download/plugins/contrast-continuous-application-security/1.3/contrast-continuous-application-security.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Contrast+Continuous+Application+Security+Plugin"
+ },
+ "convertigo-mobile-platform": {
+ "buildDate": "Oct 01, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "Yinam",
+ "email": "yinam@convertigo.com",
+ "name": "Yina Mou"
+ }
+ ],
+ "excerpt": "Build, deploy and test Convertigo projects in a Continuous integration environment",
+ "gav": "com.convertigo.jenkins.plugins:convertigo-mobile-platform:1.1",
+ "labels": [
+ "plugin-test",
+ "builder"
+ ],
+ "name": "convertigo-mobile-platform",
+ "previousTimestamp": "2015-09-28T14:17:14.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-10-01T17:54:58.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "tWqXUTUOXjRJSzYiJ2FzfJofMgE=",
+ "title": "Convertigo Mobile Platform Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/convertigo-mobile-platform/1.1/convertigo-mobile-platform.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Convertigo+Mobile+Platform+Plugin"
+ },
+ "coordinator": {
+ "buildDate": "Apr 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ace-han",
+ "email": "ace.jl.han@gmail.com",
+ "name": "Ace Han"
+ },
+ {
+ "developerId": "kymair",
+ "email": "kymair@gmail.com",
+ "name": "Jindi Wu"
+ }
+ ],
+ "excerpt": "This plugin acts like a coordinator that makes other jobs to build in a particular sequence as pre-defined. There are {color:#3366ff}{*}serial{*}{color} and {color:#3366ff}{*}parallel{*}{color} building patterns, which should have already covered most scenarios. ",
+ "gav": "org.jenkins-ci.plugins:coordinator:1.2.0",
+ "labels": [],
+ "name": "coordinator",
+ "previousTimestamp": "2015-07-11T13:50:48.00Z",
+ "previousVersion": "1.1.1",
+ "releaseTimestamp": "2016-04-20T10:17:54.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "/35S/EdBsyvOLswx8z7kmUdPkeU=",
+ "title": "Coordinator Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/coordinator/1.2.0/coordinator.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Coordinator"
+ },
+ "copado": {
+ "buildDate": "Jun 05, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "federico_larsens",
+ "email": "fl@copa.do",
+ "name": "Federico Larsen"
+ }
+ ],
+ "excerpt": "With this plugin you can add a build step to your Jenkins project that executes a <a href='http://copa.do'>Copado</a> <a href='http://docs.copado.apiary.io'>Webhook API</a> task. You would add this step after your Copado setup is finished. After the Copado Webhook is triggered, the plugin will wait for the job run to finish (or timeout). If the Job step is successful, your pipeline will continue to the next step in your pipeline; however, if it fails (or times out), the build will be marked as failed.",
+ "gav": "com.copado.jenkins:copado:1.2",
+ "labels": [],
+ "name": "copado",
+ "previousTimestamp": "2016-02-23T16:14:38.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-06-05T17:03:26.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "eII1dDuVxzQUBmuNSd6GQc2IEgE=",
+ "title": "Copado plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/copado/1.2/copado.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copado+Plugin"
+ },
+ "copr": {
+ "buildDate": "Apr 15, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "msrb",
+ "email": "msrb@redhat.com",
+ "name": "Michal Srb"
+ }
+ ],
+ "excerpt": "This plugin allows users to build RPM packages in <a href='https://fedorahosted.org/copr/'>Copr</a>. ",
+ "gav": "org.fedoraproject.jenkins.plugins:copr:0.3",
+ "labels": [
+ "external"
+ ],
+ "name": "copr",
+ "previousTimestamp": "2014-04-08T17:21:46.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2014-04-15T21:40:44.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "YHOLIvZtLJc+XuOAmMr0CzT2t3M=",
+ "title": "Jenkins Copr plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/copr/0.3/copr.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copr+Plugin"
+ },
+ "copy-data-to-workspace-plugin": {
+ "buildDate": "Feb 24, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nzhelyakov",
+ "email": "nzhelyakov@gmail.com",
+ "name": "Nikita Zhelyakov"
+ }
+ ],
+ "excerpt": "Copies data to workspace directory for each project build. ",
+ "gav": "org.jvnet.hudson.plugins:copy-data-to-workspace-plugin:1.0",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "copy-data-to-workspace-plugin",
+ "releaseTimestamp": "2011-02-24T19:46:20.00Z",
+ "requiredCore": "1.366",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "o1H9UdRKji2M3qV9S15s84tGq3g=",
+ "title": "Copy data to workspace plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/copy-data-to-workspace-plugin/1.0/copy-data-to-workspace-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copy+Data+To+Workspace+Plugin"
+ },
+ "copy-project-link": {
+ "buildDate": "Jan 12, 2016",
+ "dependencies": [
+ {
+ "name": "cloudbees-folder",
+ "optional": true,
+ "version": "4.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ },
+ {
+ "developerId": "vlatombe",
+ "name": "Vincent Latombe"
+ },
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "This plugin adds the &quot;Copy project&quot; link into left side panel in the main project page to facilitate copying of job configuration.",
+ "gav": "org.jenkins-ci.plugins:copy-project-link:1.5",
+ "labels": [
+ "ui"
+ ],
+ "name": "copy-project-link",
+ "previousTimestamp": "2015-05-13T12:29:30.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-01-12T16:18:48.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "4ciV6pdXEyC6MB+f7ON74P0gmSw=",
+ "title": "Copy project link plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/copy-project-link/1.5/copy-project-link.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copy+project+link+plugin"
+ },
+ "copy-to-slave": {
+ "buildDate": "Feb 23, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "svvivek",
+ "email": "svvivekanand@gmail.com",
+ "name": "Vivekanand S V"
+ }
+ ],
+ "excerpt": "This plugin allows to copy a set of files, from a location somewhere on the master node, to jobs' workspaces. It also allows to copy files back from the workspaces of jobs located on a slave node to their workspaces on the master one.",
+ "gav": "org.jenkins-ci.plugins:copy-to-slave:1.4.4",
+ "labels": [
+ "slaves",
+ "notifier",
+ "buildwrapper"
+ ],
+ "name": "copy-to-slave",
+ "previousTimestamp": "2013-09-28T10:54:54.00Z",
+ "previousVersion": "1.4.3",
+ "releaseTimestamp": "2015-02-23T11:10:34.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "u0LxaGpqWy6zxG2pCAoi8imTVRs=",
+ "title": "Copy To Slave Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/copy-to-slave/1.4.4/copy-to-slave.hpi",
+ "version": "1.4.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copy+To+Slave+Plugin"
+ },
+ "copyartifact": {
+ "buildDate": "Jul 24, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.7.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ikedam"
+ }
+ ],
+ "excerpt": "Adds a build step to copy artifacts from another project.",
+ "gav": "org.jenkins-ci.plugins:copyartifact:1.38.1",
+ "labels": [
+ "builder",
+ "parameter"
+ ],
+ "name": "copyartifact",
+ "previousTimestamp": "2016-04-17T10:12:02.00Z",
+ "previousVersion": "1.38",
+ "releaseTimestamp": "2016-07-24T09:52:02.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "T5yByy8GTTOxK6NsH02XdVg4wGw=",
+ "title": "Copy Artifact Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/copyartifact/1.38.1/copyartifact.hpi",
+ "version": "1.38.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copy+Artifact+Plugin"
+ },
+ "cors-filter": {
+ "buildDate": "Dec 17, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "uday",
+ "email": "uaarkoti@gmail.com",
+ "name": "Udaypal Aarkoti"
+ }
+ ],
+ "excerpt": "This plugin supports <a href='http://en.wikipedia.org/wiki/Cross-origin_resource_sharing'>cross-site</a> http requests to Jenkins.&amp;nbsp;",
+ "gav": "org.jenkins-ci.plugins:cors-filter:1.1",
+ "labels": [],
+ "name": "cors-filter",
+ "previousTimestamp": "2015-06-02T19:02:24.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-12-17T22:46:18.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "fydq6AtYG+l5k28LexfDnlcWhHM=",
+ "title": "CORS support for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cors-filter/1.1/cors-filter.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cors+Filter+Plugin"
+ },
+ "couchdb-statistics": {
+ "buildDate": "Dec 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "name": "Gareth Evans"
+ }
+ ],
+ "excerpt": "CouchDB Statistics plugin allows the publishing of all build statistics to CouchDB/Cloudant. ",
+ "gav": "org.jenkins-ci.plugins:couchdb-statistics:0.3",
+ "labels": [
+ "report"
+ ],
+ "name": "couchdb-statistics",
+ "previousTimestamp": "2015-12-04T18:37:54.00Z",
+ "previousVersion": "0.2.1",
+ "releaseTimestamp": "2015-12-15T10:27:46.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "gViKzoKPYc0iOs1E17gEo5sFLxQ=",
+ "title": "CouchDB Statistics Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/couchdb-statistics/0.3/couchdb-statistics.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CouchDB+Statistics+Plugin"
+ },
+ "countjobs-viewstabbar": {
+ "buildDate": "Jan 11, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ilbors",
+ "name": "Ignacio Albors"
+ }
+ ],
+ "excerpt": "This plugin shows a Views TabBar like the original one but it adds how many jobs has each view in every tab title.",
+ "gav": "ws.albors:countjobs-viewstabbar:1.0.0",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "countjobs-viewstabbar",
+ "releaseTimestamp": "2012-01-11T00:27:16.00Z",
+ "requiredCore": "1.428",
+ "scm": "github.com",
+ "sha1": "RnukVLYGfy/xyENjvUUxckTu2Jc=",
+ "title": "Countjobs Viewstabbar",
+ "url": "http://updates.jenkins-ci.org/download/plugins/countjobs-viewstabbar/1.0.0/countjobs-viewstabbar.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Countjobs+Viewstabbar"
+ },
+ "covcomplplot": {
+ "buildDate": "Aug 13, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "junoyoon",
+ "email": "junoyoon@gmail.com",
+ "name": "JunHo Yoon"
+ }
+ ],
+ "excerpt": "This plugin shows the coverage/complexity scatter plot from Clover or Cobertura plugin results.",
+ "gav": "org.jenkins-ci.plugins:covcomplplot:1.1.1",
+ "labels": [
+ "report"
+ ],
+ "name": "covcomplplot",
+ "previousTimestamp": "2010-10-21T11:20:02.00Z",
+ "previousVersion": "1.1.0",
+ "releaseTimestamp": "2011-08-13T10:21:10.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "CboIlIImnrdoYnYhXgihm8zyL6o=",
+ "title": "Coverage/Complexity Scatter Plot PlugIn",
+ "url": "http://updates.jenkins-ci.org/download/plugins/covcomplplot/1.1.1/covcomplplot.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Coverage+Complexity+Scatter+Plot+PlugIn"
+ },
+ "coverity": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kdang",
+ "email": "kdang@coverity.com",
+ "name": "Ken Dang"
+ },
+ {
+ "developerId": "frossi",
+ "email": "frossi@coverity.com",
+ "name": "Franco Rossi"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with the&amp;nbsp;<a href='http://www.coverity.com/products/coverity-connect/'>Coverity Connect</a>&amp;nbsp;and <a href='http://www.coverity.com/products/code-advisor/'>Coverity Static Analysis</a> tools. ",
+ "gav": "org.jenkins-ci.plugins:coverity:1.8.0",
+ "labels": [
+ "buildwrapper",
+ "report"
+ ],
+ "name": "coverity",
+ "previousTimestamp": "2016-08-05T02:05:04.00Z",
+ "previousVersion": "1.7.3",
+ "releaseTimestamp": "2016-09-23T14:25:44.00Z",
+ "requiredCore": "1.534",
+ "scm": "github.com",
+ "sha1": "29BeSOucEmiPO7M0ost5+DXwxHs=",
+ "title": "Coverity plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/coverity/1.8.0/coverity.hpi",
+ "version": "1.8.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Coverity+Plugin"
+ },
+ "cppcheck": {
+ "buildDate": "Aug 05, 2015",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ },
+ {
+ "developerId": "mixalturek",
+ "email": "mixalturek@users.sf.net",
+ "name": "Michal Turek"
+ }
+ ],
+ "excerpt": "This plugin generates the trend report for <a href='http://cppcheck.wiki.sourceforge.net/'>CppCheck</a>, a tool for static C/C+\\+ code analysis.",
+ "gav": "org.jenkins-ci.plugins:cppcheck:1.21",
+ "labels": [
+ "report"
+ ],
+ "name": "cppcheck",
+ "previousTimestamp": "2014-09-27T23:26:52.00Z",
+ "previousVersion": "1.20",
+ "releaseTimestamp": "2015-08-05T20:37:46.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "4xt2Zq0OcVUiBMco8W/4wc8lStU=",
+ "title": "Jenkins Cppcheck Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cppcheck/1.21/cppcheck.hpi",
+ "version": "1.21",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cppcheck+Plugin"
+ },
+ "cppncss": {
+ "buildDate": "Feb 18, 2011",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.358"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "holywen",
+ "email": "shaohua-holy.wen@nsn.com",
+ "name": "Shaohua Wen"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='http://cppncss.sourceforge.net/'>CppNCSS</a> build reporting tool.",
+ "gav": "org.jvnet.hudson.plugins:cppncss:1.1",
+ "labels": [
+ "report"
+ ],
+ "name": "cppncss",
+ "previousTimestamp": "2010-06-03T16:44:40.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-02-18T12:17:08.00Z",
+ "requiredCore": "1.358",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "ASJbOA48B7oGDuDIi+kn8WNFMp0=",
+ "title": "Jenkins CppNCSS plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cppncss/1.1/cppncss.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CPPNCSS+Plugin"
+ },
+ "cpptest": {
+ "buildDate": "Jul 25, 2015",
+ "dependencies": [
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.34"
+ },
+ {
+ "name": "xunit",
+ "optional": false,
+ "version": "1.91"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.480"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ahebert",
+ "email": "aurrelhebert@gmail.com",
+ "name": "Aurelien Hebert"
+ },
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ },
+ {
+ "developerId": "NQH",
+ "email": "quanghuycvut@yahoo.com",
+ "name": "N. Q. Huy"
+ }
+ ],
+ "excerpt": "This plugin allows you publish <a href='http://www.parasoft.com/jsp/products/home.jsp?product=Wizard&amp;'>Parasoft C++test</a> test results. This plugin makes it possible to import Parasoft C++test reports from each build into Hudson so they are displayed with a trend graph and details about which tests that failed. ",
+ "gav": "com.thalesgroup.jenkins-ci.plugins:cpptest:0.14",
+ "labels": [
+ "report"
+ ],
+ "name": "cpptest",
+ "previousTimestamp": "2014-09-30T00:27:28.00Z",
+ "previousVersion": "0.13.2",
+ "releaseTimestamp": "2015-07-25T22:14:10.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "7IjRPtm8PQuB3y2azEVwP6KKCwQ=",
+ "title": "Jenkins Cpptest plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cpptest/0.14/cpptest.hpi",
+ "version": "0.14",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cpptest+Plugin"
+ },
+ "crap4j": {
+ "buildDate": "Oct 22, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dlindner",
+ "name": "Daniel Lindner"
+ }
+ ],
+ "excerpt": "This plugin reads the &quot;crappy methods&quot; report from <a href='http://crap4j.org/'>Crap4J</a>. Jenkins&amp;nbsp;will generate the trend report of crap percentage and provide detailed information about changes.",
+ "gav": "org.jenkins-ci.plugins:crap4j:0.9",
+ "labels": [
+ "report"
+ ],
+ "name": "crap4j",
+ "previousTimestamp": "2010-08-01T21:32:16.00Z",
+ "previousVersion": "0.8",
+ "releaseTimestamp": "2014-10-22T22:35:30.00Z",
+ "requiredCore": "1.566",
+ "scm": "github.com",
+ "sha1": "Xsp41MjEbobD54/m3sxToZqOf30=",
+ "title": "Jenkins Crap4J plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/crap4j/0.9/crap4j.hpi",
+ "version": "0.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Crap4J+Plugin"
+ },
+ "create-fingerprint": {
+ "buildDate": "Dec 31, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "marcsanfacon",
+ "email": "marc.sanfacon@gmail.com",
+ "name": "Marc Sanfacon"
+ }
+ ],
+ "excerpt": "Adds the ability to generate fingerprints as build steps instead of waiting for a build to complete. ",
+ "gav": "org.jenkins-ci.plugins:create-fingerprint:1.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "create-fingerprint",
+ "previousTimestamp": "2011-11-26T16:11:58.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2011-12-31T10:02:48.00Z",
+ "requiredCore": "1.440",
+ "scm": "github.com",
+ "sha1": "eTmOEC36FyDg0co1ceOp9C0Z7WI=",
+ "title": "Fingerprint Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/create-fingerprint/1.2/create-fingerprint.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint+Plugin"
+ },
+ "createjobadvanced": {
+ "buildDate": "Dec 28, 2013",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bertrandgressier",
+ "email": "bertrand.gressier@gmail.com",
+ "name": "Bertrand Gressier"
+ }
+ ],
+ "excerpt": "This plugin extends creating job. When you create a job, it automatically adds all permissions for the creator. ",
+ "gav": "org.jenkins-ci.plugins:createjobadvanced:1.8",
+ "labels": [
+ "user"
+ ],
+ "name": "createjobadvanced",
+ "previousTimestamp": "2013-07-23T05:48:06.00Z",
+ "previousVersion": "1.7.2",
+ "releaseTimestamp": "2013-12-28T16:44:00.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "d27KRgh7F5JOKasPcTukcZMlupk=",
+ "title": "Create Job Advanced",
+ "url": "http://updates.jenkins-ci.org/download/plugins/createjobadvanced/1.8/createjobadvanced.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Create+Job+Advanced+Plugin"
+ },
+ "credentials": {
+ "buildDate": "Sep 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin allows you to store credentials in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:credentials:2.1.5",
+ "labels": [],
+ "name": "credentials",
+ "previousTimestamp": "2016-06-23T14:28:44.00Z",
+ "previousVersion": "2.1.4",
+ "releaseTimestamp": "2016-09-20T14:17:50.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "fbAC57BT+GPizpb7WKu5ipwBsJw=",
+ "title": "Credentials Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/credentials/2.1.5/credentials.hpi",
+ "version": "2.1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Credentials+Plugin"
+ },
+ "credentials-binding": {
+ "buildDate": "Aug 19, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.23"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.7"
+ },
+ {
+ "name": "plain-credentials",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vincent"
+ }
+ ],
+ "excerpt": "Allows credentials to be bound to environment variables for use from miscellaneous build steps.",
+ "gav": "org.jenkins-ci.plugins:credentials-binding:1.9",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "credentials-binding",
+ "previousTimestamp": "2016-06-10T15:26:52.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2016-08-19T18:27:46.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "29iZrrUxOKncTg1U9xlKHC4GIbo=",
+ "title": "Credentials Binding Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/credentials-binding/1.9/credentials-binding.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Credentials+Binding+Plugin"
+ },
+ "crittercism-dsym": {
+ "buildDate": "Mar 20, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mhassanpur",
+ "email": "mhassanpur@gmail.com",
+ "name": "Mujtaba Hassanpur"
+ }
+ ],
+ "excerpt": "A Jenkins CI plugin for uploading dSYM files to Crittercism.",
+ "gav": "org.jenkins-ci.plugins:crittercism-dsym:1.1",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "crittercism-dsym",
+ "releaseTimestamp": "2013-03-20T12:59:16.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "wfruWwlBHpcURQ1++Vk5q2VLDlg=",
+ "title": "Crittercism dSYM Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/crittercism-dsym/1.1/crittercism-dsym.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Crittercism+dSYM+Plugin"
+ },
+ "cron-shelve": {
+ "buildDate": "Mar 24, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "shelve-project-plugin",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "build-user-vars-plugin",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "itow0001",
+ "email": "itow0001@gmail.com",
+ "name": "Ian Itow"
+ }
+ ],
+ "excerpt": "Performs job shelving actions based on cron schedule and regex.&amp;nbsp;<a href='https://github.com/jenkinsci/cron-shelve-plugin'>cron-shelve</a>",
+ "gav": "org.jenkins-ci.plugins:cron-shelve:1.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "cron-shelve",
+ "releaseTimestamp": "2016-03-24T21:25:28.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "Ti4baK+fwQOyPd9FADGchP7Gaic=",
+ "title": "cron-shelve",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cron-shelve/1.3/cron-shelve.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cron+Shelve+Plugin"
+ },
+ "cron_column": {
+ "buildDate": "Jun 16, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "eelco_de_vlieger",
+ "email": "eelcodevlieger@hotmail.com",
+ "name": "Eelco de Vlieger"
+ }
+ ],
+ "excerpt": "View column showing the cron trigger expressions that can be configured on a job (Subversion, Scheduled Builds, etc.)",
+ "gav": "org.jenkins-ci.plugins:cron_column:1.4",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "cron_column",
+ "previousTimestamp": "2014-06-12T10:17:28.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-06-16T09:49:28.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "EvJHANv5RiQIWz1iRIBs2BlWyUs=",
+ "title": "Cron Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cron_column/1.4/cron_column.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cron+Column+Plugin"
+ },
+ "crossbrowsertesting": {
+ "buildDate": "Oct 06, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "crossbrowsertesting",
+ "email": "info@crossbrowsertesting.com",
+ "name": "CrossBrowserTesting.com LLC"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins users with Selenium Testing on CrossBrowserTesting.com. CrossBrowserTesting.com provides cross browser testing of websites, webpages, and web applications on Windows, Macs, and real iPhones, iPads, and Android Phones and Tablets.",
+ "gav": "org.jenkins-ci.plugins:crossbrowsertesting:1.2.0",
+ "labels": [],
+ "name": "crossbrowsertesting",
+ "previousTimestamp": "2016-10-05T16:06:46.00Z",
+ "previousVersion": "1.1.0",
+ "releaseTimestamp": "2016-10-06T17:03:12.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "qt2xpzqLHjjlkzv3ZwzpFSH0Y1Q=",
+ "title": "CrossBrowserTesting.com plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/crossbrowsertesting/1.2.0/crossbrowsertesting.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CrossBrowserTesting+Plugin"
+ },
+ "crowd": {
+ "buildDate": "Aug 05, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nbudin",
+ "name": "Nat Budin"
+ },
+ {
+ "developerId": "justinedelson",
+ "name": "Justin Edelson"
+ }
+ ],
+ "excerpt": "This plugin enables use of <a href='http://www.atlassian.com/crowd'>Atlassian Crowd</a> as an authentication source.",
+ "gav": "com.ds.tools.hudson:crowd:1.2",
+ "labels": [
+ "user"
+ ],
+ "name": "crowd",
+ "previousTimestamp": "2010-01-30T17:58:06.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2011-08-05T08:14:24.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "FlNYLD4WehRNrWrkmte84TBWlaY=",
+ "title": "Crowd Integration",
+ "url": "http://updates.jenkins-ci.org/download/plugins/crowd/1.2/crowd.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Crowd+Plugin"
+ },
+ "crowd2": {
+ "buildDate": "Aug 01, 2014",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "theit",
+ "email": "theit@gmx.de",
+ "name": "Thorsten Heit"
+ },
+ {
+ "developerId": "integer",
+ "name": "Kanstantsin Shautsou"
+ }
+ ],
+ "excerpt": "This plugin enables use of <a href='http://www.atlassian.com/software/crowd'>Atlassian Crowd</a> &gt;= 2.1.x as an authentication source.",
+ "gav": "org.jenkins-ci.plugins:crowd2:1.8",
+ "labels": [
+ "user"
+ ],
+ "name": "crowd2",
+ "previousTimestamp": "2014-04-23T16:20:42.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2014-08-01T18:52:58.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "CzFEXfgSLUXgUU3nfe13xr9gfis=",
+ "title": "Crowd 2 Integration",
+ "url": "http://updates.jenkins-ci.org/download/plugins/crowd2/1.8/crowd2.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Crowd+2+Plugin"
+ },
+ "crx-content-package-deployer": {
+ "buildDate": "Sep 28, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ },
+ {
+ "name": "bouncycastle-api",
+ "optional": false,
+ "version": "1.0.3"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.17"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "madamcin",
+ "email": "adamcin@gmail.com",
+ "name": "Mark Adamcin"
+ }
+ ],
+ "excerpt": "Deploys content packages to Adobe CRX applications, like Adobe CQ/AEM. Also allows downloading packages from one CRX server and uploading them to one or more other CRX servers.",
+ "gav": "org.jenkins-ci.plugins:crx-content-package-deployer:1.5.3",
+ "labels": [
+ "upload",
+ "builder",
+ "parameter"
+ ],
+ "name": "crx-content-package-deployer",
+ "previousTimestamp": "2016-09-27T17:55:28.00Z",
+ "previousVersion": "1.5.2",
+ "releaseTimestamp": "2016-09-28T18:26:04.00Z",
+ "requiredCore": "1.610",
+ "scm": "github.com",
+ "sha1": "HYhfe1auwG5R7V2WkSRsew/11Jw=",
+ "title": "CRX Content Package Deployer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/crx-content-package-deployer/1.5.3/crx-content-package-deployer.hpi",
+ "version": "1.5.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CRX+Content+Package+Deployer+Plugin"
+ },
+ "cucumber-living-documentation": {
+ "buildDate": "Sep 04, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rmpestano",
+ "email": "rmpestano@gmail.com",
+ "name": "Rafael M. Pestano"
+ }
+ ],
+ "excerpt": "Brings Cucumber living documentation to your continuous integration environment via <a href='https://github.com/rmpestano/cukedoctor'>Cukedoctor</a>. ",
+ "gav": "org.jenkins-ci.plugins:cucumber-living-documentation:1.0.5",
+ "labels": [],
+ "name": "cucumber-living-documentation",
+ "previousTimestamp": "2016-07-30T11:22:20.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2016-09-04T21:15:22.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "xjHSPe/PT2qGCjTDGqqtMQGMnYc=",
+ "title": "Cucumber Living Documentation Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cucumber-living-documentation/1.0.5/cucumber-living-documentation.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cucumber+Living+Documentation+Plugin"
+ },
+ "cucumber-perf": {
+ "buildDate": "Jul 14, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "truedub",
+ "email": "jegallagher@gmail.com",
+ "name": "Jim Gallagher"
+ }
+ ],
+ "excerpt": "This plugin reads creates performance reports for jobs running suites of tests using Cucumber-JVM. ",
+ "gav": "com.castlemon.hudson:cucumber-perf:2.0.6",
+ "labels": [
+ "report"
+ ],
+ "name": "cucumber-perf",
+ "previousTimestamp": "2014-07-14T19:25:14.00Z",
+ "previousVersion": "2.0.5",
+ "releaseTimestamp": "2014-07-14T19:33:28.00Z",
+ "requiredCore": "1.519",
+ "scm": "github.com",
+ "sha1": "zz3eJKbP6ibuBz+5DOcweVLrBVY=",
+ "title": "Cucumber Performance Reports Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cucumber-perf/2.0.6/cucumber-perf.hpi",
+ "version": "2.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cucumber+Performance+Reports+Plugin"
+ },
+ "cucumber-reports": {
+ "buildDate": "Oct 02, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "damianszczepanik",
+ "email": "damianszczepanik@github",
+ "name": "Damian Szczepanik"
+ },
+ {
+ "developerId": "kingsleyh",
+ "email": "kingsley.hendrickse@gmail.com",
+ "name": "Kingsley Hendrickse"
+ }
+ ],
+ "excerpt": "This project provides pretty html reports for Cucumber. It works by generating html from the cucumber json report formatter. So can be used anywhere a json report is generated. Current use is in the cucumber jenkins plugin and a maven mojo to generate the same report from mvn command line when running locally.",
+ "gav": "net.masterthought.jenkins:cucumber-reports:3.0.0",
+ "labels": [
+ "report"
+ ],
+ "name": "cucumber-reports",
+ "previousTimestamp": "2016-09-12T22:41:10.00Z",
+ "previousVersion": "2.8.0",
+ "releaseTimestamp": "2016-10-02T00:08:20.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "c8t7qeL6FL5ibK/sEUTs3lwKGfo=",
+ "title": "Cucumber-JVM reports",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cucumber-reports/3.0.0/cucumber-reports.hpi",
+ "version": "3.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cucumber+Reports+Plugin"
+ },
+ "cucumber-slack-notifier": {
+ "buildDate": "Jul 19, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "name": "Gareth Evans"
+ }
+ ],
+ "excerpt": "A plugin to send a summarised cucumber report to a slack channel. ",
+ "gav": "org.jenkins-ci.plugins:cucumber-slack-notifier:0.8.3",
+ "labels": [
+ "notifier"
+ ],
+ "name": "cucumber-slack-notifier",
+ "previousTimestamp": "2016-07-04T22:52:02.00Z",
+ "previousVersion": "0.8.2",
+ "releaseTimestamp": "2016-07-19T22:09:14.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "OQ8xbFnUPL/h++ws2+YdvG2mtg0=",
+ "title": "Cucumber Slack Notifier Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cucumber-slack-notifier/0.8.3/cucumber-slack-notifier.hpi",
+ "version": "0.8.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cucumber+Slack+Notifier+Plugin"
+ },
+ "cucumber-testresult-plugin": {
+ "buildDate": "Sep 15, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2-beta-3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "teilo",
+ "name": "James Nord"
+ }
+ ],
+ "excerpt": "This plugin allows you to show the results of <a href='http://cukes.info/'>Cucumber tests</a> within Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:cucumber-testresult-plugin:0.9.7",
+ "labels": [],
+ "name": "cucumber-testresult-plugin",
+ "previousTimestamp": "2015-05-27T09:11:18.00Z",
+ "previousVersion": "0.8.2",
+ "releaseTimestamp": "2016-09-15T15:35:44.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "g1i9CH83TNdWomAEqLq0pqew1J8=",
+ "title": "Cucumber json test reporting.",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cucumber-testresult-plugin/0.9.7/cucumber-testresult-plugin.hpi",
+ "version": "0.9.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cucumber+Test+Result+Plugin"
+ },
+ "cucumber-trends-report": {
+ "buildDate": "Jul 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "thanhqle",
+ "email": "sole.wind.00@gmail.com",
+ "name": "Thanh Q. Le"
+ }
+ ],
+ "excerpt": "Generate the trending reports for cucumber project. The reports include the failing rate, duration, number of test scenarios, top stable and unstable test scenarios",
+ "gav": "trends:cucumber-trends-report:1.3",
+ "labels": [],
+ "name": "cucumber-trends-report",
+ "previousTimestamp": "2016-07-22T14:26:18.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-07-26T11:19:20.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "nwd4/zQcl5vpGn73Z9AYbQHEnes=",
+ "title": "Cucumber Trend Reports",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cucumber-trends-report/1.3/cucumber-trends-report.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cucumber+Trend+Report+Plugin"
+ },
+ "curseforge-publisher": {
+ "buildDate": "Jun 21, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "r04r",
+ "email": "r04r@minichan.org",
+ "name": "r04r"
+ }
+ ],
+ "excerpt": "This plugin allows users to upload build artifacts to CurseForge as mod releases.",
+ "gav": "org.jenkins-ci.plugins:curseforge-publisher:1.0",
+ "labels": [],
+ "name": "curseforge-publisher",
+ "releaseTimestamp": "2014-06-21T20:23:56.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "HF0cbWUET4vdPbHE8Y5kxSGLvEI=",
+ "title": "Curseforge Publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/curseforge-publisher/1.0/curseforge-publisher.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Curseforge+Publisher+Plugin"
+ },
+ "custom-job-icon": {
+ "buildDate": "Oct 22, 2012",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.447"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jcsirot",
+ "email": "sirot@chelonix.com",
+ "name": "Jean-Christophe Sirot"
+ }
+ ],
+ "excerpt": "This plugin allows to configure a custom icon for each job in order to improve the job visibility on the dashboard.",
+ "gav": "org.jenkins-ci.plugins:custom-job-icon:0.2",
+ "labels": [
+ "ui",
+ "listview-column"
+ ],
+ "name": "custom-job-icon",
+ "previousTimestamp": "2012-08-09T23:24:46.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2012-10-22T11:01:06.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "zLYzRNQZmAwAkHgRyQ5GccxmVUA=",
+ "title": "Custom Job Icon plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/custom-job-icon/0.2/custom-job-icon.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Custom+Job+Icon+Plugin"
+ },
+ "custom-tools-plugin": {
+ "buildDate": "Oct 15, 2014",
+ "dependencies": [
+ {
+ "name": "extended-choice-parameter",
+ "optional": false,
+ "version": "0.28"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "recampbell",
+ "email": "ryan.campbell@gmail.com",
+ "name": "Ryan Campbell"
+ },
+ {
+ "developerId": "oleg_nenashev",
+ "email": "nenashev@synopsys.com; o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "A generic tool installer. You define how tools get installed, and the plugin will automatically install them when needed.&amp;nbsp;",
+ "gav": "com.cloudbees.jenkins.plugins:custom-tools-plugin:0.4.4",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "custom-tools-plugin",
+ "previousTimestamp": "2014-10-09T13:18:48.00Z",
+ "previousVersion": "0.4.3",
+ "releaseTimestamp": "2014-10-15T13:14:50.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "la5HB9JHSdmm1jvkqspT9jgoYpc=",
+ "title": "Jenkins Custom Tools Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/custom-tools-plugin/0.4.4/custom-tools-plugin.hpi",
+ "version": "0.4.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Custom+Tools+Plugin"
+ },
+ "custom-view-tabs": {
+ "buildDate": "Feb 19, 2016",
+ "dependencies": [
+ {
+ "name": "nested-view",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "Todderz",
+ "email": "ringracer@gmail.com",
+ "name": "Alistair Todd"
+ }
+ ],
+ "excerpt": "Custom View Tabs plugin allows customised labels and colours for view tabs, showing job status details.",
+ "gav": "org.jenkins-ci.plugins:custom-view-tabs:1.3",
+ "labels": [
+ "ui"
+ ],
+ "name": "custom-view-tabs",
+ "previousTimestamp": "2016-02-19T14:49:26.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-02-19T15:24:20.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "ve6kbpCvuI7/Af9OpzjlPTKjHgk=",
+ "title": "Custom View Tabs Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/custom-view-tabs/1.3/custom-view-tabs.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Custom+View+Tabs+Plugin"
+ },
+ "customize-build-now": {
+ "buildDate": "Sep 17, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "uday",
+ "email": "uaarkoti@gmail.com",
+ "name": "Udaypal Aarkoti"
+ }
+ ],
+ "excerpt": "This plugin allows users to provide an alternate label to &quot;Build Now&quot;. While its well understood by Jenkins experts what &quot;Build Now&quot; means, sometimes its more intuitive for new Jenkins users to associate a more appropriate label to suite the purpose of the job like &quot;Deploy Now&quot; or &quot;Execute Now&quot; or &quot;Promote Now&quot; etc...{excerpt} !Screen Shot 2014-12-19 at 2.33.24 PM.png|border=1! {excerpt} !Screen Shot 2014-12-19 at 2.45.30 PM.png|border=1! ",
+ "gav": "org.jenkins-ci.plugins:customize-build-now:1.1",
+ "labels": [],
+ "name": "customize-build-now",
+ "previousTimestamp": "2014-12-19T15:10:26.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-09-17T10:31:50.00Z",
+ "requiredCore": "1.625",
+ "scm": "github.com",
+ "sha1": "mUBakcmZDkl8IxOcppJVAnVEeWw=",
+ "title": "Customize Build Now Label",
+ "url": "http://updates.jenkins-ci.org/download/plugins/customize-build-now/1.1/customize-build-now.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Customize+Build+Now+Plugin"
+ },
+ "cvs": {
+ "buildDate": "Jun 10, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "mc1arke",
+ "name": "Michael Clarke"
+ }
+ ],
+ "excerpt": "This bundled plugin integrates Jenkins with CVS version control system.",
+ "gav": "org.jenkins-ci.plugins:cvs:2.12",
+ "labels": [
+ "scm"
+ ],
+ "name": "cvs",
+ "previousTimestamp": "2013-10-24T19:59:54.00Z",
+ "previousVersion": "2.11",
+ "releaseTimestamp": "2014-06-10T08:08:30.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "32fTFBRL81NmuprSmku9OPW3xO0=",
+ "title": "Jenkins CVS Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cvs/2.12/cvs.hpi",
+ "version": "2.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CVS+Plugin"
+ },
+ "cvs-tag": {
+ "buildDate": "Nov 03, 2011",
+ "dependencies": [
+ {
+ "name": "cvs",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "btrim",
+ "email": "trimbybj@gmail.com",
+ "name": "Brad Trimby"
+ },
+ {
+ "developerId": "draco2k8",
+ "email": "draco2k4@yahoo.com",
+ "name": "Brendt Lucas"
+ },
+ {
+ "developerId": "derekmahar",
+ "email": "derek@derekmahar.ca",
+ "name": "Derek Mahar"
+ }
+ ],
+ "excerpt": "This plugin will perform CVS tagging (cvs rtag when possible) after a job has been built successfully.",
+ "gav": "org.jenkins-ci.plugins:cvs-tag:1.7",
+ "labels": [
+ "post-build",
+ "scm-related"
+ ],
+ "name": "cvs-tag",
+ "previousTimestamp": "2011-04-30T00:36:18.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2011-11-03T22:40:52.00Z",
+ "requiredCore": "1.421",
+ "scm": "github.com",
+ "sha1": "xU34I1C6YcpwlR0j5exvWMiRfmI=",
+ "title": "Jenkins CVS Tagging Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cvs-tag/1.7/cvs-tag.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CVS+Tagging+Plugin"
+ },
+ "cygpath": {
+ "buildDate": "Nov 07, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin performs Cygwin path conversion before forking new processes",
+ "gav": "org.jenkins-ci.plugins:cygpath:1.5",
+ "labels": [
+ "misc"
+ ],
+ "name": "cygpath",
+ "previousTimestamp": "2011-11-07T22:05:32.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2011-11-07T22:33:34.00Z",
+ "requiredCore": "1.418",
+ "scm": "github.com",
+ "sha1": "OvtjQn0IRxNBlg+kG9XXc3Io2Is=",
+ "title": "Jenkins Cygpath plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cygpath/1.5/cygpath.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cygpath+Plugin"
+ },
+ "cygwin-process-killer": {
+ "buildDate": "Oct 25, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oleg_nenashev",
+ "email": "nenashev@synopsys.com; o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "Plugin implements proper termination of Cygwin processes in Jenkins jobs ",
+ "gav": "com.synopsys.arc.jenkinsci.plugins:cygwin-process-killer:0.1",
+ "labels": [],
+ "name": "cygwin-process-killer",
+ "releaseTimestamp": "2013-10-25T23:53:44.00Z",
+ "requiredCore": "1.528",
+ "scm": "github.com",
+ "sha1": "V+Nr927RxoSl8nKJDR5Ka+ZOEMg=",
+ "title": "Cygwin Process Killer",
+ "url": "http://updates.jenkins-ci.org/download/plugins/cygwin-process-killer/0.1/cygwin-process-killer.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cygwin+Process+Killer+Plugin"
+ },
+ "daily-quote": {
+ "buildDate": "Dec 01, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kevinrajahutton",
+ "email": "kevinrajahutton@gmail.com",
+ "name": "Kevin Hutton"
+ }
+ ],
+ "excerpt": "This plugin displays the www.brainyquote.com quote of the day on each Jenkins Page when plugin is enabled&amp;nbsp;",
+ "gav": "org.jenkins-ci.plugins:daily-quote:1.0",
+ "labels": [],
+ "name": "daily-quote",
+ "releaseTimestamp": "2013-12-01T00:08:32.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "KSQueXY+Rtka99pRX6CQeS36W3U=",
+ "title": "Daily Quote Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/daily-quote/1.0/daily-quote.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Daily+Quote+Plugin"
+ },
+ "darcs": {
+ "buildDate": "Mar 15, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "weltraumschaf",
+ "email": "ich@weltraumschaf.de",
+ "name": "Sven Strittmatter"
+ },
+ {
+ "developerId": "ralphlange",
+ "email": "ralph.lange@gmx.de",
+ "name": "Ralph Lange"
+ },
+ {
+ "developerId": "mk219533",
+ "name": "Marcel Kolodziejczyk"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://darcs.net'>Darcs</a> version control system to Jenkins. The plugin requires the Darcs binary (darcs) to be installed on the target machine. ",
+ "gav": "org.jenkins-ci.plugins:darcs:0.3.11",
+ "labels": [
+ "scm"
+ ],
+ "name": "darcs",
+ "previousTimestamp": "2013-03-11T23:38:52.00Z",
+ "previousVersion": "0.3.10",
+ "releaseTimestamp": "2013-03-15T23:35:58.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "Zttn1uebtwgtDj3erCF+qv10IvQ=",
+ "title": "Jenkins Darcs plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/darcs/0.3.11/darcs.hpi",
+ "version": "0.3.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Darcs+Plugin"
+ },
+ "dashboard-view": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "petehayes",
+ "email": "petehayes@gmail.com",
+ "name": "Peter Hayes"
+ },
+ {
+ "developerId": "mambu",
+ "email": "marco.ambu+jenkins@gmail.com",
+ "name": "Marco Ambu"
+ }
+ ],
+ "excerpt": "This plugin contributes a new view implementation that provides a dashboard / portal-like view for your Jenkins instance. ",
+ "gav": "org.jenkins-ci.plugins:dashboard-view:2.9.10",
+ "labels": [
+ "ui"
+ ],
+ "name": "dashboard-view",
+ "previousTimestamp": "2016-05-17T19:19:24.00Z",
+ "previousVersion": "2.9.9",
+ "releaseTimestamp": "2016-06-01T19:45:18.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "gfOdNm3jjnzg/mdRZ7z6tneU22A=",
+ "title": "Dashboard View",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dashboard-view/2.9.10/dashboard-view.hpi",
+ "version": "2.9.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dashboard+View"
+ },
+ "database": {
+ "buildDate": "May 30, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-multibranch",
+ "optional": true,
+ "version": "1.14"
+ },
+ {
+ "name": "workflow-aggregator",
+ "optional": true,
+ "version": "1.14"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.14"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "davidvanlaatum",
+ "name": "David van Laatum"
+ }
+ ],
+ "excerpt": "This library plugin allows other plugins to connect to RDBMS in an uniform fashion.",
+ "gav": "org.jenkins-ci.plugins:database:1.5",
+ "labels": [
+ "database",
+ "library"
+ ],
+ "name": "database",
+ "previousTimestamp": "2016-05-21T16:20:40.00Z",
+ "previousVersion": "1.4.1",
+ "releaseTimestamp": "2016-05-30T18:51:10.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "iSEn9o19+hcqn0kCg07npRTyZQs=",
+ "title": "Database Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/database/1.5/database.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Database+Plugin"
+ },
+ "database-h2": {
+ "buildDate": "Nov 25, 2015",
+ "dependencies": [
+ {
+ "name": "database",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "hafner"
+ }
+ ],
+ "excerpt": "This is a driver plugin for [Database plugin] that adds <a href='http://h2database.com/'>H2 database</a> driver",
+ "gav": "org.jenkins-ci.plugins:database-h2:1.1",
+ "labels": [
+ "library",
+ "database"
+ ],
+ "name": "database-h2",
+ "previousTimestamp": "2012-12-14T19:18:30.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-11-25T09:56:08.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "jH1JzmOADZ5Kcut6mHJnk27+oTQ=",
+ "title": "H2 Database Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/database-h2/1.1/database-h2.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/H2+Database+Plugin"
+ },
+ "database-mysql": {
+ "buildDate": "May 21, 2016",
+ "dependencies": [
+ {
+ "name": "database",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "david"
+ }
+ ],
+ "excerpt": "This is a driver plugin for [Database plugin] that adds <a href='http://www.mysql.com/'>MySQL database</a> driver",
+ "gav": "org.jenkins-ci.plugins:database-mysql:1.1",
+ "labels": [
+ "database",
+ "library"
+ ],
+ "name": "database-mysql",
+ "previousTimestamp": "2012-12-14T19:32:58.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-05-21T16:45:44.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "b0P5XmjeQXEGUDlhDZN9gxnkNh8=",
+ "title": "MySQL Database Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/database-mysql/1.1/database-mysql.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MySQL+Database+Plugin"
+ },
+ "database-postgresql": {
+ "buildDate": "Dec 14, 2012",
+ "dependencies": [
+ {
+ "name": "database",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This is a driver plugin for [Database plugin] that adds <a href='http://www.postgresql.org/'>PostgreSQL database</a> driver",
+ "gav": "org.jenkins-ci.plugins:database-postgresql:1.0",
+ "labels": [
+ "library",
+ "database"
+ ],
+ "name": "database-postgresql",
+ "releaseTimestamp": "2012-12-14T19:34:34.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "nsz1kPOIJRUPNKcQBysTHEEECn8=",
+ "title": "PostgreSQL Database Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/database-postgresql/1.0/database-postgresql.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PostgreSQL+Database+Plugin"
+ },
+ "database-sqlite": {
+ "buildDate": "Sep 24, 2016",
+ "dependencies": [
+ {
+ "name": "database",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jholusa",
+ "email": "jholusa@redhat.com",
+ "name": "Jiri Holusa"
+ }
+ ],
+ "excerpt": "This is a driver plugin for <a href='https://wiki.jenkins-ci.org/display/JENKINS/Database+Plugin'>Database Plugin</a> that adds <a href='https://sqlite.org/'>SQLite database</a> driver.",
+ "gav": "org.jenkins-ci.plugins:database-sqlite:1.0",
+ "labels": [
+ "database"
+ ],
+ "name": "database-sqlite",
+ "releaseTimestamp": "2016-09-24T12:18:32.00Z",
+ "requiredCore": "1.625.2",
+ "scm": "github.com",
+ "sha1": "Rggrqqvss+jYS+pfImCsHyFeOwg=",
+ "title": "SQLite Database plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/database-sqlite/1.0/database-sqlite.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SQLite+Database+Plugin"
+ },
+ "datadog": {
+ "buildDate": "Jul 19, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "datadog",
+ "email": "dev@datadoghq.com",
+ "name": "Datadog"
+ }
+ ],
+ "excerpt": "This plugin is used to forward metrics, events, and service checks to your account at <a href='http://www.datadoghq.com/'>Datadog</a>, automatically. ",
+ "gav": "org.datadog.jenkins.plugins:datadog:0.5.3",
+ "labels": [
+ "report",
+ "notifier",
+ "post-build"
+ ],
+ "name": "datadog",
+ "previousTimestamp": "2016-06-28T10:53:44.00Z",
+ "previousVersion": "0.5.2",
+ "releaseTimestamp": "2016-07-19T17:24:24.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "zhrsC09uECRlW4xJpoO2+MLGu1k=",
+ "title": "Datadog Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/datadog/0.5.3/datadog.hpi",
+ "version": "0.5.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Datadog+Plugin"
+ },
+ "datical-db-plugin": {
+ "buildDate": "May 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "r2datical",
+ "email": "r2@datical.com",
+ "name": "Robert Reeves"
+ }
+ ],
+ "excerpt": "This plugin adds <a href='http://www.datical.com/'>Datical DB</a> support to Jenkins and requires Datical DB to be installed.",
+ "gav": "com.datical.integration.jenkins:datical-db-plugin:1.0.38",
+ "labels": [
+ "builder"
+ ],
+ "name": "datical-db-plugin",
+ "previousTimestamp": "2015-04-08T11:28:02.00Z",
+ "previousVersion": "1.0.37",
+ "releaseTimestamp": "2015-05-18T14:41:26.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "NaDJEChYp9Z2VZhHDOEnc8ceEVg=",
+ "title": "DaticalDB4Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/datical-db-plugin/1.0.38/datical-db-plugin.hpi",
+ "version": "1.0.38",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DaticalDB4Jenkins"
+ },
+ "dbCharts": {
+ "buildDate": "Jun 29, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ptab",
+ "email": "piotr.tabor@gmail.com",
+ "name": "Piotr Tabor"
+ },
+ {
+ "developerId": "ryg_",
+ "email": "rgrigoryev@gmail.com",
+ "name": "Roman Grigoryev"
+ }
+ ],
+ "excerpt": "Add charts based on JDBC database data series. ",
+ "gav": "org.jenkins-ci.plugins:dbCharts:0.5.2",
+ "labels": [
+ "ui",
+ "report"
+ ],
+ "name": "dbCharts",
+ "previousTimestamp": "2011-02-17T11:30:02.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2013-06-29T14:51:18.00Z",
+ "requiredCore": "1.495",
+ "scm": "github.com",
+ "sha1": "/zOZXie7z7Qo0+4xjAaAg4oFyB4=",
+ "title": "dbCharts",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dbCharts/0.5.2/dbCharts.hpi",
+ "version": "0.5.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/dbCharts+Plugin"
+ },
+ "deadmanssnitch": {
+ "buildDate": "Jun 11, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kamatama41",
+ "email": "shiketaudonko41@gmail.com",
+ "name": "Shinichi Ishimura"
+ }
+ ],
+ "excerpt": "This plugin allows to notify build succeeded to <a href='https://deadmanssnitch.com/'>Dead Man's Snitch</a>",
+ "gav": "org.jenkins-ci.plugins:deadmanssnitch:0.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "deadmanssnitch",
+ "releaseTimestamp": "2016-06-11T13:22:30.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "IW1vFmIhPUGkE85UzG1mjXYaONM=",
+ "title": "Dead Man's Snitch Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deadmanssnitch/0.1/deadmanssnitch.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dead+Man%27s+Snitch+Plugin"
+ },
+ "debian-package-builder": {
+ "buildDate": "Oct 30, 2015",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.5"
+ },
+ {
+ "name": "git-client",
+ "optional": false,
+ "version": "1.17.1"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pupssman",
+ "email": "pupssman@yandex-team.ru",
+ "name": "Ivan Kalinin"
+ },
+ {
+ "developerId": "mavlyutov",
+ "email": "mavlyutov@yandex-team.ru",
+ "name": "Marat Mavlyutov"
+ },
+ {
+ "developerId": "dchr",
+ "email": "dchr@yandex-team.ru",
+ "name": "Denis Chernilevskiy"
+ }
+ ],
+ "excerpt": "This plugin helps building debian (.deb) packages ",
+ "gav": "ru.yandex.jenkins.plugins.debuilder:debian-package-builder:1.6.11",
+ "labels": [
+ "builder",
+ "post-build"
+ ],
+ "name": "debian-package-builder",
+ "previousTimestamp": "2015-10-30T01:13:28.00Z",
+ "previousVersion": "1.6.10",
+ "releaseTimestamp": "2015-10-30T08:04:00.00Z",
+ "requiredCore": "1.596.3",
+ "scm": "github.com",
+ "sha1": "nYnI4R1r144HP7L4Q5bmVL6rOLo=",
+ "title": "Debian Package Builder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/debian-package-builder/1.6.11/debian-package-builder.hpi",
+ "version": "1.6.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Debian+Package+Builder+Plugin"
+ },
+ "delete-log-plugin": {
+ "buildDate": "Apr 30, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "Delele log of a build ",
+ "gav": "org.jenkins-ci.plugins:delete-log-plugin:1.0",
+ "labels": [],
+ "name": "delete-log-plugin",
+ "releaseTimestamp": "2012-04-30T05:19:08.00Z",
+ "requiredCore": "1.461",
+ "scm": "github.com",
+ "sha1": "LpyHRmwF80Ok48m9xkvd7vF1bps=",
+ "title": "Delete log",
+ "url": "http://updates.jenkins-ci.org/download/plugins/delete-log-plugin/1.0/delete-log-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Delete+log+plugin"
+ },
+ "delivery-pipeline-plugin": {
+ "buildDate": "Jul 08, 2016",
+ "dependencies": [
+ {
+ "name": "build-pipeline-plugin",
+ "optional": true,
+ "version": "1.4.4"
+ },
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.17"
+ },
+ {
+ "name": "analysis-core",
+ "optional": true,
+ "version": "1.54"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.9"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.2.10"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": false,
+ "version": "2.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "patbos",
+ "name": "Patrik Bostrom"
+ },
+ {
+ "developerId": "perhuss",
+ "name": "Per Huss"
+ },
+ {
+ "developerId": "mrfatstrat",
+ "name": "Andreas Rehn"
+ },
+ {
+ "developerId": "rickard_v_essen",
+ "name": "Rickard von Essen"
+ },
+ {
+ "developerId": "gusran",
+ "name": "Gustav Ranby"
+ },
+ {
+ "developerId": "tommysdk",
+ "name": "Tommy Tynja"
+ }
+ ],
+ "excerpt": "Visualisation of Delivery/Build Pipelines, renders pipelines based on upstream/downstream jobs. Full screen view for information radiators. ",
+ "gav": "se.diabol.jenkins.pipeline:delivery-pipeline-plugin:0.9.12",
+ "labels": [
+ "ui"
+ ],
+ "name": "delivery-pipeline-plugin",
+ "previousTimestamp": "2016-05-24T11:09:58.00Z",
+ "previousVersion": "0.9.11",
+ "releaseTimestamp": "2016-07-08T20:51:38.00Z",
+ "requiredCore": "1.565",
+ "scm": "github.com",
+ "sha1": "YkJshGQDzHTQc+5fU99Fxt2c0gE=",
+ "title": "Delivery Pipeline Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/delivery-pipeline-plugin/0.9.12/delivery-pipeline-plugin.hpi",
+ "version": "0.9.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Delivery+Pipeline+Plugin"
+ },
+ "delphix": {
+ "buildDate": "Feb 02, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "pvilim",
+ "email": "peter.vilim@delphix.com",
+ "name": "Peter Vilim"
+ }
+ ],
+ "excerpt": "Allows Jenkins jobs to connect to the Delphix Engine ",
+ "gav": "org.jenkins-ci.plugins:delphix:1.0.8",
+ "labels": [
+ "external"
+ ],
+ "name": "delphix",
+ "previousTimestamp": "2016-01-25T04:02:50.00Z",
+ "previousVersion": "1.0.7",
+ "releaseTimestamp": "2016-02-02T16:13:56.00Z",
+ "requiredCore": "1.565",
+ "scm": "github.com",
+ "sha1": "m4ufh1JN7jpET7b9DCf7OuGu2S4=",
+ "title": "Delphix Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/delphix/1.0.8/delphix.hpi",
+ "version": "1.0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Delphix+Plugin"
+ },
+ "delta-cloud": {
+ "buildDate": "Sep 20, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vjuranek"
+ }
+ ],
+ "excerpt": "This plugin allows to use <a href='http://incubator.apache.org/deltacloud/'>Delta Cloud API</a> for provisioning new slaves and therefore allows you to decouple your Jenkins instance from cloud provider",
+ "gav": "org.jenkins-ci.plugins:delta-cloud:1.0.1",
+ "labels": [],
+ "name": "delta-cloud",
+ "previousTimestamp": "2011-09-19T15:15:48.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-09-20T11:15:32.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "lLVnoLOfAOB0ldDUL0v2T1CXtBc=",
+ "title": "Delta Cloud API plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/delta-cloud/1.0.1/delta-cloud.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Delta+Cloud+API+plugin"
+ },
+ "dependency-check-jenkins-plugin": {
+ "buildDate": "Sep 06, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.4"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.79"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.6"
+ }
+ ],
+ "developers": [
+ {
+ "email": "steve.springett@owasp.org",
+ "name": "Steve Springett"
+ }
+ ],
+ "excerpt": "This plugin can analyze dependencies and generate trend reports for <a href='https://www.owasp.org/index.php/OWASP_Dependency_Check'>OWASP Dependency-Check</a>, an open source utility that detects known vulnerabilities in project dependencies.",
+ "gav": "org.jenkins-ci.plugins:dependency-check-jenkins-plugin:1.4.3",
+ "labels": [],
+ "name": "dependency-check-jenkins-plugin",
+ "previousTimestamp": "2016-07-31T14:15:58.00Z",
+ "previousVersion": "1.4.2",
+ "releaseTimestamp": "2016-09-06T17:29:08.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "pklJ9XeS691TxgMlTHSJkJCd0ok=",
+ "title": "OWASP Dependency-Check Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dependency-check-jenkins-plugin/1.4.3/dependency-check-jenkins-plugin.hpi",
+ "version": "1.4.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OWASP+Dependency-Check+Plugin"
+ },
+ "dependency-queue-plugin": {
+ "buildDate": "Jul 20, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lshatzer",
+ "email": "larrys@gmail.com",
+ "name": "Larry Shatzer, Jr."
+ }
+ ],
+ "excerpt": "This plugin will make sure the order of dependencies is honored in the build queue.",
+ "gav": "org.jenkins-ci.plugins:dependency-queue-plugin:1.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "dependency-queue-plugin",
+ "previousTimestamp": "2012-05-18T12:46:30.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2012-07-20T07:37:14.00Z",
+ "requiredCore": "1.427",
+ "scm": "github.com",
+ "sha1": "O3CVdrVAqxETlPT3Z8SiAiHWvuc=",
+ "title": "Dependency Queue Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dependency-queue-plugin/1.1/dependency-queue-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Queue+Plugin"
+ },
+ "dependencyanalyzer": {
+ "buildDate": "Oct 02, 2014",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.424"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vsellier",
+ "name": "Vincent Sellier"
+ },
+ {
+ "developerId": "ejouvin",
+ "name": "Etienne Jouvin"
+ }
+ ],
+ "excerpt": "This plugin parses dependency:analyze goal from maven build logs and generates a dependency report",
+ "gav": "org.jenkins-ci.plugins:dependencyanalyzer:0.7",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "dependencyanalyzer",
+ "previousTimestamp": "2011-02-14T16:18:36.00Z",
+ "previousVersion": "0.6",
+ "releaseTimestamp": "2014-10-02T15:53:32.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "Nm2KEA0tL3Tu3F44diF9Ew9G0C8=",
+ "title": "Jenkins Dependency Analyzer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dependencyanalyzer/0.7/dependencyanalyzer.hpi",
+ "version": "0.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Analyzer+Plugin"
+ },
+ "depgraph-view": {
+ "buildDate": "Mar 21, 2013",
+ "dependencies": [
+ {
+ "name": "parameterized-trigger",
+ "optional": true,
+ "version": "2.11"
+ },
+ {
+ "name": "jquery-ui",
+ "optional": false,
+ "version": "1.0.2"
+ },
+ {
+ "name": "copyartifact",
+ "optional": true,
+ "version": "1.18"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "wolfs",
+ "name": "Stefan Wolf"
+ }
+ ],
+ "excerpt": "Shows a dependency graph of the projects using graphviz. Requires a graphviz installation on the server.",
+ "gav": "org.jenkins-ci.plugins:depgraph-view:0.11",
+ "labels": [
+ "report",
+ "ui",
+ "misc"
+ ],
+ "name": "depgraph-view",
+ "previousTimestamp": "2012-12-01T22:51:30.00Z",
+ "previousVersion": "0.10",
+ "releaseTimestamp": "2013-03-21T22:20:34.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "dRvN1EJ71/uSx0GBe4zSEFp4igI=",
+ "title": "Dependency Graph Viewer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/depgraph-view/0.11/depgraph-view.hpi",
+ "version": "0.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Graph+View+Plugin"
+ },
+ "deploy": {
+ "buildDate": "Jul 02, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "edobm",
+ "name": "Meikel Bode"
+ },
+ {
+ "developerId": "devkiela",
+ "name": "Daniel Barth"
+ },
+ {
+ "developerId": "leandro-freitas-softdevelop",
+ "name": "Leandro Kersting de Freitas"
+ }
+ ],
+ "excerpt": "This plugin takes a war/ear file and deploys that to a running remote application server at the end of a build",
+ "gav": "org.jenkins-ci.plugins:deploy:1.10",
+ "labels": [
+ "upload"
+ ],
+ "name": "deploy",
+ "previousTimestamp": "2012-06-11T11:34:52.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2014-07-02T20:55:32.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "pNoT9cHfr1dEP7AbilIOru8tM9I=",
+ "title": "Deploy to container Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deploy/1.10/deploy.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deploy+Plugin"
+ },
+ "deploy-websphere": {
+ "buildDate": "Jun 02, 2010",
+ "dependencies": [
+ {
+ "name": "deploy",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "asanso",
+ "name": "Antonio Sanso"
+ }
+ ],
+ "excerpt": "This plugin is an extension of the <a href='https://wiki.jenkins-ci.org/display/JENKINS/Deploy+Plugin'>Deploy Plugin</a>. It takes a war/ear file and deploys that to a running remote WebSphere Application Server at the end of a build.",
+ "gav": "org.jvnet.hudson.plugins:deploy-websphere:1.0",
+ "labels": [
+ "upload"
+ ],
+ "name": "deploy-websphere",
+ "releaseTimestamp": "2010-06-02T22:39:10.00Z",
+ "requiredCore": "1.343",
+ "scm": "svn.dev.java.net",
+ "sha1": "PAhTdc2WHUet0ZfHOj9DhcFeKK8=",
+ "title": "Deploy to Websphere container Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deploy-websphere/1.0/deploy-websphere.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deploy+WebSphere+Plugin"
+ },
+ "deploydb": {
+ "buildDate": "Apr 02, 2015",
+ "dependencies": [],
+ "developers": [],
+ "excerpt": "Triggers builds based on incoming <a href='http://hackers.lookout.com/deploydb/'>DeployDB</a> webhooks, and reports the results back to DeployDB.",
+ "gav": "org.jenkins-ci.plugins:deploydb:0.1",
+ "labels": [
+ "trigger"
+ ],
+ "name": "deploydb",
+ "releaseTimestamp": "2015-04-02T16:43:56.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "OR1pz2hH4i1BRKsOiIbh4SCZyjQ=",
+ "title": "DeployDB Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deploydb/0.1/deploydb.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DeployDB+Plugin"
+ },
+ "deployed-on-column": {
+ "buildDate": "Feb 19, 2013",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.424"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a column that acts as a container for build actions that record deployment of build artifacts to remote servers, such as deployment of web applications to servers, etc. The plugin also provides an extension point for other plugins to contribute their build actions. ",
+ "gav": "org.jenkins-ci.plugins:deployed-on-column:1.7",
+ "labels": [],
+ "name": "deployed-on-column",
+ "previousTimestamp": "2013-01-22T11:08:48.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2013-02-19T11:07:40.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "y6IP/IAgZtgTyb9Is/rKjcrkA18=",
+ "title": "Deployed On Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deployed-on-column/1.7/deployed-on-column.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deployed+on+Column+Plugin"
+ },
+ "deployer-framework": {
+ "buildDate": "Jun 15, 2015",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.5"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.4"
+ },
+ {
+ "name": "javadoc",
+ "optional": true,
+ "version": "1.0"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "deployed-on-column",
+ "optional": false,
+ "version": "1.7"
+ },
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.17"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olamy",
+ "name": "Olivier Lamy"
+ },
+ {
+ "developerId": "stephenc",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a framework for deploying applications. Other plugins provide engines that plug in to this framework and perform the actual deployments. ",
+ "gav": "org.jenkins-ci.plugins:deployer-framework:1.1",
+ "labels": [],
+ "name": "deployer-framework",
+ "previousTimestamp": "2014-10-29T10:57:38.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-06-15T15:40:34.00Z",
+ "requiredCore": "1.554",
+ "scm": "github.com",
+ "sha1": "K+zS1CEhM3yriuVQRwltaTk2ldU=",
+ "title": "Deployer Framework Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deployer-framework/1.1/deployer-framework.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deployer+Framework+Plugin"
+ },
+ "deployit-plugin": {
+ "buildDate": "Jan 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "XebiaLabsCI",
+ "email": "xl-developers (at) xebialabs (dot) com",
+ "name": "XebiaLabs"
+ }
+ ],
+ "excerpt": "The XL Deploy Plugin integrates Jenkins with XebiaLabs XL Deploy",
+ "gav": "com.xebialabs.deployit.ci:deployit-plugin:5.0.2",
+ "labels": [
+ "upload",
+ "external",
+ "post-build"
+ ],
+ "name": "deployit-plugin",
+ "previousTimestamp": "2015-11-13T16:16:18.00Z",
+ "previousVersion": "5.0.1",
+ "releaseTimestamp": "2016-01-21T12:43:50.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "PyTMgV0pCeuMo1YZl5e4hooY5F8=",
+ "title": "XebiaLabs XL Deploy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deployit-plugin/5.0.2/deployit-plugin.hpi",
+ "version": "5.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XL+Deploy+Plugin"
+ },
+ "deployment-notification": {
+ "buildDate": "Apr 03, 2016",
+ "dependencies": [
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.15"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "fbelzunc",
+ "name": "Felix Belzunce Arcos"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:deployment-notification:1.4",
+ "labels": [
+ "deployment",
+ "misc"
+ ],
+ "name": "deployment-notification",
+ "previousTimestamp": "2016-01-27T11:38:06.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-04-03T09:18:24.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "WXJs4s5wvWRkp4DKSfUjfIz2CWU=",
+ "title": "Deployment Notification Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deployment-notification/1.4/deployment-notification.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deployment+Notification+Plugin"
+ },
+ "deployment-sphere": {
+ "buildDate": "Aug 17, 2015",
+ "compatibleSinceVersion": "1.20",
+ "dependencies": [
+ {
+ "name": "jira",
+ "optional": true,
+ "version": "1.39"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "webdizz",
+ "email": "izzet@mustafaiev.com",
+ "name": "Izzet Mustafaiev"
+ },
+ {
+ "developerId": "fevz",
+ "name": "Fevzi Anifeiev"
+ },
+ {
+ "developerId": "zinur",
+ "email": "zinur@mustafaiev.com",
+ "name": "Zinur Mustafaiev"
+ },
+ {
+ "developerId": "tair",
+ "email": "tair@mustafaiev.com",
+ "name": "Tair Mustafaiev"
+ },
+ {
+ "developerId": "rkovalenko",
+ "email": "Roman_Kovalenko@epam.com",
+ "name": "Roman Kovalenko"
+ },
+ {
+ "developerId": "Oleksii_Zaitsev",
+ "email": "Oleksii_Zaitsev@epam.com",
+ "name": "Oleksii Zaitsev"
+ }
+ ],
+ "excerpt": "Jenkins plugin to have a bird's eye view of your continuous deployment pipeline. ",
+ "gav": "org.jenkins-ci.plugins:deployment-sphere:0.1.105",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "deployment-sphere",
+ "previousTimestamp": "2015-05-14T12:04:32.00Z",
+ "previousVersion": "0.1.104",
+ "releaseTimestamp": "2015-08-17T15:36:38.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "Ul1WzR7XN+BaeQ9YJfzjwtJhoUU=",
+ "title": "Deployment Sphere",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deployment-sphere/0.1.105/deployment-sphere.hpi",
+ "version": "0.1.105",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deployment+Sphere+Plugin"
+ },
+ "description-column-plugin": {
+ "buildDate": "Aug 26, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "noirbizarre",
+ "email": "noirbizarre+jenkins@gmail.com",
+ "name": "Axel Haustant"
+ }
+ ],
+ "excerpt": "Provide job description column for views.",
+ "gav": "org.jenkins-ci.plugins:description-column-plugin:1.3",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "description-column-plugin",
+ "previousTimestamp": "2011-08-20T15:12:16.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2011-08-26T21:56:50.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "snbs4E4kUVEwJzqfbDqW23fM1Vg=",
+ "title": "Description Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/description-column-plugin/1.3/description-column-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Description+Column+Plugin"
+ },
+ "description-setter": {
+ "buildDate": "Apr 03, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "michael1010",
+ "name": "Michael"
+ },
+ {
+ "developerId": "huybrechts",
+ "name": "Tom Huybrechts"
+ }
+ ],
+ "excerpt": "This plugin sets the description for each build, based upon a <a href='http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html'>RegEx</a> test of the build log file.",
+ "gav": "org.jenkins-ci.plugins:description-setter:1.10",
+ "labels": [
+ "post-build"
+ ],
+ "name": "description-setter",
+ "previousTimestamp": "2014-06-13T16:12:40.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2015-04-03T14:40:16.00Z",
+ "requiredCore": "1.560",
+ "scm": "github.com",
+ "sha1": "7DmN76ViMpbzuCG3b7Oilp9L9+8=",
+ "title": "Jenkins description setter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/description-setter/1.10/description-setter.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Description+Setter+Plugin"
+ },
+ "deveo": {
+ "buildDate": "Dec 18, 2015",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.5.3"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.0"
+ },
+ {
+ "name": "mercurial",
+ "optional": false,
+ "version": "1.54"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vellu",
+ "email": "vellu@deveo.com",
+ "name": "Veli-Matti Luoto"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='https://deveo.com'>Deveo</a>.",
+ "gav": "org.jenkins-ci.plugins:deveo:1.1.2",
+ "labels": [
+ "external"
+ ],
+ "name": "deveo",
+ "previousTimestamp": "2015-10-29T18:24:42.00Z",
+ "previousVersion": "1.1.1",
+ "releaseTimestamp": "2015-12-18T15:59:18.00Z",
+ "requiredCore": "1.627",
+ "scm": "github.com",
+ "sha1": "XTY4eMZZ4vmgFVKIfFZCmMVVZX8=",
+ "title": "Deveo Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/deveo/1.1.2/deveo.hpi",
+ "version": "1.1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deveo+Plugin"
+ },
+ "digitalocean-plugin": {
+ "buildDate": "Jun 27, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "pulse00",
+ "email": "robert.gruendler@dubture.com",
+ "name": "Robert Gruendler"
+ },
+ {
+ "developerId": "anpieber",
+ "email": "anpieber@gmail.com",
+ "name": "Andreas Pieber"
+ },
+ {
+ "developerId": "nurupo",
+ "email": "nurupo.contributions@gmail.com",
+ "name": "Maxim Biro"
+ }
+ ],
+ "excerpt": "Allow Jenkins to start slaves on <a href='http://digitalocean.com/'>DigitalOcean</a> droplets on demand and destroy them as they get unused. ",
+ "gav": "com.dubture.jenkins:digitalocean-plugin:0.12",
+ "labels": [],
+ "name": "digitalocean-plugin",
+ "previousTimestamp": "2016-05-26T23:19:00.00Z",
+ "previousVersion": "0.11",
+ "releaseTimestamp": "2016-06-27T15:19:18.00Z",
+ "requiredCore": "1.642.2",
+ "scm": "github.com",
+ "sha1": "JzzySzx4qI0ZmnDqrIGF9X44jd8=",
+ "title": "DigitalOcean plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/digitalocean-plugin/0.12/digitalocean-plugin.hpi",
+ "version": "0.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DigitalOcean+Plugin"
+ },
+ "dimensionsscm": {
+ "buildDate": "Jan 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dconneely",
+ "name": "David Conneely"
+ }
+ ],
+ "excerpt": "This plugin integrates the <a href='http://www.serena.com/dimensions-cm'>Serena Dimensions CM</a> SCM with Jenkins.",
+ "gav": "org.jenkins-ci.plugins:dimensionsscm:0.8.13",
+ "labels": [
+ "post-build",
+ "upload",
+ "notifier",
+ "scm"
+ ],
+ "name": "dimensionsscm",
+ "previousTimestamp": "2015-05-14T10:51:46.00Z",
+ "previousVersion": "0.8.12",
+ "releaseTimestamp": "2016-01-26T16:25:50.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "KkwQDBmwCqhjlLCSQob2GEnuAdo=",
+ "title": "Jenkins Dimensions Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dimensionsscm/0.8.13/dimensionsscm.hpi",
+ "version": "0.8.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dimensions+Plugin"
+ },
+ "disable-failed-job": {
+ "buildDate": "Mar 22, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "w_kazunori",
+ "email": "wakamatsu.kazunori@gmail.com",
+ "name": "w_kazunori"
+ }
+ ],
+ "excerpt": "This Plugin disable Job when Build failed.",
+ "gav": "org.jenkins-ci.plugins:disable-failed-job:1.15",
+ "labels": [],
+ "name": "disable-failed-job",
+ "previousTimestamp": "2014-05-16T20:27:58.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2015-03-22T13:02:52.00Z",
+ "requiredCore": "1.605",
+ "scm": "github.com",
+ "sha1": "WruzRTcGD1w1oI232VMBryFACkM=",
+ "title": "Disable Failed Job Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/disable-failed-job/1.15/disable-failed-job.hpi",
+ "version": "1.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Disable+Failed+Job+Plugin"
+ },
+ "discard-old-build": {
+ "buildDate": "Jun 27, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nkns165",
+ "email": "nkns165@gmail.com",
+ "name": "Hiroko Tamagawa"
+ },
+ {
+ "developerId": "joeyjiao",
+ "email": "joey.jiaojg@gmail.com",
+ "name": "Joey Jiao"
+ }
+ ],
+ "excerpt": "This plugin provides a post-build step where you can discard old build results in detailed configuration (ex. keep only builds with specified status). ",
+ "gav": "jp.shiftinc.jenkins.plugins:discard-old-build:1.05",
+ "labels": [
+ "post-build"
+ ],
+ "name": "discard-old-build",
+ "previousTimestamp": "2013-06-06T16:26:22.00Z",
+ "previousVersion": "1.04",
+ "releaseTimestamp": "2013-06-27T16:47:08.00Z",
+ "requiredCore": "1.515",
+ "scm": "github.com",
+ "sha1": "RevqY88nLglhzuciLTStffj7IoQ=",
+ "title": "Discard Old Build plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/discard-old-build/1.05/discard-old-build.hpi",
+ "version": "1.05",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Discard+Old+Build+plugin"
+ },
+ "discobit-autoconfig": {
+ "buildDate": "Nov 28, 2014",
+ "compatibleSinceVersion": "0.9",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jsaade",
+ "email": "jens@v3rticle.com",
+ "name": "Jens Saade"
+ }
+ ],
+ "excerpt": "discoBit is a central configuration repository for applications (http://discobit.com).&nbsp;",
+ "gav": "com.v3rticle.oss:discobit-autoconfig:0.9.1",
+ "labels": [
+ "external"
+ ],
+ "name": "discobit-autoconfig",
+ "previousTimestamp": "2014-11-28T23:09:48.00Z",
+ "previousVersion": "0.9",
+ "releaseTimestamp": "2014-11-28T23:09:48.00Z",
+ "requiredCore": "1.420",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "XapkRM5GesBBpaqAlJo9AZpQnU0=",
+ "title": "discoBit AutoConfig plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/discobit-autoconfig/0.9.1/discobit-autoconfig.hpi",
+ "version": "0.9.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/discoBit+Autoconfig+Plugin"
+ },
+ "disk-usage": {
+ "buildDate": "Oct 01, 2015",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plugin records disk usage. ",
+ "gav": "org.jenkins-ci.plugins:disk-usage:0.28",
+ "labels": [
+ "report"
+ ],
+ "name": "disk-usage",
+ "previousTimestamp": "2015-09-21T13:37:16.00Z",
+ "previousVersion": "0.27",
+ "releaseTimestamp": "2015-10-01T14:00:56.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "F99YBwPcuwOV/vNI/YHyHU39vl4=",
+ "title": "Jenkins disk-usage plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/disk-usage/0.28/disk-usage.hpi",
+ "version": "0.28",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Disk+Usage+Plugin"
+ },
+ "diskcheck": {
+ "buildDate": "Feb 08, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mthak",
+ "email": "mthakkar@cloudera.com",
+ "name": "Manoj Thakkar"
+ }
+ ],
+ "excerpt": "This plugin checks for Disk Space on the slave machine before starting a build. If the disk space is below minimum threshold (default 1 Gb ) build will fail, One can set the threshold parameter in the Global Configuration , Also you can choose to delete the workspace if the disk space is low",
+ "gav": "org.jenkins-ci.plugins:diskcheck:0.26",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "diskcheck",
+ "previousTimestamp": "2015-02-04T22:48:26.00Z",
+ "previousVersion": "0.25",
+ "releaseTimestamp": "2015-02-08T01:03:50.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "wpC71Wf0nF76T/AJCIyRR8vNW5s=",
+ "title": "DiskCheck Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/diskcheck/0.26/diskcheck.hpi",
+ "version": "0.26",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DiskCheck+Plugin"
+ },
+ "display-upstream-changes": {
+ "buildDate": "Mar 29, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rpetti",
+ "name": "Rob Petti"
+ }
+ ],
+ "excerpt": "Displays all upstream changes on a build's summary page.",
+ "gav": "org.jvnet.hudson.plugins:display-upstream-changes:0.1",
+ "labels": [],
+ "name": "display-upstream-changes",
+ "releaseTimestamp": "2012-03-29T14:04:46.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "jBpY0c6s+JYHa/5ZUgfA+pSjvBA=",
+ "title": "Display Upstream Changes",
+ "url": "http://updates.jenkins-ci.org/download/plugins/display-upstream-changes/0.1/display-upstream-changes.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Display+Upstream+Changes+Plugin"
+ },
+ "display-url-api": {
+ "buildDate": "Sep 22, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jdumay",
+ "email": "jdumay@cloudbees.com",
+ "name": "James Dumay"
+ }
+ ],
+ "excerpt": "Provides the DisplayURLProvider extension point to provide alternate URLs for use in notifications ",
+ "gav": "org.jenkins-ci.plugins:display-url-api:0.5",
+ "labels": [],
+ "name": "display-url-api",
+ "previousTimestamp": "2016-09-22T09:35:08.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2016-09-22T10:42:00.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "QEykyLSFuZTnFyHrzZEOgzSsYcU=",
+ "title": "Display URL API",
+ "url": "http://updates.jenkins-ci.org/download/plugins/display-url-api/0.5/display-url-api.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Display+URL+API+Plugin"
+ },
+ "distTest": {
+ "buildDate": "Jan 20, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mnovak",
+ "email": "novak.miroslav95@gmail.com",
+ "name": "Miroslav Novak"
+ }
+ ],
+ "excerpt": "This plugin allows distribute JUnit tests to all slaves in a specified label for a project.",
+ "gav": "org.jvnet.hudson.plugins:distTest:1.0",
+ "labels": [
+ "builder"
+ ],
+ "name": "distTest",
+ "releaseTimestamp": "2011-01-20T11:20:14.00Z",
+ "requiredCore": "1.350",
+ "scm": "svn.java.net",
+ "sha1": "khlRX3YLAm9vVzflVYoZM+YOzj4=",
+ "title": "Hudson Distributed Testing Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/distTest/1.0/distTest.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DistTest+Plugin"
+ },
+ "distfork": {
+ "buildDate": "Feb 10, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "Turns a Jenkins cluster into a general purpose batch job execution environment through an SSH-like CLI.",
+ "gav": "org.jenkins-ci.plugins:distfork:1.4.1",
+ "labels": [
+ "cluster",
+ "cli"
+ ],
+ "name": "distfork",
+ "previousTimestamp": "2011-02-25T16:40:32.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-02-10T09:59:38.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "ZWA+/s8aveh7XGb4wmfXxd1QWv8=",
+ "title": "Jenkins Distributed Fork plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/distfork/1.4.1/distfork.hpi",
+ "version": "1.4.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DistFork+Plugin"
+ },
+ "docker-build-publish": {
+ "buildDate": "Jun 30, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.3.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "csanchez"
+ }
+ ],
+ "excerpt": "This plugin provides the ability to build projects with a Dockerfile, and publish the resultant tagged image (repo) to a Docker registry.",
+ "gav": "org.jenkins-ci.plugins:docker-build-publish:1.3.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "docker-build-publish",
+ "previousTimestamp": "2016-06-28T09:25:32.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-06-30T09:14:04.00Z",
+ "requiredCore": "1.554.2",
+ "scm": "github.com",
+ "sha1": "s67v5+V0esP7Wet4IsyMXK6sO8I=",
+ "title": "CloudBees Docker Build and Publish plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/docker-build-publish/1.3.1/docker-build-publish.hpi",
+ "version": "1.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Docker+Build+and+Publish+plugin"
+ },
+ "docker-build-step": {
+ "buildDate": "May 11, 2016",
+ "dependencies": [
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ }
+ ],
+ "excerpt": "This plugin allows to add various <a href='https://www.docker.com/'>Docker</a> commands into your job as a build step ",
+ "gav": "org.jenkins-ci.plugins:docker-build-step:1.35",
+ "labels": [
+ "builder"
+ ],
+ "name": "docker-build-step",
+ "previousTimestamp": "2016-03-01T21:51:06.00Z",
+ "previousVersion": "1.34",
+ "releaseTimestamp": "2016-05-11T22:08:52.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "9+XhvAvBLgLTSogl+aaP9SK2qxU=",
+ "title": "Docker build step plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/docker-build-step/1.35/docker-build-step.hpi",
+ "version": "1.35",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Docker+build+step+plugin"
+ },
+ "docker-commons": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [
+ {
+ "name": "authentication-tokens",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "icon-shim",
+ "optional": false,
+ "version": "1.0.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "APIs for using Docker from other plugins.",
+ "gav": "org.jenkins-ci.plugins:docker-commons:1.5",
+ "labels": [
+ "library"
+ ],
+ "name": "docker-commons",
+ "previousTimestamp": "2016-09-08T12:12:46.00Z",
+ "previousVersion": "1.4.1",
+ "releaseTimestamp": "2016-10-05T11:45:44.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "yGNSXLiBd9OPrUN98UlE9efIvIs=",
+ "title": "Docker Commons Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/docker-commons/1.5/docker-commons.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Docker+Commons+Plugin"
+ },
+ "docker-custom-build-environment": {
+ "buildDate": "Feb 18, 2016",
+ "dependencies": [
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.12"
+ },
+ {
+ "name": "dockerhub-notification",
+ "optional": true,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com"
+ }
+ ],
+ "excerpt": "This plugin allows the definition of a build environment for a job using a Docker container. ",
+ "gav": "com.cloudbees.jenkins.plugins:docker-custom-build-environment:1.6.5",
+ "labels": [],
+ "name": "docker-custom-build-environment",
+ "previousTimestamp": "2015-10-28T13:03:20.00Z",
+ "previousVersion": "1.6.4",
+ "releaseTimestamp": "2016-02-18T11:34:34.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "m8913ElU4xUqe9lOspfLzViNj5s=",
+ "title": "CloudBees Docker Custom Build Environment Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/docker-custom-build-environment/1.6.5/docker-custom-build-environment.hpi",
+ "version": "1.6.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Docker+Custom+Build+Environment+Plugin"
+ },
+ "docker-plugin": {
+ "buildDate": "Sep 13, 2016",
+ "dependencies": [
+ {
+ "name": "ssh-slaves",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.7"
+ },
+ {
+ "name": "durable-task",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "KostyaSha",
+ "name": "Kanstantsin Shautsou"
+ },
+ {
+ "developerId": "magnayn",
+ "name": "Nigel Magnay"
+ }
+ ],
+ "excerpt": "This plugin allows slaves to be dynamically provisioned using <a href='http://www.docker.io/'>Docker</a>. ",
+ "gav": "com.nirima:docker-plugin:0.16.2",
+ "labels": [
+ "cluster",
+ "cloud"
+ ],
+ "name": "docker-plugin",
+ "previousTimestamp": "2016-07-27T21:29:28.00Z",
+ "previousVersion": "0.16.1",
+ "releaseTimestamp": "2016-09-13T14:04:58.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "sTQ8C2SE6wRhhsQrhaaj/EwP9FQ=",
+ "title": "Docker plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/docker-plugin/0.16.2/docker-plugin.hpi",
+ "version": "0.16.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Docker+Plugin"
+ },
+ "docker-slaves": {
+ "buildDate": "Oct 07, 2016",
+ "dependencies": [
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.3.1"
+ },
+ {
+ "name": "workflow-support",
+ "optional": true,
+ "version": "2.2"
+ },
+ {
+ "name": "durable-task",
+ "optional": true,
+ "version": "1.12"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "2.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ },
+ {
+ "developerId": "ydubreuil",
+ "email": "yoann.dubreuil@gmail.com",
+ "name": "Yoann Dubreuil"
+ }
+ ],
+ "excerpt": "Use Containers to setup build agents, without any constraint on images you can use. ",
+ "gav": "io.jenkins.plugins:docker-slaves:1.0.4",
+ "labels": [],
+ "name": "docker-slaves",
+ "previousTimestamp": "2016-04-22T02:24:20.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2016-10-07T12:24:10.00Z",
+ "requiredCore": "1.651.2",
+ "scm": "github.com",
+ "sha1": "pghxEM5hTboUK/8Z5hx7wHeN254=",
+ "title": "Docker Slaves Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/docker-slaves/1.0.4/docker-slaves.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Docker+Slaves+Plugin"
+ },
+ "docker-traceability": {
+ "buildDate": "Jul 01, 2016",
+ "dependencies": [
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nenashev"
+ }
+ ],
+ "excerpt": "This plugin allows the tracking of the creation of, and use of Docker containers in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:docker-traceability:1.2",
+ "labels": [],
+ "name": "docker-traceability",
+ "previousTimestamp": "2015-08-19T11:51:22.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-07-01T15:41:18.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "UBvX8G1Pr7ueOdM1GJRPsOQUIts=",
+ "title": "CloudBees Docker Traceability",
+ "url": "http://updates.jenkins-ci.org/download/plugins/docker-traceability/1.2/docker-traceability.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Docker+Traceability"
+ },
+ "docker-workflow": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.17"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.7"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-durable-task-step",
+ "optional": false,
+ "version": "2.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Allows to build and use Docker containers from <a href='https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin'>pipelines</a>. ",
+ "gav": "org.jenkins-ci.plugins:docker-workflow:1.9",
+ "labels": [
+ "deployment",
+ "devops"
+ ],
+ "name": "docker-workflow",
+ "previousTimestamp": "2016-09-07T17:31:00.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2016-10-05T13:10:34.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "pjHLNrbh1U13NplO80Bpyx3W78Y=",
+ "title": "CloudBees Docker Pipeline",
+ "url": "http://updates.jenkins-ci.org/download/plugins/docker-workflow/1.9/docker-workflow.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Docker+Pipeline+Plugin"
+ },
+ "dockerhub-notification": {
+ "buildDate": "Jun 15, 2016",
+ "dependencies": [
+ {
+ "name": "async-http-client",
+ "optional": false,
+ "version": "1.7.8"
+ },
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rsandell"
+ }
+ ],
+ "excerpt": "This plugin provides integration between Jenkins and Docker Hub, utilizing a Docker Hub hook to trigger one (or more) Jenkins job(s). This allows you to implement continuous delivery pipelines based on Docker in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:dockerhub-notification:2.2.0",
+ "labels": [],
+ "name": "dockerhub-notification",
+ "previousTimestamp": "2016-05-30T22:01:46.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2016-06-15T12:21:42.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "u64Hehlw8nxP/udX2xPFAzbzao4=",
+ "title": "CloudBees Docker Hub/Registry Notification",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dockerhub-notification/2.2.0/dockerhub-notification.hpi",
+ "version": "2.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Docker+Hub+Notification"
+ },
+ "doclinks": {
+ "buildDate": "Mar 05, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "1.466"
+ },
+ {
+ "name": "javadoc",
+ "optional": true,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ },
+ {
+ "developerId": "ikedam",
+ "name": "IKEDA Yasuyuki"
+ }
+ ],
+ "excerpt": "This plugin allows you to publish your documents that are created in the build steps as links on the project page.",
+ "gav": "org.jenkinsci.plugins:doclinks:0.6.1",
+ "labels": [
+ "ui",
+ "post-build"
+ ],
+ "name": "doclinks",
+ "previousTimestamp": "2013-09-28T13:00:06.00Z",
+ "previousVersion": "0.6",
+ "releaseTimestamp": "2016-03-05T10:23:02.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "QdyVxdJ0IMOwKERa2pDOAi9iSfQ=",
+ "title": "Jenkins DocLinks plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/doclinks/0.6.1/doclinks.hpi",
+ "version": "0.6.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DocLinks+Plugin"
+ },
+ "dos-trigger": {
+ "buildDate": "Aug 20, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "pellet",
+ "email": "benpettit@digimulti.com",
+ "name": "Ben Pettit"
+ },
+ {
+ "developerId": "tombrus",
+ "email": "tombrus@gmail.com",
+ "name": "Tom Brus"
+ }
+ ],
+ "excerpt": "This plugin allows to trigger a build with a DOS script.",
+ "gav": "org.jenkins-ci.plugins:dos-trigger:1.23",
+ "labels": [
+ "trigger"
+ ],
+ "name": "dos-trigger",
+ "previousTimestamp": "2011-06-02T17:41:26.00Z",
+ "previousVersion": "1.21",
+ "releaseTimestamp": "2011-08-20T10:45:52.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "snUuDMD0Djp+KIkiskFF5DK5qkY=",
+ "title": "DOS Trigger",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dos-trigger/1.23/dos-trigger.hpi",
+ "version": "1.23",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DOS+Trigger"
+ },
+ "downstream-buildview": {
+ "buildDate": "Dec 17, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "shinodkm",
+ "email": "shinodkm@gmail.com",
+ "name": "Shinod Mohandas"
+ },
+ {
+ "email": "rajesh.nair.mit@gmail.com",
+ "name": "Rajesh Nair"
+ }
+ ],
+ "excerpt": "This plugin allows you to view the full status all the downstream builds so that we can graphically see that everything for this build has been completed successfully.",
+ "gav": "org.jvnet.hudson.plugins:downstream-buildview:1.9",
+ "labels": [
+ "report",
+ "ui",
+ "misc"
+ ],
+ "name": "downstream-buildview",
+ "previousTimestamp": "2012-08-02T12:28:06.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2013-12-17T14:20:04.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "Tfl5EwdGNOhSBd0xAery6AHSXns=",
+ "title": "Downstream build view",
+ "url": "http://updates.jenkins-ci.org/download/plugins/downstream-buildview/1.9/downstream-buildview.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Downstream+buildview+plugin"
+ },
+ "downstream-ext": {
+ "buildDate": "Feb 21, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kutzi",
+ "email": "kutzi@gmx.de",
+ "name": "Christoph Kutzinski"
+ }
+ ],
+ "excerpt": "This plugin supports extended configuration for triggering downstream builds: * trigger build only if downstream job has SCM changes * trigger build if upstream build result is better/equal/worse than any given result (SUCCESS, UNSTABLE, FAILURE, ABORTED) * for Matrix (alias multi-configuration) jobs you can decide which part of the job should trigger the downstream job: parent only, configurations only or both ",
+ "gav": "org.jenkins-ci.plugins:downstream-ext:1.8",
+ "labels": [
+ "trigger"
+ ],
+ "name": "downstream-ext",
+ "previousTimestamp": "2012-02-09T16:51:36.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2013-02-21T20:55:14.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "gVRq3RRFf6E0NQZ2usamwUMYgdc=",
+ "title": "Downstream-Ext",
+ "url": "http://updates.jenkins-ci.org/download/plugins/downstream-ext/1.8/downstream-ext.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Downstream-Ext+Plugin"
+ },
+ "doxygen": {
+ "buildDate": "Nov 20, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin generates Doxygen documentation and publishes HTML reports generated by the <a href='http://www.stack.nl/~dimitri/doxygen/'>Doxygen</a> tool. ",
+ "gav": "org.jenkins-ci.plugins:doxygen:0.18",
+ "labels": [
+ "builder"
+ ],
+ "name": "doxygen",
+ "previousTimestamp": "2015-08-10T00:45:04.00Z",
+ "previousVersion": "0.17",
+ "releaseTimestamp": "2015-11-20T23:06:18.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "QScb6p5mM+V9mwuXSNQwHf34NqQ=",
+ "title": "Jenkins Doxygen Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/doxygen/0.18/doxygen.hpi",
+ "version": "0.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Doxygen+Plugin"
+ },
+ "drmemory-plugin": {
+ "buildDate": "Oct 12, 2015",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.37"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "Integrates Dr. Memory with Jenkins",
+ "gav": "net.praqma:drmemory-plugin:1.4",
+ "labels": [
+ "report",
+ "builder",
+ "post-build"
+ ],
+ "name": "drmemory-plugin",
+ "previousTimestamp": "2014-06-23T15:42:14.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2015-10-12T15:51:08.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "Ew3Tc+QQoLI2CbNj77Ai4fq2xyM=",
+ "title": "Dr. Memory Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/drmemory-plugin/1.4/drmemory-plugin.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/drmemory+plugin"
+ },
+ "dropdown-viewstabbar-plugin": {
+ "buildDate": "Oct 16, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ },
+ {
+ "developerId": "michael1010",
+ "email": "fussball89@online.de",
+ "name": "Michael"
+ }
+ ],
+ "excerpt": "This plugin provides an alternate rendering of the Views bar which runs along the top of all views. This plugin is useful for instances which have a very large number of views and want a compact rendering.",
+ "gav": "org.jenkins-ci.plugins:dropdown-viewstabbar-plugin:1.7",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "dropdown-viewstabbar-plugin",
+ "previousTimestamp": "2012-07-22T18:19:06.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2015-10-16T20:55:00.00Z",
+ "requiredCore": "1.546",
+ "scm": "github.com",
+ "sha1": "JGVb1+mjI1ltk2E/8jio0gvh59M=",
+ "title": "Drop Down ViewsTabBar Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dropdown-viewstabbar-plugin/1.7/dropdown-viewstabbar-plugin.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DropDown+ViewsTabBar+Plugin"
+ },
+ "drupal-developer": {
+ "buildDate": "Aug 12, 2016",
+ "dependencies": [
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "0.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "fengtan",
+ "name": "Fengtan"
+ }
+ ],
+ "excerpt": "A plugin to review code and run tests on Drupal. ",
+ "gav": "org.jenkins-ci.plugins:drupal-developer:0.8",
+ "labels": [
+ "external"
+ ],
+ "name": "drupal-developer",
+ "previousTimestamp": "2015-09-05T02:40:42.00Z",
+ "previousVersion": "0.6",
+ "releaseTimestamp": "2016-08-12T14:19:16.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "xFE+F5Y8s0hSO4TBtXzHNxYEq9s=",
+ "title": "Drupal Developer",
+ "url": "http://updates.jenkins-ci.org/download/plugins/drupal-developer/0.8/drupal-developer.hpi",
+ "version": "0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Drupal+Developer+Plugin"
+ },
+ "dry": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.77"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drulli",
+ "email": "ullrich.hafner@gmail.com",
+ "name": "Ulli Hafner"
+ }
+ ],
+ "excerpt": "This plugin generates the trend report for duplicate code checkers like <a href='http://pmd.sourceforge.net/cpd.html'>CPD</a> or <a href='http://www.harukizaemon.com/simian/'>Simian</a>. ",
+ "gav": "org.jvnet.hudson.plugins:dry:2.45",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "dry",
+ "previousTimestamp": "2016-02-27T23:47:32.00Z",
+ "previousVersion": "2.44",
+ "releaseTimestamp": "2016-06-01T14:32:56.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "k+983AG31N52lZ+uAbEis3GNPyc=",
+ "title": "DRY Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dry/2.45/dry.hpi",
+ "version": "2.45",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DRY+Plugin"
+ },
+ "dry-run": {
+ "buildDate": "Sep 16, 2012",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.410"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plug-in makes it possible to show all the job tasks (builders, publishers, ...) to be executed as part of a build job. ",
+ "gav": "org.jenkins-ci.plugins:dry-run:0.9",
+ "labels": [],
+ "name": "dry-run",
+ "previousTimestamp": "2012-02-06T17:21:26.00Z",
+ "previousVersion": "0.8",
+ "releaseTimestamp": "2012-09-16T22:42:54.00Z",
+ "requiredCore": "1.410",
+ "scm": "github.com",
+ "sha1": "4BuqvLI+ZnTPD/TKFZvglOTOcr8=",
+ "title": "Jenkins Dry Run Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dry-run/0.9/dry-run.hpi",
+ "version": "0.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DryRun+Plugin"
+ },
+ "dtkit": {
+ "buildDate": "Oct 27, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to convert outputs from the metric tools execution into unified outputs.",
+ "gav": "org.jenkins-ci.plugins:dtkit:2.1.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "dtkit",
+ "previousTimestamp": "2015-07-17T09:04:52.00Z",
+ "previousVersion": "2.1.2",
+ "releaseTimestamp": "2015-10-27T23:12:44.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "v3ngA6iTPj3z92hL6j6kwa4OCb0=",
+ "title": "DTKit Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dtkit/2.1.3/dtkit.hpi",
+ "version": "2.1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DTKit+Plugin"
+ },
+ "dumpinfo-buildwrapper-plugin": {
+ "buildDate": "Jan 30, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Dumps vital information about the Hudson instance into the job log. This plugin is useful for historical and audit purposes, where you can see what versions of Hudson, slaves, and plugins were around at the time of a build.",
+ "gav": "org.jvnet.hudson.plugins:dumpinfo-buildwrapper-plugin:1.1",
+ "labels": [
+ "buildwrapper",
+ "misc"
+ ],
+ "name": "dumpinfo-buildwrapper-plugin",
+ "previousTimestamp": "2011-01-27T20:02:24.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-01-30T09:41:14.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "92iZEr3drLGGGRUKgrRjVdExraQ=",
+ "title": "Dump Info BuildWrapper Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dumpinfo-buildwrapper-plugin/1.1/dumpinfo-buildwrapper-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DumpInfo+BuildWrapper+Plugin"
+ },
+ "dumpling": {
+ "buildDate": "Jul 18, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ogondza"
+ }
+ ],
+ "excerpt": "Dumpling plugin for Jenkins brings <a href='http://olivergondza.github.io/dumpling/'>Dumpling DSL</a> capabilities into Jenkins",
+ "gav": "org.jenkins-ci.plugins:dumpling:2.1",
+ "labels": [],
+ "name": "dumpling",
+ "previousTimestamp": "2016-04-20T14:32:08.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-07-18T16:53:02.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "+jWfI4xkbL1a9Nsjzb+Ywjcqp3I=",
+ "title": "Use Dumpling from Jenkins groovy scripts",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dumpling/2.1/dumpling.hpi",
+ "version": "2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dumpling+Plugin"
+ },
+ "durable-task": {
+ "buildDate": "Jul 28, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Library offering an extension point for processes which can run outside of Jenkins yet be monitored.",
+ "gav": "org.jenkins-ci.plugins:durable-task:1.12",
+ "labels": [
+ "builder"
+ ],
+ "name": "durable-task",
+ "previousTimestamp": "2016-06-29T13:15:08.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2016-07-28T19:15:10.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "gWnZwZPDfEfRte/fGwhEfg9BhJ8=",
+ "title": "Durable Task Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/durable-task/1.12/durable-task.hpi",
+ "version": "1.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Durable+Task+Plugin"
+ },
+ "dynamic-axis": {
+ "buildDate": "Dec 07, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kckane",
+ "email": "kckane@silvermaplesolutions.ca",
+ "name": "Kevin Kane"
+ }
+ ],
+ "excerpt": "This plugin allows you to define a matrix build axis that is dynamically populated from an environment variable: ",
+ "gav": "org.jenkins-ci.plugins:dynamic-axis:1.0.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "dynamic-axis",
+ "previousTimestamp": "2013-10-29T23:30:36.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2014-12-07T12:43:30.00Z",
+ "requiredCore": "1.477",
+ "scm": "github.com",
+ "sha1": "6d0Th1UYjoA+loQdZSn4KbXHcck=",
+ "title": "Dynamic Axis",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dynamic-axis/1.0.3/dynamic-axis.hpi",
+ "version": "1.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DynamicAxis+Plugin"
+ },
+ "dynamic-search-view": {
+ "buildDate": "Sep 27, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "Adds a new list view, which allows to dynamically specify additional filters. ",
+ "gav": "com.synopsys.arc.jenkinsci:dynamic-search-view:0.2.2",
+ "labels": [
+ "ui",
+ "view"
+ ],
+ "name": "dynamic-search-view",
+ "previousTimestamp": "2014-06-27T18:46:24.00Z",
+ "previousVersion": "0.2.1",
+ "releaseTimestamp": "2015-09-27T22:16:24.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "0lokB8q634XTLeSR4cFqdxHQ8AI=",
+ "title": "Dynamic Search View Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dynamic-search-view/0.2.2/dynamic-search-view.hpi",
+ "version": "0.2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dynamic+Search+View+Plugin"
+ },
+ "dynamic_extended_choice_parameter": {
+ "buildDate": "Mar 27, 2014",
+ "dependencies": [
+ {
+ "name": "role-strategy",
+ "optional": false,
+ "version": "2.1.0"
+ },
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.54"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rgs",
+ "name": "RGS"
+ }
+ ],
+ "excerpt": "Adds Dynamic functionality to Extended Choice parameter plugin.",
+ "gav": "com.moded.extendedchoiceparameter:dynamic_extended_choice_parameter:1.0.1",
+ "labels": [],
+ "name": "dynamic_extended_choice_parameter",
+ "previousTimestamp": "2014-03-24T16:44:26.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2014-03-27T13:49:14.00Z",
+ "requiredCore": "1.548",
+ "scm": "github.com",
+ "sha1": "UD7Yice45ZWUQnFWjhMkxjBeqMI=",
+ "title": "Dynamic Extended Choice Parameter Plug-In",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dynamic_extended_choice_parameter/1.0.1/dynamic_extended_choice_parameter.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dynamic+Extended+Choice+Parameter+plugin"
+ },
+ "dynamicparameter": {
+ "buildDate": "Oct 01, 2012",
+ "dependencies": [
+ {
+ "name": "scriptler",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dimitarp",
+ "name": "Dimitar Popov"
+ },
+ {
+ "developerId": "baranowski",
+ "name": "Christian Baranowski"
+ }
+ ],
+ "excerpt": "This plugin allows dynamic generation of default build parameter values.",
+ "gav": "com.seitenbau.jenkins.plugins:dynamicparameter:0.2.0",
+ "labels": [
+ "parameter"
+ ],
+ "name": "dynamicparameter",
+ "previousTimestamp": "2012-04-03T16:52:50.00Z",
+ "previousVersion": "0.1.1",
+ "releaseTimestamp": "2012-10-01T17:05:18.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "PvBopa8m/P/nVU6N75KiDVj3kOU=",
+ "title": "Jenkins Dynamic Parameter Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dynamicparameter/0.2.0/dynamicparameter.hpi",
+ "version": "0.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dynamic+Parameter+Plug-in"
+ },
+ "dynatrace-dashboard": {
+ "buildDate": "Sep 29, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dynatrace",
+ "email": "Jenkins.Plugin@dynatrace.com",
+ "name": "Dynatrace Development Team"
+ },
+ {
+ "developerId": "krzysztof.necel",
+ "email": "krzysztof.necel@dynatrace.com",
+ "name": "Krzysztof Necel"
+ },
+ {
+ "developerId": "dariusz.glugla",
+ "email": "dariusz.glugla@dynatrace.com",
+ "name": "Dariusz Glugla"
+ }
+ ],
+ "excerpt": "This plugin helps integrate <a href='https://www.dynatrace.com/'>Dynatrace AppMon</a> with CI environment. It registers a Test Run to the AppMon Server, retrieves Test Automation data and display it through charts and tables on the project and build level.",
+ "gav": "org.jenkins-ci.plugins:dynatrace-dashboard:2.0.5",
+ "labels": [
+ "report"
+ ],
+ "name": "dynatrace-dashboard",
+ "previousTimestamp": "2016-08-10T15:36:24.00Z",
+ "previousVersion": "2.0.4",
+ "releaseTimestamp": "2016-09-29T11:41:02.00Z",
+ "requiredCore": "1.579",
+ "scm": "github.com",
+ "sha1": "rve+uWP06g2wKH15oTnOR8JiCS4=",
+ "title": "Dynatrace Application Monitoring Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/dynatrace-dashboard/2.0.5/dynatrace-dashboard.hpi",
+ "version": "2.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dynatrace+Plugin"
+ },
+ "ease-plugin": {
+ "buildDate": "Mar 30, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "oleksiyp",
+ "email": "oleksiy.pylypenko@gmail.com",
+ "name": "Oleksiy Pylypenko"
+ },
+ {
+ "developerId": "kwilson6744",
+ "email": "kwilson@apperian.com",
+ "name": "Kevin Wilson"
+ }
+ ],
+ "excerpt": "This plugin adds the ability to publish updates of mobile applications to <a href='http://www.apperian.com/'>Apperian EASE</a>&reg; as part of the Jenkins build process.",
+ "gav": "org.jenkins-ci.plugins:ease-plugin:1.2.12",
+ "labels": [
+ "upload"
+ ],
+ "name": "ease-plugin",
+ "previousTimestamp": "2016-02-07T15:17:26.00Z",
+ "previousVersion": "1.2.11",
+ "releaseTimestamp": "2016-03-30T16:21:28.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "+1kf6KkwL/loUV3A1v9rVKgyBs0=",
+ "title": "EASE Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ease-plugin/1.2.12/ease-plugin.hpi",
+ "version": "1.2.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EASE+Plugin"
+ },
+ "easyant": {
+ "buildDate": "Jan 31, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jboudart",
+ "name": "Jean Louis Boudart"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to invoke <a href='http://ant.apache.org/easyant/'>Apache EasyAnt</a> build script as the main build step.",
+ "gav": "org.jvnet.hudson.plugins:easyant:1.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "easyant",
+ "previousTimestamp": "2009-03-30T08:22:08.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2010-01-31T08:49:56.00Z",
+ "requiredCore": "1.319",
+ "scm": "svn.dev.java.net",
+ "sha1": "w2JIOKAlcG3bQIMrSJJXKtgvddM=",
+ "title": "Hudson EasyAnt plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/easyant/1.1/easyant.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EasyAnt+Plugin"
+ },
+ "ec2": {
+ "buildDate": "Oct 02, 2016",
+ "dependencies": [
+ {
+ "name": "node-iterator-api",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.11.37"
+ },
+ {
+ "name": "aws-credentials",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "bouncycastle-api",
+ "optional": false,
+ "version": "1.648.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "francisu",
+ "email": "fupton@talend.com",
+ "name": "Francis Upton IV"
+ },
+ {
+ "developerId": "johnnyshields",
+ "email": "shields@kkvesper.jp",
+ "name": "Johnny Shields"
+ },
+ {
+ "developerId": "kohsuke",
+ "email": "kkawaguchi@cloudbees.com",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "Allow Jenkins to start slaves on <a href='http://aws.amazon.com/ec2/'>EC2</a> or <a href='https://www.eucalyptus.com/'>Eucalyptus</a> on demand, and kill them as they get unused.",
+ "gav": "org.jenkins-ci.plugins:ec2:1.36",
+ "labels": [
+ "cluster"
+ ],
+ "name": "ec2",
+ "previousTimestamp": "2016-06-30T10:07:28.00Z",
+ "previousVersion": "1.35",
+ "releaseTimestamp": "2016-10-02T08:33:36.00Z",
+ "requiredCore": "1.651.3",
+ "scm": "github.com",
+ "sha1": "L7eaDo9bSYEjTZBBRB1O5gVNk98=",
+ "title": "Amazon EC2 plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ec2/1.36/ec2.hpi",
+ "version": "1.36",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+EC2+Plugin"
+ },
+ "ec2-cloud-axis": {
+ "buildDate": "Nov 19, 2013",
+ "dependencies": [
+ {
+ "name": "ec2",
+ "optional": false,
+ "version": "1.19"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ifnazar",
+ "name": "Igor Nazar"
+ },
+ {
+ "developerId": "beothorn",
+ "name": "Lucas de Carvalho Bueno Santos"
+ },
+ {
+ "developerId": "taksan",
+ "name": "Gabriel Takeuchi"
+ }
+ ],
+ "excerpt": "Turn your jenkins into a Ec2 task driver\\! ",
+ "gav": "org.jenkins-ci.plugins:ec2-cloud-axis:1.2",
+ "labels": [
+ "slaves",
+ "cluster"
+ ],
+ "name": "ec2-cloud-axis",
+ "previousTimestamp": "2013-11-07T20:39:40.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2013-11-19T23:15:14.00Z",
+ "requiredCore": "1.538",
+ "scm": "github.com",
+ "sha1": "BoUb6iDD9CBH2+u/WRNBn2bDpAM=",
+ "title": "EC2 Cloud Axis",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ec2-cloud-axis/1.2/ec2-cloud-axis.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EC2+Cloud+Axis"
+ },
+ "ec2-deployment-dashboard": {
+ "buildDate": "May 13, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.16"
+ },
+ {
+ "name": "cloudbees-credentials",
+ "optional": false,
+ "version": "3.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mdonkers",
+ "email": "miel.donkers@codecentric.nl",
+ "name": "Miel Donkers"
+ },
+ {
+ "developerId": "marcelbirkner",
+ "email": "marcel.birkner@codecentric.de",
+ "name": "Marcel Birkner"
+ },
+ {
+ "developerId": "guysbert",
+ "email": "andreas.houben@codecentric.de",
+ "name": "Andreas Houben"
+ }
+ ],
+ "excerpt": "This plugin was developed to help managing the deployment of software artifacts to different environments easily. You configure an artifact repository (like Artifactory or Nexus) and your Amazon EC2 deployment servers. The plugin manages the deployed versions of any artifact from your repository to your server environments (i.e. DEV, TEST, PROD). The plugin works with Amazon EC2 instances. ",
+ "gav": "org.jenkins-ci.plugins:ec2-deployment-dashboard:1.0.10",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "ec2-deployment-dashboard",
+ "previousTimestamp": "2015-05-12T16:03:38.00Z",
+ "previousVersion": "1.0.8",
+ "releaseTimestamp": "2015-05-13T23:18:04.00Z",
+ "requiredCore": "1.570",
+ "scm": "github.com",
+ "sha1": "YjNFoufUqWKJIzNHosJNc7gzwME=",
+ "title": "Deployment Dashboard Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ec2-deployment-dashboard/1.0.10/ec2-deployment-dashboard.hpi",
+ "version": "1.0.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EC2+Deployment+Dashboard+Plugin"
+ },
+ "ec2-fleet": {
+ "buildDate": "May 23, 2016",
+ "dependencies": [
+ {
+ "name": "aws-credentials",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.45"
+ },
+ {
+ "name": "ssh-slaves",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "cyberax",
+ "email": "cyberax@amazon.com",
+ "name": "Aleksei Besogonov"
+ }
+ ],
+ "excerpt": "Support EC2 SpotFleet for Jenkins",
+ "gav": "com.amazon.jenkins.fleet:ec2-fleet:1.0",
+ "labels": [],
+ "name": "ec2-fleet",
+ "releaseTimestamp": "2016-05-23T11:03:02.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "QdsKKDYH9hOfHnvhECSrqBHoDEE=",
+ "title": "EC2 Fleet Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ec2-fleet/1.0/ec2-fleet.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+EC2+Fleet+Plugin"
+ },
+ "eclipse-update-site": {
+ "buildDate": "Sep 27, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This library plugin combines Eclipse update sites from all the installed plugins and expose it as a single update site.",
+ "gav": "org.jenkins-ci.plugins:eclipse-update-site:1.2",
+ "labels": [
+ "library"
+ ],
+ "name": "eclipse-update-site",
+ "previousTimestamp": "2012-09-11T18:28:24.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2012-09-27T15:54:44.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "rW1t3oyaM3X6hSUMXUT4lxoE3oE=",
+ "title": "Eclipse Update Site plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/eclipse-update-site/1.2/eclipse-update-site.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Eclipse+Update+Site+Plugin"
+ },
+ "ecutest": {
+ "buildDate": "Sep 16, 2016",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.37"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "junit",
+ "optional": true,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "cpoenisch",
+ "email": "christian.poenisch@tracetronic.de",
+ "name": "Christian P&ouml;nisch"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='https://www.tracetronic.com/products/ecu-test/'>ECU-TEST</a> and generates reports on automated test execution.",
+ "gav": "de.tracetronic.jenkins.plugins:ecutest:1.12",
+ "labels": [
+ "builder",
+ "report",
+ "external"
+ ],
+ "name": "ecutest",
+ "previousTimestamp": "2016-05-27T18:51:00.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2016-09-16T16:52:56.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "MnzAu4ghmJF8I+e+S+Axn2IIMOA=",
+ "title": "TraceTronic ECU-TEST Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ecutest/1.12/ecutest.hpi",
+ "version": "1.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TraceTronic+ECU-TEST+Plugin"
+ },
+ "eggplant-plugin": {
+ "buildDate": "Apr 21, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gcampb2",
+ "email": "ann.campbell@shawinc.com",
+ "name": "G. Ann Campbell"
+ },
+ {
+ "developerId": "jonathanosx",
+ "email": "jonathan.gillaspie@testplant.com",
+ "name": "Jonathan Gillaspie"
+ },
+ {
+ "developerId": "allen_fisher",
+ "email": "allen.fisher@gmail.com",
+ "name": "Allen Fisher"
+ },
+ {
+ "developerId": "ryantestplant",
+ "email": "ryan.daubert@testplant.com",
+ "name": "Ryan Daubert"
+ },
+ {
+ "developerId": "iantestplant",
+ "email": "ian.parker@testplant.com",
+ "name": "Ian Parker"
+ }
+ ],
+ "excerpt": "This plugin calls eggPlant scripts as a Jenkins Build Action and returns the results to Jenkins for review or further processing.",
+ "gav": "org.jenkins-ci.plugins:eggplant-plugin:2.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "eggplant-plugin",
+ "previousTimestamp": "2014-04-07T13:07:58.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2014-04-21T21:41:00.00Z",
+ "requiredCore": "1.504",
+ "scm": "github.com",
+ "sha1": "0a+YEFCDCPhVLRVtJlyZOmrRISM=",
+ "title": "Jenkins eggPlant plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/eggplant-plugin/2.2/eggplant-plugin.hpi",
+ "version": "2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/eggPlant-plugin"
+ },
+ "elOyente": {
+ "buildDate": "Jul 24, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "isabelFD",
+ "email": "isabel.fd@gmail.com",
+ "name": "Isabel Fernandez Diaz"
+ },
+ {
+ "developerId": "pardogonzalezj",
+ "email": "jlpardo87@gmail.com",
+ "name": "Juan Luis Pardo Gonzalez"
+ },
+ {
+ "developerId": "vanderhallenf",
+ "email": "frank.vanderhallen@gmail.com",
+ "name": "Frank Vanderhallen"
+ }
+ ],
+ "excerpt": "This plug-in adds job triggering based on XMPP Pub/Sub events.",
+ "gav": "com.technicolor:elOyente:1.3",
+ "labels": [
+ "trigger"
+ ],
+ "name": "elOyente",
+ "previousTimestamp": "2013-02-15T18:09:06.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2013-07-24T10:15:06.00Z",
+ "requiredCore": "1.499",
+ "scm": "github.com",
+ "sha1": "RASfVCzk8vJi7lXxU1vwsG5o9vM=",
+ "title": "El Oyente Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/elOyente/1.3/elOyente.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/El+Oyente+Plugin"
+ },
+ "elastic-axis": {
+ "buildDate": "Apr 25, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "taksan",
+ "name": "Gabriel Takeuchi"
+ }
+ ],
+ "excerpt": "This plugin is a power up for the multi configuration jobs allowing you to configure jobs to run on all slaves under a single label. ",
+ "gav": "org.jenkins-ci.plugins:elastic-axis:1.2",
+ "labels": [
+ "slaves",
+ "buildwrapper"
+ ],
+ "name": "elastic-axis",
+ "previousTimestamp": "2013-05-22T08:38:54.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-04-25T15:41:56.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "dhFjQz7+bXhI5zkaPRL4JYV1/+U=",
+ "title": "Elastic Axis",
+ "url": "http://updates.jenkins-ci.org/download/plugins/elastic-axis/1.2/elastic-axis.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Elastic+Axis"
+ },
+ "elasticbox": {
+ "buildDate": "Aug 26, 2016",
+ "compatibleSinceVersion": "4.0.0",
+ "dependencies": [
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.76"
+ },
+ {
+ "name": "github",
+ "optional": false,
+ "version": "1.19.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "oserna3",
+ "email": "serna@elasticbox.com",
+ "name": "Oscar Serna"
+ },
+ {
+ "developerId": "gsanchezu",
+ "email": "guillermo@elasticbox.com",
+ "name": "Guillermo Sanchez Urien"
+ }
+ ],
+ "excerpt": "Provides full integration between Jenkins and ElasticBox ([http://elasticbox.com]). With this plugin, Jenkins can launch, provision, and manage Jenkins slaves on-demand in different cloud providers via ElasticBox. It also provides build steps to deploy and manage your applications, including complex, multi-tier applications that are defined as boxes in ElasticBox. ",
+ "gav": "com.elasticbox.jenkins-ci.plugins:elasticbox:4.1.1",
+ "labels": [
+ "cluster",
+ "buildwrapper",
+ "builder"
+ ],
+ "name": "elasticbox",
+ "previousTimestamp": "2016-07-01T11:18:38.00Z",
+ "previousVersion": "4.1.0",
+ "releaseTimestamp": "2016-08-26T12:52:12.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "luddMrjSRtv9VKFQ6c+IImNolIE=",
+ "title": "ElasticBox CI Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/elasticbox/4.1.1/elasticbox.hpi",
+ "version": "4.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ElasticBox+CI"
+ },
+ "elasticsearch-query": {
+ "buildDate": "Dec 13, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mikee805",
+ "email": "mikee805@aol.com",
+ "name": "Michael Epstein"
+ }
+ ],
+ "excerpt": "Fails a build based upon an <a href='https://www.elastic.co/products/elasticsearch'>elasticsearch</a> query",
+ "gav": "org.jenkins-ci.plugins:elasticsearch-query:1.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "elasticsearch-query",
+ "previousTimestamp": "2015-12-13T15:02:54.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-12-13T23:49:10.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "NATir6OuzKutJdWgq5XgqKg+iYM=",
+ "title": "Elasticsearch Query",
+ "url": "http://updates.jenkins-ci.org/download/plugins/elasticsearch-query/1.2/elasticsearch-query.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Elasticsearch+Query+Plugin"
+ },
+ "email-ext": {
+ "buildDate": "Sep 28, 2016",
+ "dependencies": [
+ {
+ "name": "config-file-provider",
+ "optional": true,
+ "version": "2.7.1"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "analysis-core",
+ "optional": true,
+ "version": "1.54"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "workflow-job",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "davidvanlaatum",
+ "email": "david@vanlaatum.id.au",
+ "name": "David van Laatum"
+ },
+ {
+ "developerId": "slide",
+ "email": "slide.o.mix@gmail.com",
+ "name": "Alex Earl"
+ },
+ {
+ "developerId": "ashlux",
+ "email": "ashlux@gmail.com",
+ "name": "Ash Lux"
+ },
+ {
+ "developerId": "kdsweeney",
+ "name": "Kyle Sweeney"
+ },
+ {
+ "developerId": "krwalker",
+ "email": "krwalker@stellarscience.com",
+ "name": "K. R. Walker"
+ },
+ {
+ "developerId": "ssogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin allows you to configure every aspect of email notifications. You can customize when an email is sent, who should receive it, and what the email says.",
+ "gav": "org.jenkins-ci.plugins:email-ext:2.51",
+ "labels": [
+ "notifier"
+ ],
+ "name": "email-ext",
+ "previousTimestamp": "2016-09-24T12:28:16.00Z",
+ "previousVersion": "2.50",
+ "releaseTimestamp": "2016-09-28T14:46:42.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "7YnR8Xtzj0p5nbHOUtWRfCVpIBM=",
+ "title": "Email Extension Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/email-ext/2.51/email-ext.hpi",
+ "version": "2.51",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin"
+ },
+ "email-ext-recipients-column": {
+ "buildDate": "Apr 18, 2013",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "email-ext",
+ "optional": false,
+ "version": "2.25"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.494"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "boev",
+ "email": "iordan.boev@gmail.com",
+ "name": "Yordan Boev"
+ }
+ ],
+ "excerpt": "This plugin allows you to add a column showing the recipients configured in email-ext-plugin for every project. ",
+ "gav": "org.jenkins-ci.plugins:email-ext-recipients-column:1.0",
+ "labels": [
+ "listview-column",
+ "emailext"
+ ],
+ "name": "email-ext-recipients-column",
+ "releaseTimestamp": "2013-04-18T15:41:08.00Z",
+ "requiredCore": "1.494",
+ "scm": "github.com",
+ "sha1": "YKmedIzspn15QfgcNuezColVRF8=",
+ "title": "Email Ext Recipients Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/email-ext-recipients-column/1.0/email-ext-recipients-column.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Email+Ext+Recipients+Column+Plugin"
+ },
+ "emailext-template": {
+ "buildDate": "Jun 15, 2016",
+ "dependencies": [
+ {
+ "name": "email-ext",
+ "optional": false,
+ "version": "2.43"
+ },
+ {
+ "name": "configurationslicing",
+ "optional": true,
+ "version": "1.45"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "slide"
+ }
+ ],
+ "excerpt": "This plugin allows you to configure templates for email-ext that can be reused across multiple jobs.",
+ "gav": "org.jenkinsci.plugins:emailext-template:1.0",
+ "labels": [
+ "notifier",
+ "emailext"
+ ],
+ "name": "emailext-template",
+ "previousTimestamp": "2015-05-21T00:51:14.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2016-06-15T10:02:38.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "uTWPq9PCR7zNjXHHVPPvfKo6Qfg=",
+ "title": "Email Extension Template Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/emailext-template/1.0/emailext-template.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+Template+Plugin"
+ },
+ "embeddable-build-status": {
+ "buildDate": "Feb 06, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to&amp;nbsp;expose the current status of your build as an image in a fixed URL. You can put this URL into other sites (such as GitHub README) so that people can see the current state of the job (last build) or for a specific build. ",
+ "gav": "org.jenkins-ci.plugins:embeddable-build-status:1.9",
+ "labels": [
+ "ui"
+ ],
+ "name": "embeddable-build-status",
+ "previousTimestamp": "2015-08-31T14:38:30.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2016-02-06T10:52:54.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "3Cn/dUUhPyzytUW6748gH+n+WrU=",
+ "title": "Embeddable Build Status Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/embeddable-build-status/1.9/embeddable-build-status.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Embeddable+Build+Status+Plugin"
+ },
+ "emma": {
+ "buildDate": "Jul 05, 2012",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.1"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.447"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ },
+ {
+ "developerId": "manolo",
+ "email": "manolo@apache.org",
+ "name": "Manuel Carrasco Monino"
+ }
+ ],
+ "excerpt": "This plugin allows you to capture code coverage report from <a href='http://emma.sf.net/'>Emma</a>. Jenkins will generate the trend report of coverage.",
+ "gav": "org.jenkins-ci.plugins:emma:1.29",
+ "labels": [
+ "report"
+ ],
+ "name": "emma",
+ "previousTimestamp": "2012-05-21T22:42:12.00Z",
+ "previousVersion": "1.28",
+ "releaseTimestamp": "2012-07-05T15:49:52.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "hia/Z09EJoxlfEOqQ3mi1QAVuo0=",
+ "title": "Jenkins Emma plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/emma/1.29/emma.hpi",
+ "version": "1.29",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Emma+Plugin"
+ },
+ "emmacoveragecolumn": {
+ "buildDate": "Oct 10, 2011",
+ "dependencies": [
+ {
+ "name": "emma",
+ "optional": false,
+ "version": "1.25"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "danebert",
+ "email": "mathin@mathin.com",
+ "name": "Dan Ebert"
+ }
+ ],
+ "excerpt": "Allows you to add a column that displays line coverage percentages based on EMMA.",
+ "gav": "org.jenkins-ci.plugins:emmacoveragecolumn:0.0.4",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "emmacoveragecolumn",
+ "previousTimestamp": "2011-10-07T16:51:46.00Z",
+ "previousVersion": "0.0.3",
+ "releaseTimestamp": "2011-10-10T13:39:24.00Z",
+ "requiredCore": "1.434",
+ "scm": "github.com",
+ "sha1": "2fbw7e2SKaDM3AwyM+vqQ9Vczmc=",
+ "title": "Emma Line Coverage Column",
+ "url": "http://updates.jenkins-ci.org/download/plugins/emmacoveragecolumn/0.0.4/emmacoveragecolumn.hpi",
+ "version": "0.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Emma+Coverage+Column"
+ },
+ "emotional-jenkins-plugin": {
+ "buildDate": "Nov 30, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "masanobuimai",
+ "name": "Masanobu Imai"
+ }
+ ],
+ "excerpt": "This funny plugin changes the expression of Mr. Jenkins in the background when your builds fail.",
+ "gav": "org.jenkins-ci.plugins:emotional-jenkins-plugin:1.2",
+ "labels": [
+ "ui"
+ ],
+ "name": "emotional-jenkins-plugin",
+ "previousTimestamp": "2011-08-06T22:30:52.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-11-30T18:06:36.00Z",
+ "requiredCore": "1.572",
+ "scm": "github.com",
+ "sha1": "3ByEcIz4a2pV6ZzvFUDTxM+IIb8=",
+ "title": "Emotional Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/emotional-jenkins-plugin/1.2/emotional-jenkins-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Emotional+Jenkins+Plugin"
+ },
+ "enhanced-old-build-discarder": {
+ "buildDate": "Jun 07, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lohandus",
+ "name": "Lohandus T. Ribeiro"
+ },
+ {
+ "developerId": "taksan",
+ "name": "Gabriel Takeuchi"
+ }
+ ],
+ "excerpt": "This plugin adds an strategy to discard old builds only if the build is stable. ",
+ "gav": "org.jenkins-ci.plugins:enhanced-old-build-discarder:1.0",
+ "labels": [],
+ "name": "enhanced-old-build-discarder",
+ "releaseTimestamp": "2013-06-07T17:51:56.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "uops9VutITJdYEcKj3asK9D3h2I=",
+ "title": "Enhanced Old Build Discarder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/enhanced-old-build-discarder/1.0/enhanced-old-build-discarder.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Enhanced+Old+Build+Discarder"
+ },
+ "envfile": {
+ "buildDate": "Aug 05, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ajoajoajo",
+ "email": "ajoajoajo@gmail.com",
+ "name": "Anders Johansson"
+ }
+ ],
+ "excerpt": "This plugin enables you to set environment variables via a file. The file's format must be the standard <a href='http://en.wikipedia.org/wiki/.properties'>Java property file format</a>. Superseded by the [EnvInject Plugin]? The property file is always retrieved from the file system of the Jenkins master node, even in distributed setups with slave nodes. You can reference already defined environment variables both to specify the path to the property file, in a job's configuration, and in property values, in the property file.",
+ "gav": "org.jenkins-ci.plugins:envfile:1.2",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "envfile",
+ "previousTimestamp": "2010-10-20T10:59:24.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2011-08-05T15:16:30.00Z",
+ "requiredCore": "1.403",
+ "scm": "github.com",
+ "sha1": "4sV96798yzxtkfoYEiW6EdEYqgg=",
+ "title": "Jenkins Environment File Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/envfile/1.2/envfile.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Envfile+Plugin"
+ },
+ "envinject": {
+ "buildDate": "Sep 30, 2016",
+ "compatibleSinceVersion": "1.93",
+ "dependencies": [
+ {
+ "name": "ivy",
+ "optional": true,
+ "version": "1.21"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ },
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ },
+ {
+ "developerId": "recena",
+ "email": "recena@gmail.com",
+ "name": "Manuel Recena"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to have an isolated environment for your jobs.",
+ "gav": "org.jenkins-ci.plugins:envinject:1.93.1",
+ "labels": [
+ "buildwrapper",
+ "builder"
+ ],
+ "name": "envinject",
+ "previousTimestamp": "2016-09-26T11:39:32.00Z",
+ "previousVersion": "1.93",
+ "releaseTimestamp": "2016-09-30T15:01:28.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "jmXYtQ+5ENBm7yRC6NG2x3cobEA=",
+ "title": "Environment Injector Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/envinject/1.93.1/envinject.hpi",
+ "version": "1.93.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin"
+ },
+ "environment-dashboard": {
+ "buildDate": "Aug 24, 2015",
+ "dependencies": [
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vipinsthename",
+ "email": "vipinsthename@gmail.com",
+ "name": "Vipin"
+ }
+ ],
+ "excerpt": "This Jenkins plugin creates a custom view which can be used as a dashboard to display which code release versions have been deployed to which test and production environments (or devices). ",
+ "gav": "org.jenkins-ci.plugins:environment-dashboard:1.1.4",
+ "labels": [],
+ "name": "environment-dashboard",
+ "previousTimestamp": "2015-04-07T12:01:18.00Z",
+ "previousVersion": "1.1.3",
+ "releaseTimestamp": "2015-08-24T22:48:38.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "jv1tu4ySR3ashBut+IBQG+zcPKM=",
+ "title": "Environment Dashboard Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/environment-dashboard/1.1.4/environment-dashboard.hpi",
+ "version": "1.1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Environment+dashboard+plugin"
+ },
+ "environment-labels-setter": {
+ "buildDate": "Sep 16, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "Contribute slave labels from environment variable available on slave.",
+ "gav": "org.jenkins-ci.plugins:environment-labels-setter:1.1",
+ "labels": [],
+ "name": "environment-labels-setter",
+ "previousTimestamp": "2014-08-09T09:06:52.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2014-09-16T21:23:06.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "HRCmK1YPbNvC5jamxJ/8oIbIN94=",
+ "title": "Environment labels setter",
+ "url": "http://updates.jenkins-ci.org/download/plugins/environment-labels-setter/1.1/environment-labels-setter.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Environment+labels+setter"
+ },
+ "environment-manager": {
+ "buildDate": "Jun 22, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mattloveparasoft",
+ "email": "matt.love@parasoft.com",
+ "name": "Matt Love"
+ },
+ {
+ "developerId": "danieldominguezparasoft",
+ "email": "daniel.dominguez@parasoft.com",
+ "name": "Daniel Dominguez"
+ }
+ ],
+ "excerpt": "Build steps for managing environments that use <a href='http://www.parasoft.com/'>Parasoft</a> service virtualization.",
+ "gav": "com.parasoft:environment-manager:2.3",
+ "labels": [
+ "deployment"
+ ],
+ "name": "environment-manager",
+ "previousTimestamp": "2016-05-18T15:40:30.00Z",
+ "previousVersion": "2.2",
+ "releaseTimestamp": "2016-06-22T13:09:48.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "pfYlLJUEpyDJtIegQoHGdvnzruc=",
+ "title": "Parasoft Environment Manager",
+ "url": "http://updates.jenkins-ci.org/download/plugins/environment-manager/2.3/environment-manager.hpi",
+ "version": "2.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Environment+Manager+Plugin"
+ },
+ "environment-script": {
+ "buildDate": "Aug 01, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "ivy",
+ "optional": false,
+ "version": "1.26"
+ },
+ {
+ "name": "multi-branch-project-plugin",
+ "optional": false,
+ "version": "0.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jorgenpt",
+ "email": "jorgen.tjerno@mylookout.com",
+ "name": "Jørgen P. Tjernø"
+ },
+ {
+ "developerId": "dawidmalina",
+ "email": "dawidmalina@gmail.com",
+ "name": "Dawid Malinowski"
+ }
+ ],
+ "excerpt": "Allows you to run a script before each build that generates environment variables for it.",
+ "gav": "com.lookout.jenkins:environment-script:1.2.5",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "environment-script",
+ "previousTimestamp": "2016-07-31T01:41:26.00Z",
+ "previousVersion": "1.2.4",
+ "releaseTimestamp": "2016-08-01T20:02:46.00Z",
+ "requiredCore": "1.642.4",
+ "scm": "github.com",
+ "sha1": "KUnWPM+brQvBUk5YldHgKUwul5Y=",
+ "title": "Environment Script Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/environment-script/1.2.5/environment-script.hpi",
+ "version": "1.2.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Environment+Script+Plugin"
+ },
+ "escaped-markup-plugin": {
+ "buildDate": "Apr 23, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ssogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin escapes the description of project, user, view, and build to prevent from XSS. ",
+ "gav": "org.jenkins-ci.plugins:escaped-markup-plugin:0.1",
+ "labels": [
+ "ui"
+ ],
+ "name": "escaped-markup-plugin",
+ "releaseTimestamp": "2011-04-23T10:16:40.00Z",
+ "requiredCore": "1.408",
+ "scm": "github.com",
+ "sha1": "+Ze69qQ2ZCZjQbsYAmz0VQh08Co=",
+ "title": "Jenkins Escaped Markup Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/escaped-markup-plugin/0.1/escaped-markup-plugin.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Escaped+Markup+Plugin"
+ },
+ "excludeMatrixParent": {
+ "buildDate": "Jun 08, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ }
+ ],
+ "excerpt": "This plugin exclude flyweight task to be run on given slave.",
+ "gav": "hudson.plugins.excludeMatrixParent:excludeMatrixParent:1.1",
+ "labels": [
+ "slaves"
+ ],
+ "name": "excludeMatrixParent",
+ "previousTimestamp": "2011-02-10T14:23:42.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-06-08T10:23:24.00Z",
+ "requiredCore": "1.391",
+ "scm": "github.com",
+ "sha1": "oW8+KSu5GgLQQReeFCMUzdEfKHQ=",
+ "title": "Exclude flyweight tasks",
+ "url": "http://updates.jenkins-ci.org/download/plugins/excludeMatrixParent/1.1/excludeMatrixParent.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Exclude+flyweight+tasks"
+ },
+ "exclusive-execution": {
+ "buildDate": "Feb 04, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mambu",
+ "email": "marco.ambu+jenkins@gmail.com",
+ "name": "Marco Ambu"
+ },
+ {
+ "developerId": "sata_",
+ "email": "sam@tavakoli.se",
+ "name": "Sam Tavakoli"
+ },
+ {
+ "developerId": "fmiguelez",
+ "email": "fernando.miguelez@gmail.com",
+ "name": "Fernando Miguélez Palomo"
+ }
+ ],
+ "excerpt": "Allows a job to be executed when no other jobs are running.",
+ "gav": "org.jenkins-ci.plugins:exclusive-execution:0.8",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "exclusive-execution",
+ "previousTimestamp": "2011-07-31T15:37:56.00Z",
+ "previousVersion": "0.7",
+ "releaseTimestamp": "2015-02-04T13:09:10.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "ya8OUYp8JISShaxXPey18PVSc58=",
+ "title": "Jenkins Exclusive Execution Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/exclusive-execution/0.8/exclusive-execution.hpi",
+ "version": "0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Exclusive+Execution+Plugin"
+ },
+ "exclusive-label-plugin": {
+ "buildDate": "Jan 18, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "Enable mark which labels are exlusive",
+ "gav": "jenkins.ci.plugins.exclusive.label:exclusive-label-plugin:1.0",
+ "labels": [],
+ "name": "exclusive-label-plugin",
+ "releaseTimestamp": "2013-01-18T12:42:00.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "O+f3OgoJz+TvDcWqSv0gbnpT/ow=",
+ "title": "Exclusive label plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/exclusive-label-plugin/1.0/exclusive-label-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Exclusive+label+plugin"
+ },
+ "export-params": {
+ "buildDate": "Jul 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rin_ne",
+ "email": "rinrin.ne@gmail.com",
+ "name": "rinrinne"
+ }
+ ],
+ "excerpt": "This plugin can export Jenkins provided parameters to file with various formats.",
+ "gav": "org.jenkins-ci.plugins:export-params:1.8",
+ "labels": [
+ "builder"
+ ],
+ "name": "export-params",
+ "previousTimestamp": "2014-04-09T16:16:54.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-07-26T19:20:14.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "TNwHG8w2DF2mBqmJROrD8RF4y40=",
+ "title": "Export Prameters",
+ "url": "http://updates.jenkins-ci.org/download/plugins/export-params/1.8/export-params.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Export+Parameters+Plugin"
+ },
+ "extended-choice-parameter": {
+ "buildDate": "Sep 14, 2016",
+ "dependencies": [
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.19"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.11.2-0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vimil",
+ "name": "Vimil Saju"
+ }
+ ],
+ "excerpt": "Adds extended functionality to Choice parameter.",
+ "gav": "org.jenkins-ci.plugins:extended-choice-parameter:0.75",
+ "labels": [
+ "parameter"
+ ],
+ "name": "extended-choice-parameter",
+ "previousTimestamp": "2016-05-25T05:18:46.00Z",
+ "previousVersion": "0.74",
+ "releaseTimestamp": "2016-09-14T07:58:04.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "g5W9OYaERUzlV4or+lWIDiGBPJk=",
+ "title": "Extended Choice Parameter Plug-In",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extended-choice-parameter/0.75/extended-choice-parameter.hpi",
+ "version": "0.75",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extended+Choice+Parameter+plugin"
+ },
+ "extended-read-permission": {
+ "buildDate": "Oct 05, 2009",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dty",
+ "name": "Dean Yu"
+ }
+ ],
+ "excerpt": "This plugin enables the Extended Read permission in Hudson 1.324 and newer. ",
+ "gav": "org.jvnet.hudson.plugins:extended-read-permission:1.0",
+ "labels": [
+ "user"
+ ],
+ "name": "extended-read-permission",
+ "releaseTimestamp": "2009-10-05T16:45:22.00Z",
+ "requiredCore": "1.324",
+ "scm": "svn.dev.java.net",
+ "sha1": "8HrQOxL0G4XTY9YkLXnutPCnyYs=",
+ "title": "Hudson Extended Read Permission Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extended-read-permission/1.0/extended-read-permission.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extended+Read+Permission+Plugin"
+ },
+ "extensible-choice-parameter": {
+ "buildDate": "Aug 23, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ikedam",
+ "name": "IKEDA Yasuyuki"
+ }
+ ],
+ "excerpt": "This plugin adds &quot;Extensible Choice&quot; as a build parameter.",
+ "gav": "jp.ikedam.jenkins.plugins:extensible-choice-parameter:1.3.2",
+ "labels": [
+ "parameter"
+ ],
+ "name": "extensible-choice-parameter",
+ "previousTimestamp": "2015-06-20T10:47:22.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2015-08-23T11:59:26.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "nBqSxJ+mC8x18ZPYvC3Uk43C6KI=",
+ "title": "Extensible Choice Parameter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extensible-choice-parameter/1.3.2/extensible-choice-parameter.hpi",
+ "version": "1.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extensible+Choice+Parameter+plugin"
+ },
+ "extension-filter": {
+ "buildDate": "Oct 25, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ }
+ ],
+ "excerpt": "This plugin allows to filter features available on a Jenkins instance by disabling some Extensions/Descriptors. ",
+ "gav": "org.jenkins-ci.plugins:extension-filter:1.0",
+ "labels": [],
+ "name": "extension-filter",
+ "releaseTimestamp": "2012-10-25T14:26:18.00Z",
+ "requiredCore": "1.472",
+ "scm": "github.com",
+ "sha1": "LddTtmowN9YDTbf8Cr6v9r+IAss=",
+ "title": "Extension Filter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extension-filter/1.0/extension-filter.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extension+Filter+Plugin"
+ },
+ "extensivetesting": {
+ "buildDate": "Jul 27, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cadorb",
+ "email": "blaise@goldenk.eu",
+ "name": "Blaise Cador"
+ }
+ ],
+ "excerpt": "Allow you to run eXtensive Testing tests before or after a build. ",
+ "gav": "jenkins.xtc:extensivetesting:1.4.4b",
+ "labels": [
+ "report",
+ "external"
+ ],
+ "name": "extensivetesting",
+ "releaseTimestamp": "2016-07-27T16:48:56.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "PeceJPOA41kKwSGJiqYbkEc1VKo=",
+ "title": "Extensive Testing Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extensivetesting/1.4.4b/extensivetesting.hpi",
+ "version": "1.4.4b",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ExtensiveTesting+Plugin"
+ },
+ "external-monitor-job": {
+ "buildDate": "Jul 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "recena"
+ }
+ ],
+ "excerpt": "Adds the ability to monitor the result of externally executed jobs.",
+ "gav": "org.jenkins-ci.plugins:external-monitor-job:1.6",
+ "labels": [
+ "misc",
+ "external"
+ ],
+ "name": "external-monitor-job",
+ "previousTimestamp": "2016-07-12T20:56:58.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2016-07-26T13:17:04.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "/yd6F92mKDYLzau4y34JBO+FFaw=",
+ "title": "External Monitor Job Type Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/external-monitor-job/1.6/external-monitor-job.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Monitoring+external+jobs"
+ },
+ "external-scheduler": {
+ "buildDate": "Apr 30, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@redhat.org",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Delegate scheduler decisions to external application",
+ "gav": "org.jenkins-ci.plugins:external-scheduler:1.0",
+ "labels": [],
+ "name": "external-scheduler",
+ "releaseTimestamp": "2013-04-30T13:07:14.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "YqZKMPb/gTPRE4P7MT3Y0SatlI8=",
+ "title": "External Scheduler Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/external-scheduler/1.0/external-scheduler.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/External+scheduler+plugin"
+ },
+ "external-workspace-manager": {
+ "buildDate": "Sep 10, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-support",
+ "optional": true,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "job-restrictions",
+ "optional": false,
+ "version": "0.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "alexsomai",
+ "email": "somai.alexandru@gmail.com",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "This plugin provides an external workspace management system. It facilitates workspace share and reuse across multiple Jenkins jobs. It eliminates the need to copy, archive or move files. ",
+ "gav": "org.jenkins-ci.plugins:external-workspace-manager:1.1.0",
+ "labels": [
+ "pipeline"
+ ],
+ "name": "external-workspace-manager",
+ "previousTimestamp": "2016-08-21T19:40:00.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-09-10T18:16:38.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "s7fBM5CNgI9QOx8yo7RfY1hEV2o=",
+ "title": "External Workspace Manager Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/external-workspace-manager/1.1.0/external-workspace-manager.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/External+Workspace+Manager+Plugin"
+ },
+ "externalresource-dispatcher": {
+ "buildDate": "Jun 25, 2013",
+ "dependencies": [
+ {
+ "name": "metadata",
+ "optional": false,
+ "version": "1.0b"
+ },
+ {
+ "name": "build-flow-plugin",
+ "optional": false,
+ "version": "0.9"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.424"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rsandell",
+ "email": "robert.sandell@sonymobile.com",
+ "name": "Robert Sandell"
+ },
+ {
+ "developerId": "t_westling",
+ "email": "tomas.westling@sonymobile.com",
+ "name": "Tomas Westling"
+ }
+ ],
+ "excerpt": "This plugin adds support for external resources in Jenkins. An external resource is something external attached to a Jenkins slave and can be locked by a build, which thus gets exclusive access to it, then released after the build is done. Examples of external resources are phones, printers and USB christmas trees. ",
+ "gav": "com.sonyericsson.jenkins.plugins.externalresource:externalresource-dispatcher:1.1.0",
+ "labels": [
+ "slaves",
+ "cli",
+ "android"
+ ],
+ "name": "externalresource-dispatcher",
+ "previousTimestamp": "2012-11-22T17:21:32.00Z",
+ "previousVersion": "1.0b",
+ "releaseTimestamp": "2013-06-25T17:46:40.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "pIVaGDnoGU8ZCrRPHALTl4gzsdc=",
+ "title": "External Resource Dispatcher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/externalresource-dispatcher/1.1.0/externalresource-dispatcher.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/External+Resource+Dispatcher"
+ },
+ "extra-columns": {
+ "buildDate": "Apr 11, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "fredg",
+ "name": "Fred G."
+ }
+ ],
+ "excerpt": "This is a general listview-column plugin that currently contains the following columns: Test Result, Configure Project button, Disable/Enable Project button, Project Description, Build Description, SCM Type, Last/Current Build Console output, Job Type, Build Duration, Build Parameters.",
+ "gav": "org.jenkins-ci.plugins:extra-columns:1.17",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "extra-columns",
+ "previousTimestamp": "2015-12-11T01:18:48.00Z",
+ "previousVersion": "1.16",
+ "releaseTimestamp": "2016-04-11T22:36:22.00Z",
+ "requiredCore": "1.475",
+ "scm": "github.com",
+ "sha1": "8y9Y91n7/Aw47G3pCxzJzTd94J0=",
+ "title": "Extra Columns Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extra-columns/1.17/extra-columns.hpi",
+ "version": "1.17",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extra+Columns+Plugin"
+ },
+ "extra-tool-installers": {
+ "buildDate": "Jan 19, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oleg_nenashev",
+ "email": "nenashev@synopsys.com;o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "Provides additional tool installers. ",
+ "gav": "com.synopsys.arc.jenkinsci:extra-tool-installers:0.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "extra-tool-installers",
+ "previousTimestamp": "2013-08-16T21:58:08.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2014-01-19T12:03:46.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "2AKESMAeeDMGDMwhfWW7z11tdFI=",
+ "title": "Jenkins Extra Tool Installers Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extra-tool-installers/0.3/extra-tool-installers.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extra+Tool+Installers+Plugin"
+ },
+ "extreme-feedback": {
+ "buildDate": "Sep 23, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "emanuelez",
+ "email": "emanuele.zattin@switch-gears.dk",
+ "name": "Emanuele Zattin"
+ },
+ {
+ "developerId": "dvaske",
+ "email": "aske.olsson@switch-gears.dk",
+ "name": "Aske Olsson"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:extreme-feedback:1.7",
+ "labels": [],
+ "name": "extreme-feedback",
+ "previousTimestamp": "2013-10-01T11:10:12.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2015-09-23T09:32:48.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "3WuFbL5+dxm/eM3GVp7HnrFgIJU=",
+ "title": "Extreme Feedback Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extreme-feedback/1.7/extreme-feedback.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extreme+Feedback+Plugin"
+ },
+ "extreme-notification": {
+ "buildDate": "Jul 31, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bkmeneguello",
+ "email": "bruno@meneguello.com",
+ "name": "Bruno Meneguello"
+ }
+ ],
+ "excerpt": "Notifies endpoints about Jenkins events",
+ "gav": "org.jenkins-ci.plugins:extreme-notification:1.2",
+ "labels": [
+ "notifier"
+ ],
+ "name": "extreme-notification",
+ "previousTimestamp": "2015-10-06T15:36:40.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-07-31T23:46:22.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "RqNfnX4QS39CDprH231CJ1OgavA=",
+ "title": "Jenkins Extreme Notification Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/extreme-notification/1.2/extreme-notification.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extreme+Notification+Plugin"
+ },
+ "ez-templates": {
+ "buildDate": "Sep 17, 2016",
+ "dependencies": [
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drekbour",
+ "name": "Marc Carter"
+ },
+ {
+ "developerId": "joelj",
+ "name": "Joel Johnson"
+ }
+ ],
+ "excerpt": "Allows you to use any job as a template for other jobs.",
+ "gav": "org.jenkins-ci.plugins:ez-templates:1.2.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "ez-templates",
+ "previousTimestamp": "2016-09-07T20:54:24.00Z",
+ "previousVersion": "1.2.2",
+ "releaseTimestamp": "2016-09-17T17:34:12.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "2enlK1hELeXipVBm9lHbhIy3UbQ=",
+ "title": "EZ Templates",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ez-templates/1.2.3/ez-templates.hpi",
+ "version": "1.2.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EZ+Templates+Plugin"
+ },
+ "ezwall": {
+ "buildDate": "Mar 20, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "noirbizarre",
+ "email": "noirbizarre+jenkins@gmail.com",
+ "name": "Axel Haustant"
+ }
+ ],
+ "excerpt": "Add a button to display a fullscreen buildwall on each view.",
+ "gav": "org.jenkins-ci.plugins:ezwall:0.3",
+ "labels": [
+ "ui",
+ "report"
+ ],
+ "name": "ezwall",
+ "previousTimestamp": "2012-02-26T05:30:24.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2015-03-20T09:30:44.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "yRAPE/3WV+TLTHmaQIKAh01POsA=",
+ "title": "EzWall Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ezwall/0.3/ezwall.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EzWall+Plugin"
+ },
+ "fabric-beta-publisher": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "egor",
+ "email": "eneliuba@gmail.com",
+ "name": "Egor Neliuba"
+ }
+ ],
+ "excerpt": "Allows users to publish Android apps to <a href='https://docs.fabric.io/android/beta/overview.html'>Fabric Beta</a>",
+ "gav": "egor-n:fabric-beta-publisher:1.4",
+ "labels": [
+ "post-build",
+ "android",
+ "upload"
+ ],
+ "name": "fabric-beta-publisher",
+ "previousTimestamp": "2016-09-12T10:06:50.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-10-05T17:37:34.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "nl/QSEu1zo6+OQoAcN2vGFniM2I=",
+ "title": "Fabric Beta Publisher",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fabric-beta-publisher/1.4/fabric-beta-publisher.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fabric+Beta+Publisher+Plugin"
+ },
+ "fail-the-build-plugin": {
+ "buildDate": "Jul 18, 2011",
+ "compatibleSinceVersion": "0.3",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Set or change the build result to test job configurations - notifiers, publishers, promotions, build pipelines, etc. ",
+ "gav": "org.jenkins-ci.plugins:fail-the-build-plugin:1.0",
+ "labels": [
+ "builder"
+ ],
+ "name": "fail-the-build-plugin",
+ "releaseTimestamp": "2011-07-18T19:19:24.00Z",
+ "requiredCore": "1.396",
+ "scm": "github.com",
+ "sha1": "0MU2dYZlY2ppCyoz+CYlAFiJ5mE=",
+ "title": "Fail The Build Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fail-the-build-plugin/1.0/fail-the-build-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fail+The+Build+Plugin"
+ },
+ "failedJobDeactivator": {
+ "buildDate": "Sep 08, 2015",
+ "dependencies": [
+ {
+ "name": "jobConfigHistory",
+ "optional": false,
+ "version": "2.12"
+ },
+ {
+ "name": "build-failure-analyzer",
+ "optional": false,
+ "version": "1.13.0"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "JochenAFuerbacher",
+ "email": "jochen.fuerbacher@1und1.de",
+ "name": "Jochen A. Fuerbacher"
+ }
+ ],
+ "excerpt": "Allows admins to detect orphaned jobs automatically and deactivate or delete these jobs.",
+ "gav": "de.einsundeins.jenkins.plugins.failedjobdeactivator:failedJobDeactivator:1.2.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "failedJobDeactivator",
+ "previousTimestamp": "2015-08-27T09:57:12.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-09-08T08:44:12.00Z",
+ "requiredCore": "1.607",
+ "scm": "github.com",
+ "sha1": "3/nwhphM8M7i6YiAJGR2os33jr0=",
+ "title": "Failed Job Deactivator",
+ "url": "http://updates.jenkins-ci.org/download/plugins/failedJobDeactivator/1.2.1/failedJobDeactivator.hpi",
+ "version": "1.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FailedJobDeactivator+Plugin"
+ },
+ "favorite": {
+ "buildDate": "Jul 05, 2013",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "lshatzer",
+ "email": "larrys@gmail.com",
+ "name": "Larry Shatzer, Jr."
+ }
+ ],
+ "excerpt": "This plugin allows you to mark a job a favorite.",
+ "gav": "org.jvnet.hudson.plugins:favorite:1.16",
+ "labels": [
+ "user",
+ "misc",
+ "ui",
+ "listview-column"
+ ],
+ "name": "favorite",
+ "previousTimestamp": "2013-07-03T15:11:12.00Z",
+ "previousVersion": "1.15",
+ "releaseTimestamp": "2013-07-05T15:23:24.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "Q7cDbGaaA5NcJSs++IhtO1RGC6k=",
+ "title": "Favorite",
+ "url": "http://updates.jenkins-ci.org/download/plugins/favorite/1.16/favorite.hpi",
+ "version": "1.16",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Favorite+Plugin"
+ },
+ "favorite-view": {
+ "buildDate": "Feb 07, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tom"
+ }
+ ],
+ "excerpt": "An alternative implementation of the tab bar. Users can mark some views as favorites, and these will show up as tabs. Other views are listed in a dropdown. ",
+ "gav": "org.jenkins-ci.plugins:favorite-view:1.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "favorite-view",
+ "releaseTimestamp": "2012-02-07T19:16:38.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "lWM1FpD9J93rASFcHQIaoI8yKnc=",
+ "title": "Favorite View Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/favorite-view/1.0/favorite-view.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Favorite+View+Plugin"
+ },
+ "feature-branch-notifier": {
+ "buildDate": "Nov 16, 2014",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "jenkins-multijob-plugin",
+ "optional": false,
+ "version": "1.9"
+ },
+ {
+ "name": "mercurial",
+ "optional": false,
+ "version": "1.46"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "poolik",
+ "email": "tonis.pool@gmail.com",
+ "name": "Tonis Pool"
+ }
+ ],
+ "excerpt": "Feature Branch Notifier is an alternative solution to launching builds dynamically on different branches. Instead of cloning projects and configuring them to work on different branches, one job's builds will run on branches that have updates. For a more detailed guide / introduction look at my article <a href='http://zeroturnaround.com/rebellabs/things-to-consider-when-featuring-branching-with-continuous-integration/'>on ZeroTurnaround's blog</a> This plugin was created as a result of my BSc thesis, about using Continuous Integration and feature branches together in a project. The full thesis can be retrieved <a href='http://comserv.cs.ut.ee/forms/ati_report/downloader.php?file=023BE4E368E261696E75B79D778A61A1A3D2F1A7'>here</a>, which contains lengthier explanations about the ups and downs of using these two methodologies together and a very detailed introduction to the Feature Branch Notifier plugin. ",
+ "gav": "org.jenkins-ci.plugins:feature-branch-notifier:1.4",
+ "labels": [
+ "scm-related",
+ "trigger"
+ ],
+ "name": "feature-branch-notifier",
+ "previousTimestamp": "2013-11-30T17:10:40.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2014-11-16T14:30:12.00Z",
+ "requiredCore": "1.568",
+ "scm": "bitbucket.org",
+ "sha1": "ujhUZys2PWCor8R+9r1YKUfTmc4=",
+ "title": "Feature branch notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/feature-branch-notifier/1.4/feature-branch-notifier.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Feature+Branch+Notifier+Plugin"
+ },
+ "figlet-buildstep": {
+ "buildDate": "Oct 30, 2015",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "slide"
+ }
+ ],
+ "excerpt": "This plugin allows you to output a simple banner during the build.",
+ "gav": "org.jenkins-ci.plugins:figlet-buildstep:0.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "figlet-buildstep",
+ "previousTimestamp": "2014-04-05T13:21:50.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2015-10-30T05:22:02.00Z",
+ "requiredCore": "1.625.1",
+ "scm": "github.com",
+ "sha1": "k4mii3ZWQ5ZqvOq9n5a2gUK+Wig=",
+ "title": "Figlet Buildstep",
+ "url": "http://updates.jenkins-ci.org/download/plugins/figlet-buildstep/0.2/figlet-buildstep.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Figlet+plugin"
+ },
+ "file-leak-detector": {
+ "buildDate": "Jun 08, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Runtime diagnosis tool for &quot;too many open files&quot; problem.",
+ "gav": "com.cloudbees.jenkins.plugins:file-leak-detector:1.4",
+ "labels": [
+ "misc"
+ ],
+ "name": "file-leak-detector",
+ "previousTimestamp": "2013-09-11T09:06:40.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2015-06-08T12:55:58.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "Xebu5nBEBpSQbE+w0sBJSLzxiUY=",
+ "title": "CloudBees File Leak Detector Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/file-leak-detector/1.4/file-leak-detector.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/File+Leak+Detector+Plugin"
+ },
+ "file-operations": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.41"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pskumar448",
+ "email": "pskumar448@gmail.com",
+ "name": "Suresh Kumar"
+ }
+ ],
+ "excerpt": "This plugin's main goal is to provide File Operations as Build Step. ",
+ "gav": "sp.sd:file-operations:1.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "file-operations",
+ "previousTimestamp": "2016-06-26T10:35:42.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-10-03T22:25:52.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "TCli1x4Lq9UBUj0dKFkVEeKlk2c=",
+ "title": "File Operations Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/file-operations/1.3/file-operations.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/File+Operations+Plugin"
+ },
+ "files-found-trigger": {
+ "buildDate": "Aug 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stevengbrown",
+ "email": "StevenGBrown@gmail.com",
+ "name": "Steven Brown"
+ }
+ ],
+ "excerpt": "Build trigger that polls one or more directories and starts a build if certain files are found within those directories. ",
+ "gav": "org.jenkins-ci.plugins:files-found-trigger:1.4",
+ "labels": [
+ "trigger"
+ ],
+ "name": "files-found-trigger",
+ "previousTimestamp": "2015-02-25T14:47:28.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2015-08-15T13:37:42.00Z",
+ "requiredCore": "1.520",
+ "scm": "github.com",
+ "sha1": "djZlLxSOUV/rHk5OErbKENVDIV0=",
+ "title": "Files Found Trigger",
+ "url": "http://updates.jenkins-ci.org/download/plugins/files-found-trigger/1.4/files-found-trigger.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Files+Found+Trigger"
+ },
+ "filesystem-list-parameter-plugin": {
+ "buildDate": "Sep 05, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "aendter",
+ "email": "aendter83@gmail.com",
+ "name": "Alexander Endter"
+ }
+ ],
+ "excerpt": "This plugin lists file, directory or symlink names of a directory selectable for parameter.",
+ "gav": "aendter.jenkins.plugins:filesystem-list-parameter-plugin:0.0.3",
+ "labels": [
+ "parameter"
+ ],
+ "name": "filesystem-list-parameter-plugin",
+ "previousTimestamp": "2014-06-01T23:57:38.00Z",
+ "previousVersion": "0.0.2",
+ "releaseTimestamp": "2014-09-05T00:24:52.00Z",
+ "requiredCore": "1.520",
+ "scm": "github.com",
+ "sha1": "ymkIkrzvZDhC/rRc4fTuz0Uo/XE=",
+ "title": "Jenkins Filesystem List Parameter Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/filesystem-list-parameter-plugin/0.0.3/filesystem-list-parameter-plugin.hpi",
+ "version": "0.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Filesystem+List+Parameter+Plug-in"
+ },
+ "filesystem_scm": {
+ "buildDate": "Dec 05, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "samngms",
+ "email": "samngms@yahoo.com",
+ "name": "Sam NG"
+ },
+ {
+ "developerId": "kutzi",
+ "email": "kutzi@gmx.de",
+ "name": "Christoph Kutzinski"
+ }
+ ],
+ "excerpt": "Use File System as SCM.",
+ "gav": "hudson.plugins.filesystem_scm:filesystem_scm:1.20",
+ "labels": [
+ "scm"
+ ],
+ "name": "filesystem_scm",
+ "previousTimestamp": "2011-04-02T12:14:38.00Z",
+ "previousVersion": "1.10",
+ "releaseTimestamp": "2011-12-05T19:49:42.00Z",
+ "requiredCore": "1.398",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "cOAR5kIPaGDd6prDZ8DBFCY9zzA=",
+ "title": "File System SCM",
+ "url": "http://updates.jenkins-ci.org/download/plugins/filesystem_scm/1.20/filesystem_scm.hpi",
+ "version": "1.20",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/File+System+SCM"
+ },
+ "findbugs": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.77"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drulli",
+ "email": "ullrich.hafner@gmail.com",
+ "name": "Ulli Hafner"
+ }
+ ],
+ "excerpt": "This plugin generates the trend report for <a href='http://findbugs.sourceforge.net/'>FindBugs</a>, an open source program which uses static analysis to look for bugs in Java code.&amp;nbsp; ",
+ "gav": "org.jvnet.hudson.plugins:findbugs:4.65",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "findbugs",
+ "previousTimestamp": "2016-02-27T23:50:54.00Z",
+ "previousVersion": "4.64",
+ "releaseTimestamp": "2016-06-01T14:37:10.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "5dhExZbr+2DgnFnoZm+T8qqec80=",
+ "title": "FindBugs Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/findbugs/4.65/findbugs.hpi",
+ "version": "4.65",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FindBugs+Plugin"
+ },
+ "fitnesse": {
+ "buildDate": "Jun 26, 2015",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "prime8",
+ "email": "tim bacon at gmail dotcom",
+ "name": "timbacon"
+ }
+ ],
+ "excerpt": "This plugin can be used to both execute and report on <a href='http://fitnesse.org'>FitNesse</a> tests so that they can be integrated into a Jenkins build.",
+ "gav": "org.jenkins-ci.plugins:fitnesse:1.16",
+ "labels": [
+ "report",
+ "builder"
+ ],
+ "name": "fitnesse",
+ "previousTimestamp": "2015-06-22T22:45:08.00Z",
+ "previousVersion": "1.15",
+ "releaseTimestamp": "2015-06-26T09:44:48.00Z",
+ "requiredCore": "1.600",
+ "scm": "github.com",
+ "sha1": "5gkKKH8aiR3Q+HOJQM/rElk8iZ8=",
+ "title": "Jenkins FitNesse plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fitnesse/1.16/fitnesse.hpi",
+ "version": "1.16",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FitNesse+Plugin"
+ },
+ "flaky-test-handler": {
+ "buildDate": "Jan 20, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.2.2"
+ },
+ {
+ "name": "git-client",
+ "optional": true,
+ "version": "1.9.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "seriousamlqz",
+ "email": "qingzhouluo@gmail.com",
+ "name": "Qingzhou Luo"
+ },
+ {
+ "developerId": "jmicco",
+ "email": "jmicco@google.com",
+ "name": "John Micco"
+ }
+ ],
+ "excerpt": "&amp;nbsp;This plugin is used to provide various support for handling flaky tests. It currently supports for Git and Maven.&amp;nbsp;&amp;nbsp;It includes support for the latest version of the Maven surefire plug-in which produces additional&amp;nbsp;data about test flakiness using the new &quot;rerunFailingTestsCount&quot; option. It also supports re-running&amp;nbsp;&amp;nbsp;only failed tests for a failed build at the exact failed Git revision. Finally it aggregates&amp;nbsp;statistics of tests (passes, fails and flakes) over Git revisions. ",
+ "gav": "org.jenkins-ci.plugins:flaky-test-handler:1.0.4",
+ "labels": [
+ "misc",
+ "post-build"
+ ],
+ "name": "flaky-test-handler",
+ "previousTimestamp": "2016-01-16T14:41:08.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2016-01-20T10:29:52.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "cGeU/WS3sTdCPQbOxUEw87ZMBWU=",
+ "title": "Flaky Test Handler plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/flaky-test-handler/1.0.4/flaky-test-handler.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Flaky+Test+Handler+Plugin"
+ },
+ "flashlog-plugin": {
+ "buildDate": "Jan 06, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ddragosd",
+ "email": "ddragosd@gmail.com",
+ "name": "Dragos Dascalita Haut"
+ }
+ ],
+ "excerpt": "Captures Adobe Flash Player logs during a Hudson build in order to save them as build artifacts. Useful to debug unit tests or integration tests.",
+ "gav": "org.jvnet.hudson.plugins:flashlog-plugin:1.0",
+ "labels": [
+ "report"
+ ],
+ "name": "flashlog-plugin",
+ "releaseTimestamp": "2011-01-06T12:07:52.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "F4KFOvCOMEx+gNvZ1hb0UY5aBas=",
+ "title": "Hudson FlashLog Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/flashlog-plugin/1.0/flashlog-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FlashLog+Plugin"
+ },
+ "flexible-publish": {
+ "buildDate": "Jun 06, 2015",
+ "compatibleSinceVersion": "0.15",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "0.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ },
+ {
+ "developerId": "ikedam",
+ "name": "IKEDA Yasuyuki"
+ }
+ ],
+ "excerpt": "Use a publisher more than once. Select the execution order of the publishers. Use <a href='Run Condition Plugin'>run conditions</a> to decide whether a publisher should be run. ",
+ "gav": "org.jenkins-ci.plugins:flexible-publish:0.15.2",
+ "labels": [],
+ "name": "flexible-publish",
+ "previousTimestamp": "2015-03-29T22:46:40.00Z",
+ "previousVersion": "0.15.1",
+ "releaseTimestamp": "2015-06-06T15:00:26.00Z",
+ "requiredCore": "1.425",
+ "scm": "github.com",
+ "sha1": "ZOmUwwDj90JnF98IIeSnczDGToI=",
+ "title": "Flexible Publish Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/flexible-publish/0.15.2/flexible-publish.hpi",
+ "version": "0.15.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Flexible+Publish+Plugin"
+ },
+ "flow": {
+ "buildDate": "Oct 31, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "flow",
+ "email": "info@startflowing.net",
+ "name": "Flow Technologies"
+ }
+ ],
+ "excerpt": "Get true visibility of your processes - letting you see bottlenecks, instability and what change to make next. [http://startflowing.net]. Drag and drop your existing Jenkins jobs to form processes ",
+ "gav": "org.jenkins-ci.plugins:flow:1.3",
+ "labels": [
+ "post-build",
+ "builder",
+ "trigger",
+ "ui"
+ ],
+ "name": "flow",
+ "previousTimestamp": "2013-07-18T16:14:42.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2013-10-31T20:13:36.00Z",
+ "requiredCore": "1.450",
+ "scm": "github.com",
+ "sha1": "4k8LqsLYWaOV4sQE07UHj3JkcAA=",
+ "title": "FLOW Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/flow/1.3/flow.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FLOW+Plugin"
+ },
+ "flyway-runner": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pskumar448",
+ "email": "pskumar448@gmail.com",
+ "name": "Suresh Kumar"
+ }
+ ],
+ "excerpt": "Adds Flyway as an available build step. See Flyway documentation at <a href='https://flywaydb.org/documentation/'>https://flywaydb.org/documentation/</a> Use Jenkins credentials support, in next release passing username &amp; password as plain text will be removed. ",
+ "gav": "sp.sd:flyway-runner:1.5",
+ "labels": [
+ "builder"
+ ],
+ "name": "flyway-runner",
+ "previousTimestamp": "2016-07-28T22:09:14.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-10-03T08:53:20.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "MJDTvuWaxJN5zc7qKoT8NDFX6BI=",
+ "title": "Flyway Runner",
+ "url": "http://updates.jenkins-ci.org/download/plugins/flyway-runner/1.5/flyway-runner.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Flyway+Runner+Plugin"
+ },
+ "fogbugz": {
+ "buildDate": "Aug 24, 2015",
+ "dependencies": [
+ {
+ "name": "envinject",
+ "optional": false,
+ "version": "1.92.1"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pliljenberg",
+ "email": "pliljenberg@gmail.com",
+ "name": "Peter Liljenberg"
+ },
+ {
+ "developerId": "maikelwever",
+ "email": "maikel@maikelwever.nl",
+ "name": "Maikel Wever"
+ },
+ {
+ "developerId": "bubenkoff",
+ "email": "bubenkoff@gmail.com",
+ "name": "Anatoly Bubenkov"
+ },
+ {
+ "developerId": "dzittersteyn",
+ "email": "zittersteyn@gmail.com",
+ "name": "Dirk Zittersteyn"
+ }
+ ],
+ "excerpt": "This plugin integrates&amp;nbsp;<a href='http://www.fogcreek.com/fogbugz/'>FogBugz</a>&amp;nbsp;with Jenkins.",
+ "gav": "org.jenkins-ci.plugins:fogbugz:2.2.17",
+ "labels": [
+ "external",
+ "scm-related",
+ "misc"
+ ],
+ "name": "fogbugz",
+ "previousTimestamp": "2015-08-24T13:16:54.00Z",
+ "previousVersion": "2.2.16",
+ "releaseTimestamp": "2015-08-24T13:25:06.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "yw5N6Myka3qb4tOE6g2hNZ78n4o=",
+ "title": "Fogbugz plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fogbugz/2.2.17/fogbugz.hpi",
+ "version": "2.2.17",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fogbugz+Plugin"
+ },
+ "form-element-path": {
+ "buildDate": "Jul 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vincent"
+ }
+ ],
+ "excerpt": "This plugin adds distinctive {{path}} attributes to every form elements inside Jenkins so that automated test programs like Selenium can be used more effectively to automate/test Jenkins.",
+ "gav": "org.jenkins-ci.plugins:form-element-path:1.6",
+ "labels": [],
+ "name": "form-element-path",
+ "previousTimestamp": "2015-05-21T10:10:48.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2016-07-08T12:52:52.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "3kTl4hsYLrhNhGwxxW/b13Dq40k=",
+ "title": "Form element path plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/form-element-path/1.6/form-element-path.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Form+Element+Path+Plugin"
+ },
+ "fortify-cloudscan-jenkins-plugin": {
+ "buildDate": "Oct 06, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "steve.springett@owasp.org",
+ "name": "Steve Springett"
+ }
+ ],
+ "excerpt": "This plug-in provides easy configuration of HP Fortify CloudScan jobs.",
+ "gav": "org.jenkins-ci.plugins:fortify-cloudscan-jenkins-plugin:1.3.1",
+ "labels": [],
+ "name": "fortify-cloudscan-jenkins-plugin",
+ "previousTimestamp": "2016-03-23T17:16:18.00Z",
+ "previousVersion": "1.3.0",
+ "releaseTimestamp": "2016-10-06T21:27:44.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "DAX6d+ncUq6Uo9oI41oPOR2evDE=",
+ "title": "Fortify CloudScan Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fortify-cloudscan-jenkins-plugin/1.3.1/fortify-cloudscan-jenkins-plugin.hpi",
+ "version": "1.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fortify+CloudScan+Plugin"
+ },
+ "fortify-on-demand-uploader": {
+ "buildDate": "Apr 28, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ryancblack",
+ "email": "ryanblack@gmail.com",
+ "name": "Ryan Black"
+ },
+ {
+ "developerId": "michael-a-marshall",
+ "email": "michaelmarshallatwork@gmail.com",
+ "name": "Michael Marshall"
+ }
+ ],
+ "excerpt": "This plugin provides a post build action for submitting code to HPE Security Fortify on Demand&amp;nbsp;for security assessment.&amp;nbsp;",
+ "gav": "org.jenkins-ci.plugins:fortify-on-demand-uploader:1.10",
+ "labels": [
+ "external",
+ "report",
+ "devops",
+ "misc"
+ ],
+ "name": "fortify-on-demand-uploader",
+ "previousTimestamp": "2016-04-25T16:12:50.00Z",
+ "previousVersion": "1.09",
+ "releaseTimestamp": "2016-04-28T15:53:50.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "wA8w5wFhgwPyGsXDXUvpm9RpZrA=",
+ "title": "Fortify on Demand Uploader Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fortify-on-demand-uploader/1.10/fortify-on-demand-uploader.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fortify+On+Demand+Uploader+Plugin"
+ },
+ "fortify360": {
+ "buildDate": "Apr 08, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "samn"
+ }
+ ],
+ "excerpt": "Fortify 360 FPR post-processing and uploading to Fortify 360 Server",
+ "gav": "org.jvnet.hudson.plugins.fortify360:fortify360:3.81",
+ "labels": [
+ "report",
+ "external"
+ ],
+ "name": "fortify360",
+ "previousTimestamp": "2013-06-27T17:10:16.00Z",
+ "previousVersion": "3.9",
+ "releaseTimestamp": "2013-04-08T14:08:24.00Z",
+ "requiredCore": "1.323",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "jcBF1vnfia4I/gQTSwoTyD6RjIA=",
+ "title": "Fortify 360 Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fortify360/3.81/fortify360.hpi",
+ "version": "3.81",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fortify+360+Plugin"
+ },
+ "fstrigger": {
+ "buildDate": "May 09, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "FSTrigger provides polling mechanisms to monitor a file system and trigger a build if a file or a set of files have changed.",
+ "gav": "org.jenkins-ci.plugins:fstrigger:0.39",
+ "labels": [
+ "trigger"
+ ],
+ "name": "fstrigger",
+ "previousTimestamp": "2013-08-06T15:36:46.00Z",
+ "previousVersion": "0.38",
+ "releaseTimestamp": "2014-05-09T19:49:10.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "1P141zKBdMxI8Rt4fjR0vdeICq0=",
+ "title": "Jenkins Filesystem Trigger Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fstrigger/0.39/fstrigger.hpi",
+ "version": "0.39",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FSTrigger+Plugin"
+ },
+ "ftppublisher": {
+ "buildDate": "Jul 13, 2011",
+ "compatibleSinceVersion": "1.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jacob"
+ }
+ ],
+ "excerpt": "This plugin can be used to upload project artifacts and whole directories to an ftp server.",
+ "gav": "org.jvnet.hudson.plugins:ftppublisher:1.2",
+ "labels": [
+ "upload"
+ ],
+ "name": "ftppublisher",
+ "previousTimestamp": "2011-07-05T18:52:08.00Z",
+ "previousVersion": "1.1.4",
+ "releaseTimestamp": "2011-07-13T18:45:12.00Z",
+ "requiredCore": "1.349",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "zDbyUSuiDuAkPwYLMkBlPITrAnc=",
+ "title": "FTP publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ftppublisher/1.2/ftppublisher.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FTP-Publisher+Plugin"
+ },
+ "fxcop-runner": {
+ "buildDate": "Feb 28, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "yasu_s",
+ "name": "Yasuyuki Saito"
+ }
+ ],
+ "excerpt": "<a href='http://msdn.microsoft.com/en-us/library/bb429474%28v=vs.80%29.aspx'>FxCopCmd.exe</a> execute plugin. ",
+ "gav": "org.jenkins-ci.plugins:fxcop-runner:1.1",
+ "labels": [
+ "builder",
+ "dotnet"
+ ],
+ "name": "fxcop-runner",
+ "previousTimestamp": "2013-02-26T22:23:42.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-02-28T22:14:02.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "PkZR/RuUUxBYwxwVwhg8qd7xxWY=",
+ "title": "Jenkins FxCop Runner plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/fxcop-runner/1.1/fxcop-runner.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FxCop+Runner+Plugin"
+ },
+ "gallio": {
+ "buildDate": "Aug 14, 2014",
+ "dependencies": [
+ {
+ "name": "xunit",
+ "optional": false,
+ "version": "1.90"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pmiossec",
+ "name": "Philippe Miossec"
+ },
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to publish <a href='http://www.gallio.org/'>Gallio</a>/<a href='http://www.mbunit.com/'>MbUnit</a> test results",
+ "gav": "org.jenkins-ci.plugins:gallio:1.8",
+ "labels": [
+ "report"
+ ],
+ "name": "gallio",
+ "previousTimestamp": "2014-08-14T11:46:46.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2014-08-14T17:46:56.00Z",
+ "requiredCore": "1.565.1",
+ "scm": "github.com",
+ "sha1": "5xxusEGGohJHCAHttXftGoeDvqQ=",
+ "title": "Jenkins Gallio plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gallio/1.8/gallio.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gallio+Plugin"
+ },
+ "gant": {
+ "buildDate": "Jan 29, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin allows Hudson to invoke <a href='http://groovy.codehaus.org/Gant'>Gant</a> build script as the main build step.",
+ "gav": "org.jvnet.hudson.plugins:gant:1.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "gant",
+ "previousTimestamp": "2008-07-07T18:44:12.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2010-01-29T21:34:50.00Z",
+ "requiredCore": "1.319",
+ "scm": "svn.dev.java.net",
+ "sha1": "EbRJgnSdzfxWxHLmm3puSM6fXRU=",
+ "title": "Hudson Gant plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gant/1.2/gant.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gant+Plugin"
+ },
+ "gatling": {
+ "buildDate": "May 19, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "1.14"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.14"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.14"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "slandelle",
+ "email": "slandelle@gatling.io",
+ "name": "Stephane Landelle"
+ },
+ {
+ "developerId": "pdalpra",
+ "name": "Pierre Dal-Pra"
+ },
+ {
+ "developerId": "blemale",
+ "name": "Bastien Lemale"
+ },
+ {
+ "developerId": "gcoutant",
+ "name": "Gregory Coutant"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://gatling-tool.org'>Gatling</a>, an Open Source stress tool, with Jenkins.",
+ "gav": "org.jenkins-ci.plugins:gatling:1.2.0",
+ "labels": [
+ "external"
+ ],
+ "name": "gatling",
+ "previousTimestamp": "2016-04-14T17:24:18.00Z",
+ "previousVersion": "1.1.2",
+ "releaseTimestamp": "2016-05-19T12:40:32.00Z",
+ "requiredCore": "1.651.2",
+ "scm": "github.com",
+ "sha1": "W2ICDA9JfBA8MddRaqtspyZKyTE=",
+ "title": "Gatling Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gatling/1.2.0/gatling.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gatling+Plugin"
+ },
+ "gcal": {
+ "buildDate": "Nov 04, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "name": "Arnaud Lacour"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin publishes build records over to <a href='http://www.google.com/calendar/'>Google Calendar</a>",
+ "gav": "org.jvnet.hudson.plugins:gcal:0.4",
+ "labels": [
+ "external",
+ "notifier"
+ ],
+ "name": "gcal",
+ "previousTimestamp": "2009-12-28T19:04:52.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2011-11-04T12:29:46.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "pV42CD4Q5IHFVcG6t7TbEmyTREE=",
+ "title": "Google Calendar plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gcal/0.4/gcal.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Calendar+Plugin"
+ },
+ "gcloud-sdk": {
+ "buildDate": "Jul 10, 2015",
+ "dependencies": [
+ {
+ "name": "google-oauth-plugin",
+ "optional": false,
+ "version": "0.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jrluis",
+ "email": "jrluis@gmail.com",
+ "name": "João Luís"
+ }
+ ],
+ "excerpt": "Allows users to invoke gcloud tools with jenkins credentials",
+ "gav": "com.byclosure.jenkins.plugins:gcloud-sdk:0.0.1",
+ "labels": [
+ "builder",
+ "buildwrapper"
+ ],
+ "name": "gcloud-sdk",
+ "releaseTimestamp": "2015-07-10T13:23:30.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "wbFdM2bB7ZI1803sXbD7iIIg+5U=",
+ "title": "GCloud SDK Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gcloud-sdk/0.0.1/gcloud-sdk.hpi",
+ "version": "0.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GCloud+SDK+Plugin"
+ },
+ "gcm-notification": {
+ "buildDate": "Nov 20, 2012",
+ "dependencies": [
+ {
+ "name": "instant-messaging",
+ "optional": false,
+ "version": "1.23"
+ },
+ {
+ "name": "analysis-core",
+ "optional": true,
+ "version": "1.0"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ },
+ {
+ "name": "ci-game",
+ "optional": true,
+ "version": "1.16"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "orrc",
+ "email": "chris@orr.me.uk",
+ "name": "Christopher Orr"
+ }
+ ],
+ "excerpt": "Sends build notifications to Android devices using the Google Cloud Messaging (GCM) service.",
+ "gav": "org.jenkins-ci.plugins:gcm-notification:1.0",
+ "labels": [
+ "notifier",
+ "android"
+ ],
+ "name": "gcm-notification",
+ "releaseTimestamp": "2012-11-20T01:43:02.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "a9ppScyuzXAzq+KfKuu4zFk1pmY=",
+ "title": "Google Cloud Messsaging Notification Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gcm-notification/1.0/gcm-notification.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GCM+Notification+Plugin"
+ },
+ "gearman-plugin": {
+ "buildDate": "Mar 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "zaro0508",
+ "email": "zaro0508@gmail.com",
+ "name": "Khai Do"
+ }
+ ],
+ "excerpt": "This plugin uses <a href='http://www.gearman.org'>Gearman</a>&amp;nbsp;to support multiple Jenkins masters.&amp;nbsp; ",
+ "gav": "org.jenkins-ci.plugins:gearman-plugin:0.2.0",
+ "labels": [
+ "cluster"
+ ],
+ "name": "gearman-plugin",
+ "previousTimestamp": "2015-10-09T23:44:24.00Z",
+ "previousVersion": "0.1.3",
+ "releaseTimestamp": "2016-03-21T18:25:04.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "NrsSHrxE03I7aqgso5AXQr99M3s=",
+ "title": "Gearman Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gearman-plugin/0.2.0/gearman-plugin.hpi",
+ "version": "0.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gearman+Plugin"
+ },
+ "gem-publisher": {
+ "buildDate": "Jul 22, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "arangamani",
+ "name": "Kannan Manickam"
+ }
+ ],
+ "excerpt": "This plugin lets you publish rubygems to rubygems.org using their API.",
+ "gav": "net.arangamani.jenkins:gem-publisher:1.0",
+ "labels": [],
+ "name": "gem-publisher",
+ "releaseTimestamp": "2013-07-22T22:57:44.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "yhwKmmfXgUBE0BrluXWEQ2LynFo=",
+ "title": "Gem Publisher Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gem-publisher/1.0/gem-publisher.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gem+Publisher+Plugin"
+ },
+ "gerrit-trigger": {
+ "buildDate": "Aug 17, 2016",
+ "dependencies": [
+ {
+ "name": "rebuild",
+ "optional": true,
+ "version": "1.25"
+ },
+ {
+ "name": "git-client",
+ "optional": true,
+ "version": "1.11.1"
+ },
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.3"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.14"
+ },
+ {
+ "name": "rabbitmq-consumer",
+ "optional": true,
+ "version": "2.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rsandell",
+ "email": "robert.sandell@cloudbees.com",
+ "name": "Robert Sandell"
+ },
+ {
+ "developerId": "twestling",
+ "email": "tomas.westling@sonymobile.com",
+ "name": "Tomas Westling"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins to <a href='http://code.google.com/p/gerrit/'>Gerrit</a> code review for triggering builds when a &quot;patch set&quot; is created. \\\\ ",
+ "gav": "com.sonyericsson.hudson.plugins.gerrit:gerrit-trigger:2.22.0",
+ "labels": [
+ "trigger"
+ ],
+ "name": "gerrit-trigger",
+ "previousTimestamp": "2016-06-07T12:48:28.00Z",
+ "previousVersion": "2.21.1",
+ "releaseTimestamp": "2016-08-17T17:42:34.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "REcpZZ64HaoHqkhqGh8PyuHTNOk=",
+ "title": "Gerrit Trigger",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gerrit-trigger/2.22.0/gerrit-trigger.hpi",
+ "version": "2.22.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger"
+ },
+ "gerrit-verify-status-reporter": {
+ "buildDate": "Oct 05, 2016",
+ "compatibleSinceVersion": "1.0",
+ "dependencies": [
+ {
+ "name": "gerrit-trigger",
+ "optional": false,
+ "version": "2.22.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "zaro0508",
+ "email": "zaro0508@gmail.com",
+ "name": "Khai Do"
+ }
+ ],
+ "excerpt": "Allows Jenkins jobs to send test results to Gerrit instances that use the verify-status plugin",
+ "gav": "org.jenkins-ci.plugins:gerrit-verify-status-reporter:0.0.3",
+ "labels": [
+ "post-build",
+ "notifier"
+ ],
+ "name": "gerrit-verify-status-reporter",
+ "previousTimestamp": "2016-09-29T10:30:54.00Z",
+ "previousVersion": "0.0.2",
+ "releaseTimestamp": "2016-10-05T23:29:52.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "+XvE87ohPBph6SvK6kVg1fCatjY=",
+ "title": "Gerrit Verify Status Reporter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gerrit-verify-status-reporter/0.0.3/gerrit-verify-status-reporter.hpi",
+ "version": "0.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Verify+Status+Reporter+Plugin"
+ },
+ "ghprb": {
+ "buildDate": "Aug 03, 2016",
+ "dependencies": [
+ {
+ "name": "build-flow-plugin",
+ "optional": true,
+ "version": "0.12"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.72.1"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.2.4"
+ },
+ {
+ "name": "github",
+ "optional": false,
+ "version": "1.9.1"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.21"
+ },
+ {
+ "name": "plain-credentials",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "ssh-agent",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.39"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "janinko",
+ "email": "jbrazdil@redhat.com",
+ "name": "Honza Brázdil"
+ },
+ {
+ "developerId": "valdisrigdon",
+ "name": "Valdis Rigdon"
+ }
+ ],
+ "excerpt": "This plugin builds pull requests in github and report results.",
+ "gav": "org.jenkins-ci.plugins:ghprb:1.33.1",
+ "labels": [
+ "trigger"
+ ],
+ "name": "ghprb",
+ "previousTimestamp": "2016-07-19T09:55:48.00Z",
+ "previousVersion": "1.33.0",
+ "releaseTimestamp": "2016-08-03T21:52:00.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "S5mEM/lURB4MslnaIoY6vdOJH7M=",
+ "title": "GitHub Pull Request Builder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ghprb/1.33.1/ghprb.hpi",
+ "version": "1.33.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin"
+ },
+ "git": {
+ "buildDate": "Sep 10, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.17"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.12"
+ },
+ {
+ "name": "git-client",
+ "optional": false,
+ "version": "2.0.0"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.7.1"
+ },
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.27"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": true,
+ "version": "2.4"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.11"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.4"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": false,
+ "version": "1.14.2"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "MarkEWaite",
+ "email": "mark.earl.waite@gmail.com",
+ "name": "Mark Waite"
+ }
+ ],
+ "excerpt": "This plugin allows use of <a href='http://git-scm.com/'>Git</a> as a build SCM, including repository browsers for several providers. A recent Git runtime is required (1.7.9 minimum, 1.8.x recommended). Interaction with the Git runtime is performed by the use of the [JENKINS:Git Client Plugin], which is only tested on official <a href='http://git-scm.com/'>git client</a>. Use exotic installations at your own risk.",
+ "gav": "org.jenkins-ci.plugins:git:3.0.0",
+ "labels": [
+ "scm"
+ ],
+ "name": "git",
+ "previousTimestamp": "2016-09-02T13:05:02.00Z",
+ "previousVersion": "2.6.0",
+ "releaseTimestamp": "2016-09-10T22:07:04.00Z",
+ "requiredCore": "1.625",
+ "scm": "github.com",
+ "sha1": "zKdc19XXqxSyKuLcvXFk3HsCfmA=",
+ "title": "Jenkins Git plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git/3.0.0/git.hpi",
+ "version": "3.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin"
+ },
+ "git-changelog": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3.5"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "paulwellnerbou",
+ "email": "paul@wellnerbou.de",
+ "name": "Paul Wellner Bou"
+ },
+ {
+ "developerId": "tomasbjerre",
+ "email": "tomas.bjerre85@gmail.com",
+ "name": "Tomas Bjerre"
+ }
+ ],
+ "excerpt": "Extracts a changelog out of commit messages between two GIT revisions, the latest release tags are searched automatically. This changelog can be postprocessed and converted to either an human readable git changelog listing all commits, or a JIRA filter URL. ",
+ "gav": "de.wellnerbou.jenkins:git-changelog:1.39",
+ "labels": [
+ "scm-related",
+ "report"
+ ],
+ "name": "git-changelog",
+ "previousTimestamp": "2016-08-11T17:22:56.00Z",
+ "previousVersion": "1.37",
+ "releaseTimestamp": "2016-10-05T21:26:12.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "3BuNrDsYnLK6zkVRwl6YzlrpPXw=",
+ "title": "Git Changelog",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git-changelog/1.39/git-changelog.hpi",
+ "version": "1.39",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Changelog+Plugin"
+ },
+ "git-chooser-alternative": {
+ "buildDate": "Oct 21, 2013",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "1.4.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kbriggs",
+ "email": "kbriggs@gmail.com",
+ "name": "Kieron Briggs"
+ }
+ ],
+ "excerpt": "An alternative build chooser plugin for the Jenkins git plugin. ",
+ "gav": "org.jenkins-ci.plugins:git-chooser-alternative:1.1",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "git-chooser-alternative",
+ "previousTimestamp": "2013-06-28T12:49:52.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-10-21T16:15:00.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "1DAOesyqBTcMOhxMnPDbep/t8DM=",
+ "title": "Alternative build chooser",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git-chooser-alternative/1.1/git-chooser-alternative.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Chooser+Alternative+Plugin"
+ },
+ "git-client": {
+ "buildDate": "Sep 10, 2016",
+ "dependencies": [
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.12"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "markewaite",
+ "email": "mark.earl.waite@gmail.com",
+ "name": "Mark Waite"
+ }
+ ],
+ "excerpt": "Shared library plugin for other Git related Jenkins plugins.",
+ "gav": "org.jenkins-ci.plugins:git-client:2.0.0",
+ "labels": [
+ "library"
+ ],
+ "name": "git-client",
+ "previousTimestamp": "2016-08-20T22:31:00.00Z",
+ "previousVersion": "1.21.0",
+ "releaseTimestamp": "2016-09-10T14:54:28.00Z",
+ "requiredCore": "1.625",
+ "scm": "github.com",
+ "sha1": "ErHj9TFYYaU08oJ6iQ8XIuazlmI=",
+ "title": "Jenkins Git client plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git-client/2.0.0/git-client.hpi",
+ "version": "2.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Client+Plugin"
+ },
+ "git-notes": {
+ "buildDate": "Apr 23, 2012",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bright"
+ }
+ ],
+ "excerpt": "Add git-notes with Jenkins build status!",
+ "gav": "org.jenkins-ci.ruby-plugins:git-notes:0.0.4",
+ "labels": [],
+ "name": "git-notes",
+ "previousTimestamp": "2012-03-30T16:25:34.00Z",
+ "previousVersion": "0.0.2",
+ "releaseTimestamp": "2012-04-23T16:57:58.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "zijNvkz/zrmJOIzFraSJX2Q31zg=",
+ "title": "git-notes Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git-notes/0.0.4/git-notes.hpi",
+ "version": "0.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/git-notes+Plugin"
+ },
+ "git-parameter": {
+ "buildDate": "Sep 12, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.4"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.11.2-0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "klimas7",
+ "email": "klimas7@gmail.com",
+ "name": "Boguslaw Klimas"
+ },
+ {
+ "developerId": "ngiger",
+ "email": "niklaus.giger@member.fsf.org",
+ "name": "Niklaus Giger"
+ },
+ {
+ "developerId": "lukanus",
+ "name": "Lukasz Milkowski"
+ }
+ ],
+ "excerpt": "This plugin allows you to choose between Git tags or sha1 of your SCM repository so Git Plugin installed is required.",
+ "gav": "org.jenkins-ci.tools:git-parameter:0.7.0",
+ "labels": [
+ "scm-related",
+ "parameter"
+ ],
+ "name": "git-parameter",
+ "previousTimestamp": "2016-08-06T22:12:24.00Z",
+ "previousVersion": "0.6.2",
+ "releaseTimestamp": "2016-09-12T21:02:40.00Z",
+ "requiredCore": "1.651.1",
+ "scm": "github.com",
+ "sha1": "/359d56FbkQEdkTrPOcd0WlzNrQ=",
+ "title": "Git Parameter Plug-In",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git-parameter/0.7.0/git-parameter.hpi",
+ "version": "0.7.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Parameter+Plugin"
+ },
+ "git-server": {
+ "buildDate": "Jul 11, 2016",
+ "dependencies": [
+ {
+ "name": "git-client",
+ "optional": false,
+ "version": "1.11.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin is a library plugin for other plugins to add git server functionality to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:git-server:1.7",
+ "labels": [
+ "library"
+ ],
+ "name": "git-server",
+ "previousTimestamp": "2014-12-18T11:32:08.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2016-07-11T17:02:28.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "LoG8X55ycVzgPjwTtCA/iKb7lvw=",
+ "title": "Jenkins GIT server Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git-server/1.7/git-server.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Server+Plugin"
+ },
+ "git-tag-message": {
+ "buildDate": "Apr 25, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.2.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "orrc",
+ "email": "chris@orr.me.uk",
+ "name": "Christopher Orr"
+ }
+ ],
+ "excerpt": "Exports the name and message for a git tag as environment variables during a build.",
+ "gav": "org.jenkins-ci.plugins:git-tag-message:1.5",
+ "labels": [
+ "misc",
+ "scm-related"
+ ],
+ "name": "git-tag-message",
+ "previousTimestamp": "2015-06-21T18:08:08.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-04-25T23:51:12.00Z",
+ "requiredCore": "1.565.1",
+ "scm": "github.com",
+ "sha1": "JZzjDmL9KXjOvIj8kpF6yPuf9u8=",
+ "title": "Git Tag Message Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git-tag-message/1.5/git-tag-message.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Tag+Message+Plugin"
+ },
+ "git-userContent": {
+ "buildDate": "Oct 14, 2014",
+ "dependencies": [
+ {
+ "name": "git-server",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin exposes $JENKINS_HOME/userContent as Git repository.",
+ "gav": "org.jenkins-ci.plugins:git-userContent:1.4",
+ "labels": [],
+ "name": "git-userContent",
+ "previousTimestamp": "2012-08-29T17:59:54.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2014-10-14T16:40:10.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "Gb4jrVfsYJ3kfDjJ6pokQEd9fbs=",
+ "title": "/userContent in Git plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/git-userContent/1.4/git-userContent.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+userContent+plugin"
+ },
+ "gitbucket": {
+ "buildDate": "Sep 10, 2015",
+ "dependencies": [
+ {
+ "name": "buildtriggerbadge",
+ "optional": true,
+ "version": "2.1"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.0"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.5"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ssogabe",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='https://github.com/takezoe/gitbucket'>GitBucket</a> to your Jenkins.",
+ "gav": "org.jenkins-ci.plugins:gitbucket:0.8",
+ "labels": [
+ "scm",
+ "trigger"
+ ],
+ "name": "gitbucket",
+ "previousTimestamp": "2015-03-31T22:00:20.00Z",
+ "previousVersion": "0.7",
+ "releaseTimestamp": "2015-09-10T20:55:12.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "hrO+a5JyjK5NoPC9MoaJNvD1h4A=",
+ "title": "GitBucket Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gitbucket/0.8/gitbucket.hpi",
+ "version": "0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitBucket+Plugin"
+ },
+ "gitcolony-plugin": {
+ "buildDate": "Dec 29, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mfocaraccio",
+ "email": "mariano@gitcolony.com",
+ "name": "Tech Guy"
+ }
+ ],
+ "excerpt": "This plugin allows your team to get updated live branches and pull requests build status into Gitcolony",
+ "gav": "com.gitcolony.jenkins:gitcolony-plugin:1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "gitcolony-plugin",
+ "previousTimestamp": "2014-12-18T13:18:34.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2014-12-29T19:32:16.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "3DcKw9BnHuVvhS1l/dFWpZZngkU=",
+ "title": "Gitcolony Build Notification plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gitcolony-plugin/1.1/gitcolony-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gitcolony+Plugin"
+ },
+ "github": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.69"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "plain-credentials",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.0"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "lanwen",
+ "name": "Merkushev Kirill"
+ },
+ {
+ "developerId": "KostyaSha",
+ "name": "Kanstantsin Shautsou"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='http://github.com/'>Github</a> projects.",
+ "gav": "com.coravy.hudson.plugins.github:github:1.22.1",
+ "labels": [
+ "external"
+ ],
+ "name": "github",
+ "previousTimestamp": "2016-09-29T10:44:34.00Z",
+ "previousVersion": "1.22.0",
+ "releaseTimestamp": "2016-10-03T16:48:54.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "aOT1tFzWkBWxrExaLl63KZQUUgo=",
+ "title": "GitHub plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/github/1.22.1/github.hpi",
+ "version": "1.22.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Plugin"
+ },
+ "github-api": {
+ "buildDate": "Aug 09, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sgaddipati"
+ }
+ ],
+ "excerpt": "This plugin is a library plugin used by other GitHub related plugins to share the same libraries. This plugin does not have any user visible feature by itself. There's no need to install this plugin manually, although you want to keep it up to date.",
+ "gav": "org.jenkins-ci.plugins:github-api:1.77",
+ "labels": [
+ "library"
+ ],
+ "name": "github-api",
+ "previousTimestamp": "2016-07-01T09:34:00.00Z",
+ "previousVersion": "1.76",
+ "releaseTimestamp": "2016-08-09T17:38:46.00Z",
+ "requiredCore": "1.615",
+ "scm": "github.com",
+ "sha1": "9tz3d4smuxOrjvBqUA2KEFoI8Oo=",
+ "title": "GitHub API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/github-api/1.77/github-api.hpi",
+ "version": "1.77",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+API+Plugin"
+ },
+ "github-branch-source": {
+ "buildDate": "Sep 21, 2016",
+ "dependencies": [
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "github",
+ "optional": false,
+ "version": "1.14.1"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "display-url-api",
+ "optional": false,
+ "version": "0.1"
+ },
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.75"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Multibranch projects and organization folders from GitHub.",
+ "gav": "org.jenkins-ci.plugins:github-branch-source:1.10",
+ "labels": [
+ "scm"
+ ],
+ "name": "github-branch-source",
+ "previousTimestamp": "2016-08-18T08:52:56.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2016-09-21T08:57:58.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "BHYmbvsgAS6UJIOlPKCVNqfBqu8=",
+ "title": "GitHub Branch Source Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/github-branch-source/1.10/github-branch-source.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Branch+Source+Plugin"
+ },
+ "github-oauth": {
+ "buildDate": "May 26, 2016",
+ "compatibleSinceVersion": "1.93",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.0.3"
+ },
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.69"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sag47",
+ "email": "sam.mxracer@gmail.com",
+ "name": "Sam Gleske"
+ }
+ ],
+ "excerpt": "The GitHub Authentication Plugin provides a means of using GitHub for authentication and authorization to secure Jenkins. GitHub Enterprise is also supported.",
+ "gav": "org.jenkins-ci.plugins:github-oauth:0.24",
+ "labels": [
+ "user"
+ ],
+ "name": "github-oauth",
+ "previousTimestamp": "2016-05-01T20:39:00.00Z",
+ "previousVersion": "0.23",
+ "releaseTimestamp": "2016-05-26T01:35:12.00Z",
+ "requiredCore": "1.586",
+ "scm": "github.com",
+ "sha1": "HRoqA9rSTxK6oHQFOwkIdwa+ozk=",
+ "title": "GitHub Authentication plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/github-oauth/0.24/github-oauth.hpi",
+ "version": "0.24",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+OAuth+Plugin"
+ },
+ "github-organization-folder": {
+ "buildDate": "Sep 07, 2016",
+ "dependencies": [
+ {
+ "name": "branch-api",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.14"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "workflow-multibranch",
+ "optional": false,
+ "version": "2.8"
+ },
+ {
+ "name": "workflow-cps-global-lib",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": false,
+ "version": "5.12"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "2.5"
+ },
+ {
+ "name": "github-branch-source",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Pipeline-as-Code support for a whole GitHub organization. Scans all the branches &amp; repositories in GitHub organization and build them via <a href='http://jenkins-ci.org/solutions/pipeline/'>Jenkins pipelines</a> automatically",
+ "gav": "org.jenkins-ci.plugins:github-organization-folder:1.5",
+ "labels": [],
+ "name": "github-organization-folder",
+ "previousTimestamp": "2016-07-28T12:53:56.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-09-07T15:42:42.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "MmXinsDhjJibEgdMqHqtg1Hf3jY=",
+ "title": "GitHub Organization Folder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/github-organization-folder/1.5/github-organization-folder.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Organization+Folder+Plugin"
+ },
+ "github-pr-coverage-status": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.71"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "terma",
+ "email": "artem.stasuk@gmail.com",
+ "name": "Artem Stasiuk"
+ }
+ ],
+ "excerpt": "Code coverage icon for GitHub pull requests",
+ "gav": "org.jenkins-ci.plugins:github-pr-coverage-status:1.0.9",
+ "labels": [
+ "scm-related",
+ "report"
+ ],
+ "name": "github-pr-coverage-status",
+ "previousTimestamp": "2016-09-22T00:40:24.00Z",
+ "previousVersion": "1.0.8",
+ "releaseTimestamp": "2016-09-23T17:31:14.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "lf1pqPMFiUK6S1+p2M5Po2FUCBg=",
+ "title": "GitHub Pull Request Coverage Status",
+ "url": "http://updates.jenkins-ci.org/download/plugins/github-pr-coverage-status/1.0.9/github-pr-coverage-status.hpi",
+ "version": "1.0.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+PR+Coverage+Status+Plugin"
+ },
+ "github-pullrequest": {
+ "buildDate": "Oct 06, 2016",
+ "dependencies": [
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.72"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.38"
+ },
+ {
+ "name": "jucies",
+ "optional": true,
+ "version": "0.2.1"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "email-ext",
+ "optional": true,
+ "version": "2.38.2"
+ },
+ {
+ "name": "block-queued-job",
+ "optional": true,
+ "version": "0.2.0"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.14"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "github",
+ "optional": false,
+ "version": "1.22.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "KostyaSha",
+ "name": "Kanstantsin Shautsou"
+ }
+ ],
+ "excerpt": "Advanced trigger for GitHub Pull Requests.",
+ "gav": "org.jenkins-ci.plugins:github-pullrequest:0.1.0-rc9",
+ "labels": [
+ "emailext",
+ "trigger"
+ ],
+ "name": "github-pullrequest",
+ "previousTimestamp": "2016-08-28T21:52:12.00Z",
+ "previousVersion": "0.1.0-rc8",
+ "releaseTimestamp": "2016-10-06T00:19:24.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "pAOQyq1PLSmBpILY6DiD7Q4Ans8=",
+ "title": "GitHub Integration Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/github-pullrequest/0.1.0-rc9/github-pullrequest.hpi",
+ "version": "0.1.0-rc9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Integration+Plugin"
+ },
+ "github-sqs-plugin": {
+ "buildDate": "Apr 19, 2013",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "1.1.17"
+ },
+ {
+ "name": "github",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.2"
+ },
+ {
+ "name": "github-api",
+ "optional": false,
+ "version": "1.28"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aaronwalker",
+ "name": "Aaron Walker"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='http://github.com/'>Github</a> projects via <a href='http://aws.amazon.com/sqs/'>Amazon's Simple Queue Service</a>",
+ "gav": "com.base2services.jenkins:github-sqs-plugin:1.5",
+ "labels": [
+ "trigger",
+ "external"
+ ],
+ "name": "github-sqs-plugin",
+ "previousTimestamp": "2013-02-04T21:54:22.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2013-04-19T15:39:44.00Z",
+ "requiredCore": "1.451",
+ "scm": "github.com",
+ "sha1": "P7JZVpnIQgg3l3adQsJ4no8OTBE=",
+ "title": "GitHub SQS Build Trigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/github-sqs-plugin/1.5/github-sqs-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+SQS+Plugin"
+ },
+ "gitlab-hook": {
+ "buildDate": "Apr 17, 2016",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.12"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "root"
+ }
+ ],
+ "excerpt": "Enables Gitlab web hooks to be used to trigger SMC polling on Gitlab projects",
+ "gav": "org.jenkins-ci.ruby-plugins:gitlab-hook:1.4.2",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "gitlab-hook",
+ "previousTimestamp": "2016-01-10T15:42:46.00Z",
+ "previousVersion": "1.4.1.1",
+ "releaseTimestamp": "2016-04-17T13:55:00.00Z",
+ "requiredCore": "1.596",
+ "scm": "github.com",
+ "sha1": "8YuYrlANqdAjbGx7+F6y8Z8Kiks=",
+ "title": "Gitlab Hook Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gitlab-hook/1.4.2/gitlab-hook.hpi",
+ "version": "1.4.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gitlab+Hook+Plugin"
+ },
+ "gitlab-logo": {
+ "buildDate": "Aug 06, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sue445",
+ "email": "sue445@sue445.net",
+ "name": "sue445"
+ }
+ ],
+ "excerpt": "Display GitLab Repository Icon on dashboard",
+ "gav": "org.jenkins-ci.plugins:gitlab-logo:1.0.1",
+ "labels": [],
+ "name": "gitlab-logo",
+ "previousTimestamp": "2015-04-09T21:24:50.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2015-08-06T00:50:34.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "q+rNgBtmp3FPtsA42CwUYWrCNWc=",
+ "title": "GitLab Logo Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gitlab-logo/1.0.1/gitlab-logo.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitLab+Logo+Plugin"
+ },
+ "gitlab-merge-request-jenkins": {
+ "buildDate": "Dec 28, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "timols",
+ "email": "tim.olshansky@gmail.com",
+ "name": "Tim Olshansky"
+ }
+ ],
+ "excerpt": "A plugin to build merge requests created in Gitlab. ",
+ "gav": "com.switchfly:gitlab-merge-request-jenkins:2.0.0",
+ "labels": [
+ "scm",
+ "misc"
+ ],
+ "name": "gitlab-merge-request-jenkins",
+ "previousTimestamp": "2015-10-13T10:14:38.00Z",
+ "previousVersion": "1.2.4",
+ "releaseTimestamp": "2015-12-28T16:54:40.00Z",
+ "requiredCore": "1.638",
+ "scm": "github.com",
+ "sha1": "c7Z4ikfUysJ3beplmRg/l2kKcWw=",
+ "title": "Gitlab Merge Request Builder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gitlab-merge-request-jenkins/2.0.0/gitlab-merge-request-jenkins.hpi",
+ "version": "2.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gitlab+Merge+Request+Builder+Plugin"
+ },
+ "gitlab-oauth": {
+ "buildDate": "Sep 19, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mohamed-el-habib",
+ "email": "mohamed.el-habib@digitaslbi.fr",
+ "name": "Mohamed EL HABIB"
+ }
+ ],
+ "excerpt": "The GitLab Authentication Plugin provides a means of using GitLab for authentication and authorization to secure Jenkins. GitLab Enterprise is also supported.",
+ "gav": "org.jenkins-ci.plugins:gitlab-oauth:1.0.9",
+ "labels": [
+ "user"
+ ],
+ "name": "gitlab-oauth",
+ "previousTimestamp": "2016-09-02T14:30:08.00Z",
+ "previousVersion": "1.0.8",
+ "releaseTimestamp": "2016-09-19T18:00:30.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "AyigmA9IDXUY8U3qmikrnWVTRRg=",
+ "title": "Gitlab Authentication plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gitlab-oauth/1.0.9/gitlab-oauth.hpi",
+ "version": "1.0.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitLab+OAuth+Plugin"
+ },
+ "gitlab-plugin": {
+ "buildDate": "Sep 24, 2016",
+ "compatibleSinceVersion": "1.4.0",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "plain-credentials",
+ "optional": true,
+ "version": "1.1"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.0"
+ },
+ {
+ "name": "git-client",
+ "optional": false,
+ "version": "1.19.0"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "coderhugo",
+ "email": "coderhugo@googlemail.com",
+ "name": "Robin Müller"
+ },
+ {
+ "developerId": "owenmehegan",
+ "email": "owen@nerdnetworks.org",
+ "name": "Owen Mehegan"
+ },
+ {
+ "developerId": "omorillo",
+ "email": "omorillovictoria@googlemail.com",
+ "name": "Oscar Salvador Morillo Victoria"
+ }
+ ],
+ "excerpt": "This plugin is a build trigger that allows GitLab to trigger Jenkins builds when code is pushed or a merge request is created. Configuration done on a per-job basis.",
+ "gav": "org.jenkins-ci.plugins:gitlab-plugin:1.4.2",
+ "labels": [
+ "trigger"
+ ],
+ "name": "gitlab-plugin",
+ "previousTimestamp": "2016-09-24T16:10:46.00Z",
+ "previousVersion": "1.4.1",
+ "releaseTimestamp": "2016-09-24T18:16:54.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "hYnqzbOATB18vmkbImaLTn5fjm4=",
+ "title": "GitLab Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gitlab-plugin/1.4.2/gitlab-plugin.hpi",
+ "version": "1.4.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitLab+Plugin"
+ },
+ "global-build-stats": {
+ "buildDate": "May 08, 2016",
+ "dependencies": [
+ {
+ "name": "cloudbees-folder",
+ "optional": false,
+ "version": "4.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dhinske",
+ "email": "david.hinske@gmx.net",
+ "name": "David Hinske"
+ },
+ {
+ "developerId": "fcamblor",
+ "email": "fcamblor+wikihudson@gmail.com",
+ "name": "Frederic Camblor"
+ }
+ ],
+ "excerpt": "Global build stats plugin will allow to gather and display global build result statistics. It is a useful tool allowing to display global hudson build trend over time.",
+ "gav": "org.jenkins-ci.plugins:global-build-stats:1.4",
+ "labels": [
+ "report"
+ ],
+ "name": "global-build-stats",
+ "previousTimestamp": "2012-04-05T21:34:38.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-05-08T20:13:42.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "17qA22Bp0SagjtyMFYPZyfyzGXQ=",
+ "title": "Hudson global-build-stats plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/global-build-stats/1.4/global-build-stats.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Global+Build+Stats+Plugin"
+ },
+ "global-post-script": {
+ "buildDate": "Aug 31, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "orctom",
+ "email": "orctom@gmail.com",
+ "name": "Hao CHEN"
+ }
+ ],
+ "excerpt": "Execute a global configured groovy script after each build of each job managed by the Jenkins. This is typical for cases when you need to do something based on a shared set of parameters, such as triggering downstream jobs managed by the same Jenkins or remote ones based on the parameters been passed to the parameterized jobs. *Notice: jython script support removed since 1.1.0* ",
+ "gav": "org.jenkins-ci.plugins:global-post-script:1.1.3",
+ "labels": [
+ "trigger",
+ "post-build",
+ "groovy-related"
+ ],
+ "name": "global-post-script",
+ "previousTimestamp": "2016-04-27T21:57:06.00Z",
+ "previousVersion": "1.1.2",
+ "releaseTimestamp": "2016-08-31T21:01:40.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "/7F7LqJIgLAWUICE7tzXOPxeUwU=",
+ "title": "Global Post Script Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/global-post-script/1.1.3/global-post-script.hpi",
+ "version": "1.1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Global+Post+Script+Plugin"
+ },
+ "global-variable-string-parameter": {
+ "buildDate": "Sep 17, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "pmaccamp",
+ "email": "pmaccamp@sbcglobal.net",
+ "name": "Patrick McKeown"
+ },
+ {
+ "developerId": "marsbar",
+ "name": "Mario Vuong"
+ }
+ ],
+ "excerpt": "Provides a parameter with support for global node properties via $VARIABLE or $\\{VARIABLE} ",
+ "gav": "org.jenkins-ci.plugins:global-variable-string-parameter:1.2",
+ "labels": [
+ "parameter"
+ ],
+ "name": "global-variable-string-parameter",
+ "previousTimestamp": "2012-11-02T01:21:38.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2013-09-17T21:59:56.00Z",
+ "requiredCore": "1.525",
+ "scm": "github.com",
+ "sha1": "9+lB7G/wV7APbZF+iPn/kc6d5jw=",
+ "title": "Global Variable String Parameter",
+ "url": "http://updates.jenkins-ci.org/download/plugins/global-variable-string-parameter/1.2/global-variable-string-parameter.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Global+Variable+String+Parameter+Plugin"
+ },
+ "gnat": {
+ "buildDate": "Oct 11, 2012",
+ "dependencies": [
+ {
+ "name": "xunit",
+ "optional": false,
+ "version": "1.39"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to integrate <a href='http://www.adacore.com/home/products/gnatpro/toolsuite/tool_partners/'>Gnat</a> features for Ada languages in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:gnat:0.14",
+ "labels": [
+ "report"
+ ],
+ "name": "gnat",
+ "previousTimestamp": "2012-02-14T23:34:40.00Z",
+ "previousVersion": "0.13",
+ "releaseTimestamp": "2012-10-11T18:45:40.00Z",
+ "requiredCore": "1.410",
+ "scm": "github.com",
+ "sha1": "lSvvdGIK13pLiOLEkyjEOug+YUE=",
+ "title": "Jenkins GNAT plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gnat/0.14/gnat.hpi",
+ "version": "0.14",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gnat+Plugin"
+ },
+ "gogs-webhook": {
+ "buildDate": "Sep 05, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.2.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sanderv32",
+ "name": "Alexander Verhaar"
+ }
+ ],
+ "excerpt": "Allows users to use the <a href='https://gogs.io/'>Gogs</a> Webhook",
+ "gav": "org.jenkins-ci.plugins:gogs-webhook:1.0.6",
+ "labels": [
+ "trigger",
+ "pipeline"
+ ],
+ "name": "gogs-webhook",
+ "previousTimestamp": "2016-08-03T21:59:52.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2016-09-05T14:58:34.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "UxLSnCc4AFDBcOP9Sgaak906qJw=",
+ "title": "Jenkins Gogs plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gogs-webhook/1.0.6/gogs-webhook.hpi",
+ "version": "1.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gogs+Webhook+Plugin"
+ },
+ "golang": {
+ "buildDate": "Jun 21, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "orrc",
+ "email": "chris@orr.me.uk",
+ "name": "Christopher Orr"
+ }
+ ],
+ "excerpt": "Automatically installs and sets up the <a href='http://golang.org/'>Go programming language</a> (golang) tools for a build.",
+ "gav": "org.jenkins-ci.plugins:golang:1.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "golang",
+ "previousTimestamp": "2014-06-18T01:44:02.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2014-06-21T15:57:04.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "CxAMLa4+iNpdsb7RTLDyX27tFkM=",
+ "title": "Go Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/golang/1.1/golang.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Go+Plugin"
+ },
+ "google-analytics-usage-reporter": {
+ "buildDate": "Oct 15, 2015",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.3.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "astroilov",
+ "name": "Andrey Stroilov"
+ }
+ ],
+ "excerpt": "This plugin provides automatic reporting of Jenkins usage via Google Analytics.",
+ "gav": "org.jenkins-ci.plugins:google-analytics-usage-reporter:0.4",
+ "labels": [
+ "external"
+ ],
+ "name": "google-analytics-usage-reporter",
+ "previousTimestamp": "2015-09-04T16:08:18.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2015-10-15T20:13:04.00Z",
+ "requiredCore": "1.623",
+ "scm": "github.com",
+ "sha1": "2qlFWe1tR5zwsxHxyb5mzn/Hkss=",
+ "title": "Google Analytics Usage Reporter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-analytics-usage-reporter/0.4/google-analytics-usage-reporter.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Analytics+Usage+Reporter+Plugin"
+ },
+ "google-api-client-plugin": {
+ "buildDate": "May 01, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kazssym",
+ "email": "kazssym@vx68k.org",
+ "name": "Kaz Nishimura"
+ }
+ ],
+ "excerpt": "This plugin provides the <a href='https://github.com/google/google-api-java-client'>Google APIs Client Library for Java</a> to other plugins.",
+ "gav": "org.jenkins-ci.plugins:google-api-client-plugin:2.0-1.20.0",
+ "labels": [
+ "external"
+ ],
+ "name": "google-api-client-plugin",
+ "previousTimestamp": "2015-01-05T10:26:42.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-05-01T11:47:06.00Z",
+ "requiredCore": "1.532",
+ "scm": "bitbucket.org",
+ "sha1": "CUqDEC+IF1Edu1+MVvX9kxdNDig=",
+ "title": "Google APIs Client Library for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-api-client-plugin/2.0-1.20.0/google-api-client-plugin.hpi",
+ "version": "2.0-1.20.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+APIs+Client+Library"
+ },
+ "google-cloud-backup": {
+ "buildDate": "Jan 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "astroilov",
+ "name": "Andrey Stroilov"
+ }
+ ],
+ "excerpt": "Allows local and cloud-storage backups and automatic restores.",
+ "gav": "org.jenkins-ci.plugins:google-cloud-backup:0.6",
+ "labels": [
+ "misc"
+ ],
+ "name": "google-cloud-backup",
+ "previousTimestamp": "2015-12-11T10:35:40.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2016-01-20T15:57:54.00Z",
+ "requiredCore": "1.626",
+ "scm": "github.com",
+ "sha1": "ZFdoGBYTrbNw7m4IlkcBTLtHdYU=",
+ "title": "Google Cloud Backup Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-cloud-backup/0.6/google-cloud-backup.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Cloud+Backup+Plugin"
+ },
+ "google-cloud-health-check": {
+ "buildDate": "Oct 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "astroilov",
+ "name": "Andrey Stroilov"
+ }
+ ],
+ "excerpt": "This plugin provides simple health checks and extension points for additional health checks.",
+ "gav": "org.jenkins-ci.plugins:google-cloud-health-check:0.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "google-cloud-health-check",
+ "previousTimestamp": "2015-09-02T15:41:56.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2015-10-15T20:07:10.00Z",
+ "requiredCore": "1.626",
+ "scm": "github.com",
+ "sha1": "/BgHqbsImC6ldhvZvIO+MTnF/ls=",
+ "title": "Google Health Check Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-cloud-health-check/0.3/google-cloud-health-check.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Health+Check+Plugin"
+ },
+ "google-container-registry-auth": {
+ "buildDate": "Nov 19, 2015",
+ "dependencies": [
+ {
+ "name": "google-oauth-plugin",
+ "optional": false,
+ "version": "0.3"
+ },
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "wzheng2310",
+ "name": "Wei Zheng"
+ }
+ ],
+ "excerpt": "This plugin allows the credential provider to use Google Cloud Platform OAuth Credentials (provided by the <a href='JENKINS:Google OAuth Plugin'>Google OAuth Credentials plugin</a>) to access Docker images from <a href='https://cloud.google.com/tools/container-registry/'>Google Container Registry (GCR)</a>. ",
+ "gav": "org.jenkins-ci.plugins:google-container-registry-auth:0.3",
+ "labels": [],
+ "name": "google-container-registry-auth",
+ "previousTimestamp": "2015-07-14T17:14:04.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2015-11-19T16:02:34.00Z",
+ "requiredCore": "1.596.2",
+ "scm": "github.com",
+ "sha1": "ufVaYf/+aAi/fnqPfF46POnhsZY=",
+ "title": "Google Container Registry Auth Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-container-registry-auth/0.3/google-container-registry-auth.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Container+Registry+Auth+Plugin"
+ },
+ "google-deployment-manager": {
+ "buildDate": "Apr 14, 2016",
+ "dependencies": [
+ {
+ "name": "google-oauth-plugin",
+ "optional": false,
+ "version": "0.4"
+ },
+ {
+ "name": "google-source-plugin",
+ "optional": false,
+ "version": "0.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "reprogrammer",
+ "name": "Mohsen Vakilian"
+ },
+ {
+ "developerId": "mattmoor",
+ "name": "Matt Moore"
+ },
+ {
+ "developerId": "astroilov",
+ "name": "Andrey Stroilov"
+ }
+ ],
+ "excerpt": "This plugin uses <a href='https://cloud.google.com/deployment-manager/'>Google Cloud Deployment Manager</a> to create and delete <a href='https://cloud.google.com'>Google Cloud Platform</a> resources from within Jenkins jobs.",
+ "gav": "org.jenkins-ci.plugins:google-deployment-manager:0.1",
+ "labels": [
+ "deployment"
+ ],
+ "name": "google-deployment-manager",
+ "releaseTimestamp": "2016-04-14T10:31:38.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "wsLt24Jm+U/zA3SsS9S1HdC3U6c=",
+ "title": "Google Deployment Manager Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-deployment-manager/0.1/google-deployment-manager.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Deployment+Manager+Plugin"
+ },
+ "google-git-notes-publisher": {
+ "buildDate": "Oct 15, 2015",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "astroilov",
+ "name": "Andrey Stroilov"
+ }
+ ],
+ "excerpt": "This plugin provides automatic recording of Jenkins build actions to Git Notes.",
+ "gav": "org.jenkins-ci.plugins:google-git-notes-publisher:0.3",
+ "labels": [
+ "scm"
+ ],
+ "name": "google-git-notes-publisher",
+ "previousTimestamp": "2015-09-29T15:40:20.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2015-10-15T19:35:04.00Z",
+ "requiredCore": "1.626",
+ "scm": "github.com",
+ "sha1": "NuKPbCvyNRT5LelqmU+A+5kh4J8=",
+ "title": "Google Git Notes Publisher Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-git-notes-publisher/0.3/google-git-notes-publisher.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Git+Notes+Publisher+Plugin"
+ },
+ "google-login": {
+ "buildDate": "Nov 02, 2015",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "recampbell",
+ "email": "ryan.campbell@gmail.com",
+ "name": "Ryan Campbell"
+ }
+ ],
+ "excerpt": "This is a Jenkins plugin which lets you login to Jenkins with your Google account. Also allows you to restrict access to accounts in a given Google Apps domain. ",
+ "gav": "org.jenkins-ci.plugins:google-login:1.2.1",
+ "labels": [
+ "security",
+ "user"
+ ],
+ "name": "google-login",
+ "previousTimestamp": "2015-10-12T16:20:14.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-11-02T12:40:46.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "FYLbGEzD/Ep5s/JiTI7DOHKkeJc=",
+ "title": "Google Login Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-login/1.2.1/google-login.hpi",
+ "version": "1.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Login+Plugin"
+ },
+ "google-metadata-plugin": {
+ "buildDate": "Oct 29, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mattmoor",
+ "name": "Matt Moore"
+ },
+ {
+ "developerId": "tcnghia",
+ "name": "Nghia Tran"
+ }
+ ],
+ "excerpt": "This plugin provides a basic framework for steps in a build&rsquo;s lifecycle to attach JSON-serializable metadata to a build (as an invisible action). ",
+ "gav": "org.jenkins-ci.plugins:google-metadata-plugin:0.2",
+ "labels": [],
+ "name": "google-metadata-plugin",
+ "previousTimestamp": "2014-03-26T08:17:42.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2014-10-29T11:29:06.00Z",
+ "requiredCore": "1.521",
+ "scm": "github.com",
+ "sha1": "mSoIZkJBBVvwjBSAozwv2gHfD/8=",
+ "title": "Google Metadata plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-metadata-plugin/0.2/google-metadata-plugin.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Metadata+Plugin"
+ },
+ "google-oauth-plugin": {
+ "buildDate": "Oct 16, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.16.1"
+ },
+ {
+ "name": "oauth-credentials",
+ "optional": false,
+ "version": "0.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "astroilov",
+ "name": "Andrey Stroilov"
+ }
+ ],
+ "excerpt": "This plugin implements the OAuth Credentials interfaces for surfacing Google Service Accounts to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:google-oauth-plugin:0.4",
+ "labels": [],
+ "name": "google-oauth-plugin",
+ "previousTimestamp": "2014-10-04T03:58:28.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2015-10-16T12:21:44.00Z",
+ "requiredCore": "1.521",
+ "scm": "github.com",
+ "sha1": "6a/UbyBtIq+X/pKBjkYaiU+mywk=",
+ "title": "Google OAuth Credentials plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-oauth-plugin/0.4/google-oauth-plugin.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+OAuth+Plugin"
+ },
+ "google-play-android-publisher": {
+ "buildDate": "Sep 08, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "google-oauth-plugin",
+ "optional": false,
+ "version": "0.3"
+ },
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "orrc",
+ "email": "chris@orr.me.uk",
+ "name": "Christopher Orr"
+ }
+ ],
+ "excerpt": "Enables Jenkins to upload Android apps (APK files) and related info to Google Play.",
+ "gav": "org.jenkins-ci.plugins:google-play-android-publisher:1.5",
+ "labels": [
+ "android",
+ "upload"
+ ],
+ "name": "google-play-android-publisher",
+ "previousTimestamp": "2015-08-27T21:46:02.00Z",
+ "previousVersion": "1.4.1",
+ "releaseTimestamp": "2016-09-08T20:15:26.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "MURzdkx1drV4SUKGZeLeLE0PEt8=",
+ "title": "Google Play Android Publisher Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-play-android-publisher/1.5/google-play-android-publisher.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Play+Android+Publisher+Plugin"
+ },
+ "google-source-plugin": {
+ "buildDate": "Apr 18, 2016",
+ "dependencies": [
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.3"
+ },
+ {
+ "name": "mercurial",
+ "optional": true,
+ "version": "1.49"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.2.7"
+ },
+ {
+ "name": "git-client",
+ "optional": true,
+ "version": "1.10.2"
+ },
+ {
+ "name": "google-oauth-plugin",
+ "optional": false,
+ "version": "0.3"
+ },
+ {
+ "name": "google-metadata-plugin",
+ "optional": false,
+ "version": "0.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mattmoor",
+ "name": "Matt Moore"
+ }
+ ],
+ "excerpt": "This plugin provides the credential provider to use Google Cloud Platform OAuth Credentials (provided by the <a href='JENKINS:Google OAuth Plugin'>Google OAuth Credentials plugin</a>) to access source code from [https://source.developer.google.com] as well as [https://*.googlesource.com]. It supports both kinds of credentials provided by <a href='JENKINS:Google OAuth Plugin'>Google OAuth Credentials plugin</a> : *Google Service Account from metadata* as well as *Google Service Account from private key.* ",
+ "gav": "org.jenkins-ci.plugins:google-source-plugin:0.2",
+ "labels": [
+ "scm-related",
+ "scm"
+ ],
+ "name": "google-source-plugin",
+ "previousTimestamp": "2014-12-08T15:01:44.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2016-04-18T14:17:04.00Z",
+ "requiredCore": "1.585",
+ "scm": "github.com",
+ "sha1": "LzJimYHYODbDTrclxySUKwuqI2U=",
+ "title": "Google Authenticated Source plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-source-plugin/0.2/google-source-plugin.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Source+Plugin"
+ },
+ "google-storage-plugin": {
+ "buildDate": "Apr 07, 2016",
+ "dependencies": [
+ {
+ "name": "google-metadata-plugin",
+ "optional": false,
+ "version": "0.2"
+ },
+ {
+ "name": "google-oauth-plugin",
+ "optional": false,
+ "version": "0.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mattmoor",
+ "name": "Matt Moore"
+ },
+ {
+ "developerId": "tcnghia",
+ "name": "Nghia Tran"
+ },
+ {
+ "developerId": "astroilov",
+ "name": "Andrey Stroilov"
+ }
+ ],
+ "excerpt": "This plugin provides the &ldquo;Google Cloud Storage Uploader&rdquo; post-build step for publishing build artifacts to Google Cloud Storage.",
+ "gav": "org.jenkins-ci.plugins:google-storage-plugin:0.10",
+ "labels": [
+ "upload"
+ ],
+ "name": "google-storage-plugin",
+ "previousTimestamp": "2015-07-14T17:54:36.00Z",
+ "previousVersion": "0.9",
+ "releaseTimestamp": "2016-04-07T14:36:36.00Z",
+ "requiredCore": "1.619",
+ "scm": "github.com",
+ "sha1": "OTpUjM09aQOQp6A76NJAOFL82mI=",
+ "title": "Google Cloud Storage plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/google-storage-plugin/0.10/google-storage-plugin.hpi",
+ "version": "0.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Cloud+Storage+Plugin"
+ },
+ "googleanalytics": {
+ "buildDate": "Nov 23, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "erik"
+ }
+ ],
+ "excerpt": "This plugin decorates all web pages with the Google Analytics tracking script",
+ "gav": "org.jvnet.hudson.plugins:googleanalytics:1.3",
+ "labels": [
+ "page-decorator"
+ ],
+ "name": "googleanalytics",
+ "previousTimestamp": "2009-08-25T00:44:02.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2011-11-23T18:16:40.00Z",
+ "requiredCore": "1.323",
+ "scm": "github.com",
+ "sha1": "K8jV5dPn/543wX4bX0OJTGikJ3Y=",
+ "title": "Hudson Google Analytics Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/googleanalytics/1.3/googleanalytics.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Analytics+Plugin"
+ },
+ "gradle": {
+ "buildDate": "Jul 15, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "wolfs",
+ "name": "Stefan Wolf"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to invoke a <a href='http://www.gradle.org/'>Gradle</a> build script as the main build step.",
+ "gav": "org.jenkins-ci.plugins:gradle:1.25",
+ "labels": [
+ "builder"
+ ],
+ "name": "gradle",
+ "previousTimestamp": "2014-07-17T00:59:50.00Z",
+ "previousVersion": "1.24",
+ "releaseTimestamp": "2016-07-15T23:05:28.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "Vy0NnmLk5O1Y+FrEagk24KBSwBc=",
+ "title": "Gradle Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gradle/1.25/gradle.hpi",
+ "version": "1.25",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gradle+Plugin"
+ },
+ "grails": {
+ "buildDate": "Sep 24, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jeffg2one",
+ "name": "Jeff Brown"
+ },
+ {
+ "developerId": "kiy0taka",
+ "name": "Kiyotaka Oku"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to invoke Grails tasks as build steps.",
+ "gav": "org.jvnet.hudson.plugins:grails:1.7",
+ "labels": [
+ "builder"
+ ],
+ "name": "grails",
+ "previousTimestamp": "2012-07-18T14:10:56.00Z",
+ "previousVersion": "1.6.3",
+ "releaseTimestamp": "2013-09-24T18:05:04.00Z",
+ "requiredCore": "1.425",
+ "scm": "github.com",
+ "sha1": "2nrEfyTl8eJQF6gqM7AIUMHf8t0=",
+ "title": "Jenkins Grails plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/grails/1.7/grails.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Grails+Plugin"
+ },
+ "graphiteIntegrator": {
+ "buildDate": "Jan 23, 2015",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2-beta-4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "joachim_rodrigues",
+ "email": "rodrigues.joachim@gmail.com",
+ "name": "joachim rodrigues"
+ },
+ {
+ "developerId": "patelm5",
+ "email": "mpatelgrad@gmail.com",
+ "name": "Mike Patel"
+ }
+ ],
+ "excerpt": "This plugin allows you to send these metrics : number of tests, tests skipped, tests failed, build duration, cobertura total line coverage&amp;nbsp; and cobertura total branch coverage to one or more graphite servers. If you don't have a graphite server you can use : [https://www.hostedgraphite.com] to test. &amp;nbsp;&amp;nbsp; For cobertura metrics you need to install cobertura plugin and run cobertura:cobertura in goals section. &amp;nbsp;&amp;nbsp; Be sure to run jenkins your jobs with a Jdk 7 (go to the manage jenkins + configure system + Jdk installations ), because the plugin only works with this version of jdk. ",
+ "gav": "org.jenkins-ci.plugins:graphiteIntegrator:1.2",
+ "labels": [
+ "misc"
+ ],
+ "name": "graphiteIntegrator",
+ "previousTimestamp": "2013-09-15T18:45:36.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-01-23T15:11:50.00Z",
+ "requiredCore": "1.596",
+ "scm": "github.com",
+ "sha1": "zqd558YR4kZxdK2Z6VjribYuq3w=",
+ "title": "Graphite-plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/graphiteIntegrator/1.2/graphiteIntegrator.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Graphite-plugin"
+ },
+ "gravatar": {
+ "buildDate": "May 05, 2014",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "redsolo",
+ "email": "eramfelt@gmail.com",
+ "name": "Erik Ramfelt"
+ }
+ ],
+ "excerpt": "This plugins shows <a href='http://gravatar.com/'>Gravatar</a> avatars instead of the generic user image.",
+ "gav": "org.jenkins-ci.plugins:gravatar:2.1",
+ "labels": [
+ "user",
+ "ui"
+ ],
+ "name": "gravatar",
+ "previousTimestamp": "2014-05-03T09:47:52.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2014-05-05T21:50:06.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "SzLeHUtgtvyz4WVS5dXzYPfsMn8=",
+ "title": "Jenkins Gravatar plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/gravatar/2.1/gravatar.hpi",
+ "version": "2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gravatar+plugin"
+ },
+ "greenballs": {
+ "buildDate": "Nov 02, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "asgeirn",
+ "email": "asgeir@twingine.no",
+ "name": "Asgeir Storesund Nilsen"
+ }
+ ],
+ "excerpt": "Changes Hudson to use green balls instead of blue for successful builds",
+ "gav": "org.jenkins-ci.plugins:greenballs:1.15",
+ "labels": [
+ "ui"
+ ],
+ "name": "greenballs",
+ "previousTimestamp": "2014-02-07T09:39:00.00Z",
+ "previousVersion": "1.14",
+ "releaseTimestamp": "2015-11-02T15:36:00.00Z",
+ "requiredCore": "1.440",
+ "scm": "github.com",
+ "sha1": "/UbT1lrvRJdKqC9Gs+K6/7wEUp8=",
+ "title": "Green Balls",
+ "url": "http://updates.jenkins-ci.org/download/plugins/greenballs/1.15/greenballs.hpi",
+ "version": "1.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Green+Balls"
+ },
+ "grinder": {
+ "buildDate": "Jan 15, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "BatemanSW"
+ }
+ ],
+ "excerpt": "This plugin reads output result files from <a href='http://grinder.sourceforge.net/'>Grinder</a> performance tests, and will generate reports showing test results for every build and trend reports showing performance results across builds.",
+ "gav": "org.jvnet.hudson.plugins:grinder:1.4",
+ "labels": [
+ "report"
+ ],
+ "name": "grinder",
+ "previousTimestamp": "2009-12-29T23:26:38.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2010-01-15T11:45:28.00Z",
+ "requiredCore": "1.319",
+ "scm": "svn.dev.java.net",
+ "sha1": "XlTSwxFBO6UfqMlF5eGocJ29h6g=",
+ "title": "Hudson Grinder plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/grinder/1.4/grinder.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Grinder+Plugin"
+ },
+ "groovy": {
+ "buildDate": "Jan 05, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ },
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "This plugin adds the ability to directly execute Groovy code.",
+ "gav": "org.jenkins-ci.plugins:groovy:1.29",
+ "labels": [
+ "builder",
+ "groovy-related"
+ ],
+ "name": "groovy",
+ "previousTimestamp": "2015-08-05T21:53:48.00Z",
+ "previousVersion": "1.27",
+ "releaseTimestamp": "2016-01-05T08:32:32.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "47xsOI/DTLMbxvllcDb4jr9MCiY=",
+ "title": "Groovy",
+ "url": "http://updates.jenkins-ci.org/download/plugins/groovy/1.29/groovy.hpi",
+ "version": "1.29",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+plugin"
+ },
+ "groovy-events-listener-plugin": {
+ "buildDate": "Jun 28, 2016",
+ "compatibleSinceVersion": "1.20",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nickg",
+ "email": "nickgrealy@gmail.com",
+ "name": "Nick Grealy"
+ }
+ ],
+ "excerpt": "A Jenkins plugin, which executes groovy code when an event occurs.",
+ "gav": "org.jenkins-ci.plugins:groovy-events-listener-plugin:1.014",
+ "labels": [],
+ "name": "groovy-events-listener-plugin",
+ "previousTimestamp": "2016-06-03T09:42:26.00Z",
+ "previousVersion": "1.013",
+ "releaseTimestamp": "2016-06-28T07:53:12.00Z",
+ "requiredCore": "1.581",
+ "scm": "github.com",
+ "sha1": "6YMTzMj19cNvSjapppuyd1g4tw0=",
+ "title": "Groovy Events Listener Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/groovy-events-listener-plugin/1.014/groovy-events-listener-plugin.hpi",
+ "version": "1.014",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Events+Listener+Plugin"
+ },
+ "groovy-events-listener-plugin-master": {
+ "buildDate": "Sep 21, 2015",
+ "compatibleSinceVersion": "1.20",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nickg",
+ "email": "nickgrealy@gmail.com",
+ "name": "Nick Grealy"
+ }
+ ],
+ "excerpt": "A Jenkins plugin, which executes groovy code when an event occurs.",
+ "gav": "org.jenkins-ci.plugins:groovy-events-listener-plugin-master:1.007",
+ "labels": [],
+ "name": "groovy-events-listener-plugin-master",
+ "releaseTimestamp": "2015-09-21T09:43:26.00Z",
+ "requiredCore": "1.581",
+ "scm": "github.com",
+ "sha1": "TrqCqABVvfyHGhZJV1k0bhj2cZ8=",
+ "title": "Groovy Events Listener Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/groovy-events-listener-plugin-master/1.007/groovy-events-listener-plugin-master.hpi",
+ "version": "1.007",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Events+Listener+Plugin"
+ },
+ "groovy-label-assignment": {
+ "buildDate": "May 08, 2016",
+ "compatibleSinceVersion": "1.2.0",
+ "dependencies": [
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.16"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ikedam",
+ "name": "IKEDA Yasuyuki"
+ }
+ ],
+ "excerpt": "Provides &quot;Groovy script to restrict where this project can be run&quot; in job configuration pages.",
+ "gav": "jp.ikedam.jenkins.plugins:groovy-label-assignment:1.2.0",
+ "labels": [
+ "slaves"
+ ],
+ "name": "groovy-label-assignment",
+ "previousTimestamp": "2015-09-13T11:58:38.00Z",
+ "previousVersion": "1.1.1",
+ "releaseTimestamp": "2016-05-08T11:18:10.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "9qLx8vHIOfFxpqUhhm+54ijRClY=",
+ "title": "Groovy Label Assignment plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/groovy-label-assignment/1.2.0/groovy-label-assignment.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Label+Assignment+plugin"
+ },
+ "groovy-postbuild": {
+ "buildDate": "Feb 07, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "workflow-cps",
+ "optional": true,
+ "version": "1.11"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "wolfs",
+ "name": "Stefan Wolf"
+ },
+ {
+ "developerId": "beryx",
+ "name": "Serban Iordache"
+ }
+ ],
+ "excerpt": "This plugin executes a groovy script in the Jenkins JVM. Typically, the script checks some conditions and changes accordingly the build result, puts badges next to the build in the build history and/or displays information on the build summary page.",
+ "gav": "org.jvnet.hudson.plugins:groovy-postbuild:2.3.1",
+ "labels": [
+ "post-build",
+ "groovy-related"
+ ],
+ "name": "groovy-postbuild",
+ "previousTimestamp": "2015-12-27T11:46:12.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2016-02-07T12:52:16.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "icTPyfhTq4Ia7fsdicIAcnb4zRs=",
+ "title": "Groovy Postbuild",
+ "url": "http://updates.jenkins-ci.org/download/plugins/groovy-postbuild/2.3.1/groovy-postbuild.hpi",
+ "version": "2.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Postbuild+Plugin"
+ },
+ "groovy-remote": {
+ "buildDate": "Sep 12, 2012",
+ "dependencies": [],
+ "developers": [],
+ "excerpt": "This plugin provides <a href='http://groovy.codehaus.org/modules/remote/'>Groovy Remote Control</a>'s receiver, and allows to control external application from Jenkins.",
+ "gav": "org.jenkinsci.plugins:groovy-remote:0.2",
+ "labels": [
+ "builder",
+ "groovy-related"
+ ],
+ "name": "groovy-remote",
+ "previousTimestamp": "2012-08-09T13:27:08.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2012-09-12T20:30:50.00Z",
+ "requiredCore": "1.475",
+ "scm": "github.com",
+ "sha1": "0rhRQWmdaOqU8FN2UZCM2htpB/M=",
+ "title": "Groovy Remote Control Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/groovy-remote/0.2/groovy-remote.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Remote+Control+Plugin"
+ },
+ "groovyaxis": {
+ "buildDate": "Jan 04, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "emanuelez",
+ "email": "emanuelez@gmail.com",
+ "name": "Emanuele Zattin"
+ }
+ ],
+ "excerpt": "This plugin allows to have scriptable axes for Matrix Jobs.",
+ "gav": "org.jenkins-ci.plugins:groovyaxis:0.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "groovyaxis",
+ "previousTimestamp": "2011-06-07T23:58:30.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2013-01-04T10:59:46.00Z",
+ "requiredCore": "1.472",
+ "scm": "github.com",
+ "sha1": "rhp30tEZ3HrLU/OHNJmuDwfMgB4=",
+ "title": "GroovyAxis",
+ "url": "http://updates.jenkins-ci.org/download/plugins/groovyaxis/0.3/groovyaxis.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GroovyAxis"
+ },
+ "growl": {
+ "buildDate": "Jun 12, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sbower",
+ "email": "sbower@advws.net",
+ "name": "Shawn Bower"
+ }
+ ],
+ "excerpt": "Sends <a href='http://growl.info/'>Growl</a> notification.",
+ "gav": "org.jenkins-ci.plugins:growl:1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "growl",
+ "previousTimestamp": "2010-10-09T00:38:06.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-06-12T21:15:20.00Z",
+ "requiredCore": "1.414",
+ "scm": "github.com",
+ "sha1": "NqahIAJnefwd9tvZ/T9mREAnh8E=",
+ "title": "Jenkins Growl Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/growl/1.1/growl.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Growl+Plugin"
+ },
+ "hadoop": {
+ "buildDate": "Jun 29, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olamy"
+ }
+ ],
+ "excerpt": "This plugin makes Jenkins cluster act as a Hadoop cluster without any configuration.",
+ "gav": "org.jenkins-ci.plugins:hadoop:1.4",
+ "labels": [
+ "cluster"
+ ],
+ "name": "hadoop",
+ "previousTimestamp": "2009-09-02T14:44:44.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2011-06-29T23:59:20.00Z",
+ "requiredCore": "1.403",
+ "scm": "github.com",
+ "sha1": "S4P+I7mwmD4wGaps43neIfH/fJg=",
+ "title": "Jenkins Hadoop plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hadoop/1.4/hadoop.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hadoop+Plugin"
+ },
+ "handlebars": {
+ "buildDate": "Mar 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tfennelly"
+ }
+ ],
+ "excerpt": "Handlebars.js&amp;nbsp;Plugin",
+ "gav": "org.jenkins-ci.ui:handlebars:1.1.1",
+ "labels": [],
+ "name": "handlebars",
+ "previousTimestamp": "2015-12-15T15:16:56.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-03-03T12:08:06.00Z",
+ "requiredCore": "1.580.1",
+ "sha1": "IZD2XEaxAUvXkCYIK8Jm3aWPEio=",
+ "title": "JavaScript GUI Lib: Handlebars bundle plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/handlebars/1.1.1/handlebars.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Handlebars.js"
+ },
+ "harvest": {
+ "buildDate": "Aug 28, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gliptak",
+ "name": "G‡bor Lipt‡k"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='http://www.ca.com/us/products/product.aspx?id=255'>CA Harvest</a> as a SCM.",
+ "gav": "org.jenkins-ci.plugins:harvest:0.5.1",
+ "labels": [
+ "scm"
+ ],
+ "name": "harvest",
+ "previousTimestamp": "2011-08-22T18:20:54.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2015-08-28T14:07:30.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "Y3ExvSTn5hgqx0M1hz1NPpB7L18=",
+ "title": "Jenkins Harvest SCM",
+ "url": "http://updates.jenkins-ci.org/download/plugins/harvest/0.5.1/harvest.hpi",
+ "version": "0.5.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Harvest+Plugin"
+ },
+ "hashicorp-vault-plugin": {
+ "buildDate": "Aug 15, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ptierno",
+ "email": "ptierno@datapipe.com",
+ "name": "Peter A. Tierno"
+ }
+ ],
+ "excerpt": "Populate environment variables from secrets stored in HashiCorp's <a href='http://vaultproject.io/'>Vault</a>.",
+ "gav": "com.datapipe.jenkins.plugins:hashicorp-vault-plugin:1.2",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "hashicorp-vault-plugin",
+ "previousTimestamp": "2016-08-11T12:23:52.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-08-15T11:58:18.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "uN4UTaEC1sY40jv/b5KeW1OmiyI=",
+ "title": "HashiCorp Vault Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hashicorp-vault-plugin/1.2/hashicorp-vault-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HashiCorp+Vault+Plugin"
+ },
+ "hckrnews": {
+ "buildDate": "Nov 29, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lewuathe",
+ "email": "lewuathe@me.com",
+ "name": "Kai Sasaki"
+ }
+ ],
+ "excerpt": "This plugin displays Hacker news top timeline. You can confirm important tech news for great hacker while your Jenkins is building.",
+ "gav": "com.lewuathe.plugins:hckrnews:1.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "hckrnews",
+ "previousTimestamp": "2013-11-28T20:44:32.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-11-29T13:03:12.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "VDda6aQLtieRJ4jgDmpNV9/9fTw=",
+ "title": "Hckrnews Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hckrnews/1.1/hckrnews.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hckrnews+Plugin"
+ },
+ "heavy-job": {
+ "buildDate": "Oct 16, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "This plugin allows you to define &quot;weight&quot; on each job, and making each job consume that many executors (instead of just one.)",
+ "gav": "org.jenkins-ci.plugins:heavy-job:1.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "heavy-job",
+ "previousTimestamp": "2010-09-26T11:51:08.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-10-16T12:31:00.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "fuLiOYClFCQQZ3NFb5DEjZNKzVs=",
+ "title": "Heavy Job Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/heavy-job/1.1/heavy-job.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Heavy+Job+Plugin"
+ },
+ "heroku-jenkins-plugin": {
+ "buildDate": "Oct 28, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ryanbrainard",
+ "name": "Ryan Brainard"
+ }
+ ],
+ "excerpt": "<b>(This version is experimental and may change in backward-incompatible ways)</b> <br><br>Build tasks for interacting with <a href='http://heroku.com'>Heroku</a>&amp;nbsp;including deployment, scaling dynos, running processes, and more. ",
+ "gav": "com.heroku:heroku-jenkins-plugin:0.7.1-BETA",
+ "labels": [
+ "post-build",
+ "external",
+ "upload"
+ ],
+ "name": "heroku-jenkins-plugin",
+ "previousTimestamp": "2012-08-23T23:09:00.00Z",
+ "previousVersion": "0.7-BETA",
+ "releaseTimestamp": "2012-10-28T18:21:44.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "VTe4ezg2aZh2BzNxj0S+s3r2UrQ=",
+ "title": "Heroku Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/heroku-jenkins-plugin/0.7.1-BETA/heroku-jenkins-plugin.hpi",
+ "version": "0.7.1-BETA",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Heroku+Plugin"
+ },
+ "hgca": {
+ "buildDate": "May 06, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "abayer",
+ "email": "andrew.bayer@gmail.com",
+ "name": "Andrew Bayer"
+ }
+ ],
+ "excerpt": "This plugin allows the administrator to specify pairs of patterns and URLs, both globally and on a per-job level, to use for marking up changelog text.",
+ "gav": "org.jvnet.hudson.plugins:hgca:1.3",
+ "labels": [
+ "external"
+ ],
+ "name": "hgca",
+ "previousTimestamp": "2010-04-05T15:12:36.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2010-05-06T15:33:40.00Z",
+ "requiredCore": "1.324",
+ "scm": "svn.dev.java.net",
+ "sha1": "ph8hqopM+L/rfNC4/tJXAfEfNzI=",
+ "title": "Hudson Generic Changelog Annotator Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hgca/1.3/hgca.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HGCA+Plugin"
+ },
+ "hidden-parameter": {
+ "buildDate": "May 04, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "wy-scm",
+ "name": "wy-scm"
+ }
+ ],
+ "excerpt": "This plugin adds support for Parameter. After the plugin is installed,in job configuration's page,you can see Hidden Parameter. ",
+ "gav": "org.jenkins-ci.plugins:hidden-parameter:0.0.4",
+ "labels": [
+ "misc"
+ ],
+ "name": "hidden-parameter",
+ "releaseTimestamp": "2015-05-04T09:25:38.00Z",
+ "requiredCore": "1.541",
+ "scm": "github.com",
+ "sha1": "CE/YYreaKyglTmAk+ZdpsVtcy4s=",
+ "title": "Hidden Parameter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hidden-parameter/0.0.4/hidden-parameter.hpi",
+ "version": "0.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hidden+Parameter+Plugin"
+ },
+ "hipchat": {
+ "buildDate": "Jan 09, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aldaris",
+ "name": "Peter Major"
+ }
+ ],
+ "excerpt": "A Build status publisher that notifies channels on a HipChat server",
+ "gav": "org.jvnet.hudson.plugins:hipchat:1.0.0",
+ "labels": [
+ "notifier"
+ ],
+ "name": "hipchat",
+ "previousTimestamp": "2015-09-14T11:10:18.00Z",
+ "previousVersion": "0.2.0",
+ "releaseTimestamp": "2016-01-09T00:28:38.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "1FfT/YAHsBKU9XH/H8/cdgQrbqE=",
+ "title": "Jenkins HipChat Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hipchat/1.0.0/hipchat.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HipChat+Plugin"
+ },
+ "hockeyapp": {
+ "buildDate": "Feb 06, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ohoeltke",
+ "email": "ohoeltke@gmail.com",
+ "name": "Oliver Hoeltke"
+ }
+ ],
+ "excerpt": "Lets you publish iOS, Mac and Android apps to <a href='http://www.hockeyapp.net'>HockeyApp</a>&amp;nbsp;(or enterprise instance)&amp;nbsp;from a Jenkins build. ",
+ "gav": "org.jenkins-ci.plugins:hockeyapp:1.2.1",
+ "labels": [
+ "upload",
+ "ios"
+ ],
+ "name": "hockeyapp",
+ "previousTimestamp": "2014-11-20T20:13:10.00Z",
+ "previousVersion": "1.2.0",
+ "releaseTimestamp": "2016-02-06T17:04:04.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "SeFMovfV+8NZayR5hHsux5Y4BEg=",
+ "title": "HockeyApp Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hockeyapp/1.2.1/hockeyapp.hpi",
+ "version": "1.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HockeyApp+Plugin"
+ },
+ "housekeeper": {
+ "buildDate": "Sep 29, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "scarytom",
+ "email": "t.denley@cantab.net",
+ "name": "Tom Denley"
+ }
+ ],
+ "excerpt": "This plugin performs checks before and after every build to ensure that resources (e.g. open ports) are not leaked.",
+ "gav": "org.jenkins-ci.plugins:housekeeper:1.1",
+ "labels": [
+ "post-build"
+ ],
+ "name": "housekeeper",
+ "previousTimestamp": "2014-09-25T10:38:00.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2014-09-29T11:42:12.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "XgfmakTbL+ZcTLpXOkAVv+46YrY=",
+ "title": "Housekeeper Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/housekeeper/1.1/housekeeper.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Housekeeper+Plugin"
+ },
+ "hp-application-automation-tools-plugin": {
+ "buildDate": "Jul 25, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "YafimK",
+ "email": "kazak@hpe.com",
+ "name": "Fima (Yafim) Kazak"
+ },
+ {
+ "developerId": "imrman",
+ "email": "avishai.moshka@hp.com",
+ "name": "Avishai Moshka"
+ },
+ {
+ "developerId": "amitb",
+ "email": "amit.bezalel@hpe.com",
+ "name": "Amit Bezalel"
+ },
+ {
+ "developerId": "bamh",
+ "email": "hanan.bem@hpe.com",
+ "name": "Hanan Bem"
+ },
+ {
+ "developerId": "michaelhpe",
+ "email": "weimin.jing@hpe.com",
+ "name": "Weimin Jing"
+ },
+ {
+ "developerId": "JackyZhuHPE",
+ "email": "chun-jiang.zhu@hpe.com",
+ "name": "Chunjiang Zhu (Jacky)"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to trigger HP tests such as: Test sets on Application Lifecycle Management, tests running on Mobile Center, and tests saved on the file system from Unified Functional Testing or LoadRunner scenarios.",
+ "gav": "org.jenkins-ci.plugins:hp-application-automation-tools-plugin:4.5.0",
+ "labels": [
+ "misc",
+ "scm"
+ ],
+ "name": "hp-application-automation-tools-plugin",
+ "previousTimestamp": "2016-03-07T18:11:00.00Z",
+ "previousVersion": "4.0.1",
+ "releaseTimestamp": "2016-07-25T15:45:26.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "sOA+iKxsQHtdA2AGOulIWkPc860=",
+ "title": "HP Application Automation Tools",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hp-application-automation-tools-plugin/4.5.0/hp-application-automation-tools-plugin.hpi",
+ "version": "4.5.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HP+Application+Automation+Tools"
+ },
+ "hp-operations-orchestration-automation-execution-plugin": {
+ "buildDate": "Jul 05, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "franky4ro",
+ "email": "danalbu85@gmail.com",
+ "name": "Dan Albu"
+ },
+ {
+ "developerId": "nathang",
+ "email": "nathan.grunzweig@hp.com",
+ "name": "Nathan Grunzweig"
+ },
+ {
+ "developerId": "lucian_cm",
+ "email": "lucian-cristian.musca@hp.com",
+ "name": "Lucian Musca"
+ }
+ ],
+ "excerpt": "This plugin enables executing HP Operations Orchestration flows as build-steps.",
+ "gav": "org.jenkins-ci.plugins:hp-operations-orchestration-automation-execution-plugin:2.1.1",
+ "labels": [
+ "misc",
+ "external"
+ ],
+ "name": "hp-operations-orchestration-automation-execution-plugin",
+ "previousTimestamp": "2015-05-13T11:50:48.00Z",
+ "previousVersion": "2.0.0",
+ "releaseTimestamp": "2016-07-05T07:58:14.00Z",
+ "requiredCore": "1.458",
+ "scm": "github.com",
+ "sha1": "ahYSCCERT9F/d/eZzJltZ0LNMgA=",
+ "title": "HP Operations Orchestration Automation Execution Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hp-operations-orchestration-automation-execution-plugin/2.1.1/hp-operations-orchestration-automation-execution-plugin.hpi",
+ "version": "2.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HP+Operations+Orchestration+Automation+Execution+Plugin"
+ },
+ "hp-quality-center": {
+ "buildDate": "Apr 19, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "michaelfazio@me.com",
+ "name": "Michael Fazio"
+ }
+ ],
+ "excerpt": "Allows users to synchronize test results from Jenkins with HP ALM Quality Center. ",
+ "gav": "org.jenkins-ci.plugins.qc:hp-quality-center:1.2",
+ "labels": [
+ "post-build"
+ ],
+ "name": "hp-quality-center",
+ "previousTimestamp": "2016-04-18T11:38:58.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-04-19T17:10:18.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "rxbv8vwPp/jCF7+NuKGSkroHvSk=",
+ "title": "HP ALM Quality Center Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hp-quality-center/1.2/hp-quality-center.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HP+ALM+Quality+Center+Plugin"
+ },
+ "hpe-network-virtualization": {
+ "buildDate": "Aug 17, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "itayka",
+ "email": "itay.karo@hpe.com",
+ "name": "Itay Karo"
+ },
+ {
+ "email": "danny.moore@hpe.com",
+ "name": "Danny Moore"
+ }
+ ],
+ "excerpt": "This plugin allows HPE Network Virtualization to run tests under various network conditions. ",
+ "gav": "org.jenkins-ci.plugins:hpe-network-virtualization:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "hpe-network-virtualization",
+ "releaseTimestamp": "2016-08-17T17:22:12.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "vUulAXm0HefeXDMRfigqNuUypy4=",
+ "title": "HPE Network Virtualization plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hpe-network-virtualization/1.0/hpe-network-virtualization.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HPE+Network+Virtualization+Plugin"
+ },
+ "hsts-filter-plugin": {
+ "buildDate": "Sep 26, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provides a very simple filter which adds a response header indicating that <a href='http://tools.ietf.org/html/draft-hodges-strict-transport-sec-02'>HTTP Strict Transport Security</a> (HSTS) response headers should be sent.",
+ "gav": "org.jenkins-ci.plugins:hsts-filter-plugin:1.0",
+ "labels": [
+ "page-decorator",
+ "misc"
+ ],
+ "name": "hsts-filter-plugin",
+ "releaseTimestamp": "2011-09-26T22:05:36.00Z",
+ "requiredCore": "1.429",
+ "scm": "github.com",
+ "sha1": "YTtcCuLLVggnk+/s+6zW/7OpxOA=",
+ "title": "HSTS Filter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hsts-filter-plugin/1.0/hsts-filter-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HSTS+Filter+Plugin"
+ },
+ "html-audio-notifier": {
+ "buildDate": "Nov 25, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "larshvile",
+ "email": "lars@hulte.net",
+ "name": "Lars Hvile"
+ }
+ ],
+ "excerpt": "Plays audio-notifications directly in the browser when builds fail",
+ "gav": "jenkins.plugins.htmlaudio:html-audio-notifier:0.4",
+ "labels": [
+ "notifier"
+ ],
+ "name": "html-audio-notifier",
+ "previousTimestamp": "2011-10-15T14:08:02.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2011-11-25T19:52:22.00Z",
+ "requiredCore": "1.425",
+ "scm": "github.com",
+ "sha1": "1lWpujRmmhKwomBKQAM3XpBacK4=",
+ "title": "HTML Audio Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/html-audio-notifier/0.4/html-audio-notifier.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Html+Audio+Notifier"
+ },
+ "html5-notifier-plugin": {
+ "buildDate": "Mar 05, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ },
+ {
+ "developerId": "halkeye",
+ "email": "halkeye@gmail.com",
+ "name": "Gavin Mogan"
+ }
+ ],
+ "excerpt": "Provides <a href='http://dev.w3.org/2006/webapi/WebNotifications/publish/Notifications.html'>W3C Web Notifications</a> support for builds.",
+ "gav": "org.jenkins-ci.plugins:html5-notifier-plugin:1.5",
+ "labels": [
+ "page-decorator",
+ "notifier"
+ ],
+ "name": "html5-notifier-plugin",
+ "previousTimestamp": "2014-08-01T22:39:22.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2015-03-05T23:49:48.00Z",
+ "requiredCore": "1.455",
+ "scm": "github.com",
+ "sha1": "Ip/RVzN3uevTRt1MX/dBH/iW8A0=",
+ "title": "HTML5 Notifier Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/html5-notifier-plugin/1.5/html5-notifier-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HTML5+Notifier+Plugin"
+ },
+ "htmlpublisher": {
+ "buildDate": "Feb 04, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mcrooney",
+ "name": "Michael Rooney"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:htmlpublisher:1.11",
+ "labels": [
+ "upload"
+ ],
+ "name": "htmlpublisher",
+ "previousTimestamp": "2015-12-13T11:29:20.00Z",
+ "previousVersion": "1.10",
+ "releaseTimestamp": "2016-02-04T21:09:42.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "l0Yo1g2vJM615AaegnmQ3e89lOs=",
+ "title": "HTML Publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/htmlpublisher/1.11/htmlpublisher.hpi",
+ "version": "1.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HTML+Publisher+Plugin"
+ },
+ "htmlresource": {
+ "buildDate": "May 01, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vimil",
+ "email": "-",
+ "name": "vimil"
+ }
+ ],
+ "excerpt": "Allows managing webjars for javascript and css libraries from within Jenkins",
+ "gav": "org.jenkins-ci.plugins:htmlresource:1.02",
+ "labels": [
+ "ui"
+ ],
+ "name": "htmlresource",
+ "releaseTimestamp": "2016-05-01T12:40:54.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "5H0gz6VEd5ImCxFXHLJP1G6LRsM=",
+ "title": "HTMLResource",
+ "url": "http://updates.jenkins-ci.org/download/plugins/htmlresource/1.02/htmlresource.hpi",
+ "version": "1.02",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HTMLResource+Plugin"
+ },
+ "http-post": {
+ "buildDate": "Nov 25, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ChristianBecker",
+ "email": "christian.becker.1987@gmail.com",
+ "name": "Christian Becker"
+ }
+ ],
+ "excerpt": "This plugin will allow you to publish the artifacts via HTTP POST to an URL. ",
+ "gav": "org.jenkins-ci.plugins:http-post:1.2",
+ "labels": [
+ "post-build",
+ "upload"
+ ],
+ "name": "http-post",
+ "previousTimestamp": "2014-08-12T13:08:42.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-11-25T14:12:50.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "CKce/+Ym5vGCPxAOWo8MVFuU5nU=",
+ "title": "HTTP POST Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/http-post/1.2/http-post.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HTTP+POST+Plugin"
+ },
+ "http_request": {
+ "buildDate": "Oct 03, 2016",
+ "compatibleSinceVersion": "1.8.8",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.17"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "janario",
+ "email": "janarioliver@gmail.com",
+ "name": "Janario Oliveira"
+ }
+ ],
+ "excerpt": "This plugin sends a http request to an url with some parameters ",
+ "gav": "org.jenkins-ci.plugins:http_request:1.8.12",
+ "labels": [
+ "builder"
+ ],
+ "name": "http_request",
+ "previousTimestamp": "2016-06-24T12:58:52.00Z",
+ "previousVersion": "1.8.11",
+ "releaseTimestamp": "2016-10-03T19:21:54.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "S9nRuZbeOv6lAFyQ6Vd83lNlIa0=",
+ "title": "HTTP Request Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/http_request/1.8.12/http_request.hpi",
+ "version": "1.8.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HTTP+Request+Plugin"
+ },
+ "hudson-pview-plugin": {
+ "buildDate": "Jan 03, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tspengler",
+ "email": "tom@fspengler.de",
+ "name": "Thomas Spengler"
+ }
+ ],
+ "excerpt": "This plugin gives every user, also non administrative one the possibility to create his own view and to use a pseudo tree-view where every user can administer it's own delimiter which is used as path delimiter",
+ "gav": "de.fspengler.hudson.pview:hudson-pview-plugin:1.8",
+ "labels": [
+ "user",
+ "ui"
+ ],
+ "name": "hudson-pview-plugin",
+ "previousTimestamp": "2010-01-12T23:51:14.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2011-01-03T16:23:04.00Z",
+ "requiredCore": "1.357",
+ "scm": "svn.java.net",
+ "sha1": "VKJ1X1bfi45x6w9N5rZl3kIw/Ko=",
+ "title": "Hudson Personal View",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hudson-pview-plugin/1.8/hudson-pview-plugin.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Personal+View"
+ },
+ "hudson-wsclean-plugin": {
+ "buildDate": "Aug 06, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tspengler",
+ "name": "Thomas Spengler"
+ }
+ ],
+ "excerpt": "This plugin allows you to cleanup workspaces on unused slaves in the same slavegroup.",
+ "gav": "de.jamba.hudson.plugin.wsclean:hudson-wsclean-plugin:1.0.5",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "hudson-wsclean-plugin",
+ "previousTimestamp": "2010-01-06T21:51:32.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2015-08-06T13:40:46.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "DWTYiEwHHmyaXNCWswb5Djxi7M4=",
+ "title": "Distributed Workspace Clean plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hudson-wsclean-plugin/1.0.5/hudson-wsclean-plugin.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Distributed+Workspace+Clean+plugin"
+ },
+ "hudsontrayapp": {
+ "buildDate": "Jan 10, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "davyboyhayes",
+ "name": "David Hayes"
+ }
+ ],
+ "excerpt": "With this plugin, you can monitor your Hudson server from the comfort of you desktop tray, and even run programs when things change (or not).",
+ "gav": "org.jvnet.hudson.plugins.hudsontrayapp:hudsontrayapp:0.7.3",
+ "labels": [
+ "external"
+ ],
+ "name": "hudsontrayapp",
+ "releaseTimestamp": "2010-01-10T10:15:24.00Z",
+ "requiredCore": "1.318",
+ "scm": "svn.dev.java.net",
+ "sha1": "kSJAtcXBsmDD4AxWuEboitcYCzE=",
+ "title": "Hudson Tray Application Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hudsontrayapp/0.7.3/hudsontrayapp.hpi",
+ "version": "0.7.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Tray+Application"
+ },
+ "hue-light": {
+ "buildDate": "Aug 24, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "MMore",
+ "email": "m@mathiasnestler.de",
+ "name": "Mathias Nestler"
+ },
+ {
+ "developerId": "cambler",
+ "email": "chris@ambler.net",
+ "name": "Christopher Ambler"
+ }
+ ],
+ "excerpt": "This plugin shows the state of your builds using the awesome&amp;nbsp;<a href='https://www.meethue.com/'>Philips hue lights</a>. ",
+ "gav": "org.jenkins-ci.plugins:hue-light:1.2.0",
+ "labels": [
+ "notifier"
+ ],
+ "name": "hue-light",
+ "previousTimestamp": "2014-05-29T14:10:40.00Z",
+ "previousVersion": "1.1.0",
+ "releaseTimestamp": "2014-08-24T13:40:04.00Z",
+ "requiredCore": "1.509.2",
+ "scm": "github.com",
+ "sha1": "6odgw91NDZ0V+upMhK5e7HqACKg=",
+ "title": "hue-light",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hue-light/1.2.0/hue-light.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/hue-light+Plugin"
+ },
+ "humbug": {
+ "buildDate": "Oct 16, 2015",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "wdaher",
+ "email": "wdaher@zulip.com",
+ "name": "Waseem Daher"
+ }
+ ],
+ "excerpt": "This plugin allows your team to setup build notifications to be sent to Zulip (formerly Humbug).",
+ "gav": "org.jenkins-ci.plugins:humbug:0.1.3",
+ "labels": [
+ "notifier"
+ ],
+ "name": "humbug",
+ "previousTimestamp": "2013-12-31T17:05:32.00Z",
+ "previousVersion": "0.1.2",
+ "releaseTimestamp": "2015-10-16T14:23:02.00Z",
+ "requiredCore": "1.544",
+ "scm": "github.com",
+ "sha1": "bNYKDGMDgf9QqRgHnvuYTO6YM8o=",
+ "title": "Jenkins Zulip Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/humbug/0.1.3/humbug.hpi",
+ "version": "0.1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Humbug+Plugin"
+ },
+ "hyper-build-step": {
+ "buildDate": "Aug 29, 2016",
+ "dependencies": [
+ {
+ "name": "hyper-commons",
+ "optional": false,
+ "version": "0.1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "YaoZengzeng",
+ "email": "yaozengzeng@zju.edu.cn",
+ "name": "Zengzeng Yao"
+ },
+ {
+ "developerId": "xlgao-zju",
+ "email": "xlgao@zju.edu.cn",
+ "name": "Xianglin Gao"
+ },
+ {
+ "developerId": "Jimmy-Xu",
+ "email": "xjimmyshcn@gmail.com",
+ "name": "Jimmy Xu"
+ }
+ ],
+ "excerpt": "Run some tasks of Jenkins job in <a href='https://hyper.sh/'>Hyper_</a> container. This plugin allows to add &quot;Execute shell in Hyper_&quot; build step into your job.",
+ "gav": "sh.hyper.plugins:hyper-build-step:0.1.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "hyper-build-step",
+ "previousTimestamp": "2016-08-26T17:12:06.00Z",
+ "previousVersion": "0.1.2",
+ "releaseTimestamp": "2016-08-29T12:15:38.00Z",
+ "requiredCore": "2.7.2",
+ "scm": "github.com",
+ "sha1": "veI+idq9xRf25gO0CQq+Cj5gLSc=",
+ "title": "Hyper_ Build Step Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hyper-build-step/0.1.3/hyper-build-step.hpi",
+ "version": "0.1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hyper_+Build+Step+Plugin"
+ },
+ "hyper-commons": {
+ "buildDate": "Sep 07, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "xlgao-zju",
+ "email": "xlgao@zju.edu.cn",
+ "name": "Xianglin Gao"
+ },
+ {
+ "developerId": "Jimmy-Xu",
+ "email": "xjimmyshcn@gmail.com",
+ "name": "Jimmy Xu"
+ }
+ ],
+ "excerpt": "This plugin provides common functions for other hyper plugins.",
+ "gav": "sh.hyper.plugins:hyper-commons:0.1.4",
+ "labels": [
+ "user"
+ ],
+ "name": "hyper-commons",
+ "previousTimestamp": "2016-08-28T01:37:30.00Z",
+ "previousVersion": "0.1.3",
+ "releaseTimestamp": "2016-09-07T16:44:04.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "2K/VONHHPXmkAkxwmlKA1aCjLIg=",
+ "title": "Hyper_ Commons Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hyper-commons/0.1.4/hyper-commons.hpi",
+ "version": "0.1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hyper_+Commons+Plugin"
+ },
+ "hyper-slaves": {
+ "buildDate": "Sep 08, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-support",
+ "optional": true,
+ "version": "1.13"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "2.0"
+ },
+ {
+ "name": "hyper-commons",
+ "optional": false,
+ "version": "0.1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "YaoZengzeng",
+ "email": "yaozengzeng@zju.edu.cn",
+ "name": "Zengzeng Yao"
+ },
+ {
+ "developerId": "xlgao-zju",
+ "email": "xlgao@zju.edu.cn",
+ "name": "Xianglin Gao"
+ },
+ {
+ "developerId": "Jimmy-Xu",
+ "email": "xjimmyshcn@gmail.com",
+ "name": "Jimmy Xu"
+ }
+ ],
+ "excerpt": "Run builds inside Hyper_ container",
+ "gav": "sh.hyper.plugins:hyper-slaves:0.1.1",
+ "labels": [
+ "slaves"
+ ],
+ "name": "hyper-slaves",
+ "previousTimestamp": "2016-09-08T13:43:34.00Z",
+ "previousVersion": "0.1.0",
+ "releaseTimestamp": "2016-09-08T14:48:18.00Z",
+ "requiredCore": "2.7.2",
+ "scm": "github.com",
+ "sha1": "+Et7tWXpI6t9OvMhEJji5Q5gQws=",
+ "title": "Hyper_ Slaves Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/hyper-slaves/0.1.1/hyper-slaves.hpi",
+ "version": "0.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hyper_+Slaves+Plugin"
+ },
+ "ibm-security-appscansource-scanner": {
+ "buildDate": "Aug 11, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kfealey",
+ "email": "kevin.fealey@aspectsecurity.com",
+ "name": "Kevin Fealey"
+ }
+ ],
+ "excerpt": "Execute application scans with IBM Security AppScan Source",
+ "gav": "com.aspectsecurity.automationservices.plugins.jenkins:ibm-security-appscansource-scanner:1.0.5",
+ "labels": [
+ "post-build",
+ "plugin-misc"
+ ],
+ "name": "ibm-security-appscansource-scanner",
+ "previousTimestamp": "2016-06-29T15:44:56.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2016-08-11T21:42:50.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "JmPjjMApFJPmYM7ZkIcyujUiLBo=",
+ "title": "IBM Security AppScan Source Scanner",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ibm-security-appscansource-scanner/1.0.5/ibm-security-appscansource-scanner.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IBM+AppScan+Source+Scanner+Plugin"
+ },
+ "ibm-security-appscanstandard-scanner": {
+ "buildDate": "Aug 31, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tlopesPT",
+ "email": "tiago.lopes@criticalsoftware.com",
+ "name": "Tiago Lopes"
+ }
+ ],
+ "excerpt": "Provides integration with IBM's AppScan Standard using the provided command line interface.",
+ "gav": "appscanstandard-integration:ibm-security-appscanstandard-scanner:2.4",
+ "labels": [
+ "post-build",
+ "misc"
+ ],
+ "name": "ibm-security-appscanstandard-scanner",
+ "previousTimestamp": "2016-08-23T11:21:52.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2016-08-31T12:56:38.00Z",
+ "requiredCore": "2.0",
+ "scm": "github.com",
+ "sha1": "eH2j7BC1Z6dX1zDo+p+QzN19dII=",
+ "title": "IBM Security AppScan Standard Scanner",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ibm-security-appscanstandard-scanner/2.4/ibm-security-appscanstandard-scanner.hpi",
+ "version": "2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IBM+Security+AppScan+Standard+Scanner+Plugin"
+ },
+ "icescrum": {
+ "buildDate": "Aug 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vbarrier",
+ "email": "vbarrier@kagilum.com",
+ "name": "Vincent Barrier"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.icescrum.org'>iceScrum Pro</a> to Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:icescrum:1.0.5.7",
+ "labels": [
+ "report",
+ "external"
+ ],
+ "name": "icescrum",
+ "previousTimestamp": "2013-12-17T11:53:52.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2016-08-08T21:03:14.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "qcOj8CiqfrtuQg0ADfKfeCa9fHo=",
+ "title": "iceScrum plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/icescrum/1.0.5.7/icescrum.hpi",
+ "version": "1.0.5.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/iceScrum+Plugin"
+ },
+ "icon-shim": {
+ "buildDate": "Feb 23, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tfennelly",
+ "name": "Tom Fennelly"
+ }
+ ],
+ "excerpt": "This plugin allows other Jenkins plugins to take advantage of the &lt;l:icon&gt; tag. ",
+ "gav": "org.jenkins-ci.plugins.icon-shim:icon-shim:2.0.3",
+ "labels": [
+ "ui"
+ ],
+ "name": "icon-shim",
+ "previousTimestamp": "2016-01-09T15:01:12.00Z",
+ "previousVersion": "2.0.2",
+ "releaseTimestamp": "2016-02-23T18:08:18.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "umtSUbNwIuqU6JGEQcBxqFt1X24=",
+ "title": "Icon Shim Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/icon-shim/2.0.3/icon-shim.hpi",
+ "version": "2.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Icon+Shim+Plugin"
+ },
+ "idobata-notifier": {
+ "buildDate": "May 19, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tototoshi",
+ "email": "t.toshi.0412@gmail.com",
+ "name": "Toshiyuki Takahashi"
+ }
+ ],
+ "excerpt": "This plugin notifies build status to idobata",
+ "gav": "org.jenkins-ci.plugins:idobata-notifier:1.0",
+ "labels": [
+ "notifier"
+ ],
+ "name": "idobata-notifier",
+ "releaseTimestamp": "2014-05-19T12:07:28.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "EaDKo617qbYbpi4/qJcdMYMuRRc=",
+ "title": "Idobata Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/idobata-notifier/1.0/idobata-notifier.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Idobata+Notifier"
+ },
+ "ifttt-build-notifier": {
+ "buildDate": "Nov 24, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "upgundecha",
+ "email": "upgundecha@gmail.com",
+ "name": "Unmesh Gundecha"
+ }
+ ],
+ "excerpt": "A Simple Jenkins Build Status Notifier for IFTTT Maker Channel Trigger",
+ "gav": "org.jenkins-ci.plugins:ifttt-build-notifier:1.1",
+ "labels": [
+ "scm",
+ "misc"
+ ],
+ "name": "ifttt-build-notifier",
+ "previousTimestamp": "2015-11-23T21:57:12.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-11-24T08:07:06.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "9Z2bwqRXf/FkL8W3gJ/SvXRt3zA=",
+ "title": "IFTTT Build Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ifttt-build-notifier/1.1/ifttt-build-notifier.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IFTTT+Build+Notifier"
+ },
+ "image-gallery": {
+ "buildDate": "Jun 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kinow",
+ "email": "brunodepaulak@yahoo.com.br",
+ "name": "Bruno P. Kinoshita"
+ }
+ ],
+ "excerpt": "This plug-in reads a job workspace and collects images to produce an image gallery using <a href='http://www.jacklmoore.com/colorbox'>colorbox</a> lightbox Javascript library. ",
+ "gav": "com.tupilabs.image_gallery:image-gallery:1.4",
+ "labels": [
+ "report"
+ ],
+ "name": "image-gallery",
+ "previousTimestamp": "2016-03-19T15:18:02.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-06-21T00:56:02.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "5JAh359Ev3i12OwF6YCogBD/RtY=",
+ "title": "Image Gallery Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/image-gallery/1.4/image-gallery.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Image+Gallery+Plugin"
+ },
+ "imagecomparison": {
+ "buildDate": "Nov 23, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dt",
+ "email": "dim.tbaum@gmail.com",
+ "name": "Dimitri Tenenbaum"
+ }
+ ],
+ "excerpt": "This plugin calculates pixel similarity between any two images, for example between live screenshot generated by build and an expected screenshot. ",
+ "gav": "org.jenkins-ci.plugins:imagecomparison:1.4",
+ "labels": [],
+ "name": "imagecomparison",
+ "previousTimestamp": "2015-06-07T14:26:38.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2015-11-23T22:44:08.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "gQe3mq8uZ0BEpAZiLAC2/DoY/9U=",
+ "title": "Image comparison plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/imagecomparison/1.4/imagecomparison.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ImageComparison+Plugin"
+ },
+ "implied-labels": {
+ "buildDate": "Aug 27, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Infer dynamic node labels using configured implications.",
+ "gav": "org.jenkins-ci.plugins:implied-labels:0.5",
+ "labels": [],
+ "name": "implied-labels",
+ "previousTimestamp": "2014-02-14T21:27:34.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2015-08-27T07:53:58.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "Dir51X041KiE72fSfxr1TW7iwx8=",
+ "title": "Implied Labels Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/implied-labels/0.5/implied-labels.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Implied+Labels+Plugin"
+ },
+ "inedo-buildmaster": {
+ "buildDate": "May 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "andrew-sumner",
+ "email": "andrew.sumner@xtra.co.nz",
+ "name": "Andrew Sumner"
+ }
+ ],
+ "excerpt": "This plugin integrates Inedo BuildMaster to Jenkins allowing Jenkins jobs to gather version information from BuildMaster and trigger builds on an application. ",
+ "gav": "com.inedo.buildmaster:inedo-buildmaster:1.3",
+ "labels": [
+ "external"
+ ],
+ "name": "inedo-buildmaster",
+ "previousTimestamp": "2015-05-14T19:44:20.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-05-15T16:24:06.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "MIqUR507jYjOPcH9Do6QnDXpFRo=",
+ "title": "Inedo BuildMaster plugin for Jenkins.",
+ "url": "http://updates.jenkins-ci.org/download/plugins/inedo-buildmaster/1.3/inedo-buildmaster.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Inedo+BuildMaster+Plugin"
+ },
+ "inedo-proget": {
+ "buildDate": "Jul 07, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "andrew-sumner",
+ "email": "andrew.sumner@xtra.co.nz",
+ "name": "Andrew Sumner"
+ }
+ ],
+ "excerpt": "This plugin integrates Inedo ProGet with Jenkins allowing Jenkins jobs to create and upload, or download and extract, universal packages. ",
+ "gav": "com.inedo.proget:inedo-proget:0.3",
+ "labels": [
+ "external"
+ ],
+ "name": "inedo-proget",
+ "previousTimestamp": "2016-05-17T22:53:36.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2016-07-07T23:13:26.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "jzg2LlIDLrxGwC28eqFVmeUSujk=",
+ "title": "Inedo ProGet Plugin.",
+ "url": "http://updates.jenkins-ci.org/download/plugins/inedo-proget/0.3/inedo-proget.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Inedo+ProGet+Plugin"
+ },
+ "influxdb": {
+ "buildDate": "Sep 28, 2016",
+ "dependencies": [
+ {
+ "name": "jacoco",
+ "optional": false,
+ "version": "1.0.9"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2-beta-4"
+ },
+ {
+ "name": "cobertura",
+ "optional": false,
+ "version": "1.9.7"
+ },
+ {
+ "name": "robot",
+ "optional": false,
+ "version": "1.6.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aleksisimell",
+ "email": "aleksi.simell@eficode.com",
+ "name": "Aleksi Simell"
+ }
+ ],
+ "excerpt": "Sends Jenkins build metrics into InfluxDB",
+ "gav": "org.jenkins-ci.plugins:influxdb:1.8.1",
+ "labels": [
+ "post-build",
+ "report"
+ ],
+ "name": "influxdb",
+ "previousTimestamp": "2016-09-13T16:03:38.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2016-09-28T09:44:00.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "3QU5wT3EMaFn88hBL7EMvPeEkV4=",
+ "title": "InfluxDB Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/influxdb/1.8.1/influxdb.hpi",
+ "version": "1.8.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/InfluxDB+Plugin"
+ },
+ "installshield": {
+ "buildDate": "May 22, 2014",
+ "dependencies": [
+ {
+ "name": "python-wrapper",
+ "optional": false,
+ "version": "1.0.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bambas",
+ "name": "Tomas Bambas"
+ }
+ ],
+ "excerpt": "This plugin builds InstallShield projects.",
+ "gav": "org.jenkins-ci.plugins:installshield:1.0.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "installshield",
+ "previousTimestamp": "2014-03-31T18:19:00.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2014-05-22T18:22:00.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "xkSosMi4LuZrou18bHxG802pIu8=",
+ "title": "InstallShield Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/installshield/1.0.3/installshield.hpi",
+ "version": "1.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/InstallShield+Plugin"
+ },
+ "instant-messaging": {
+ "buildDate": "May 02, 2015",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "ci-game",
+ "optional": true,
+ "version": "1.16"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.7"
+ },
+ {
+ "name": "analysis-core",
+ "optional": true,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kutzi",
+ "email": "kutzi@gmx.de",
+ "name": "Christoph Kutzinski"
+ },
+ {
+ "developerId": "kohsuke",
+ "email": "kk@kohsuke.org",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin provides generic support for build notifications and a 'bot' via instant messaging protocols.",
+ "gav": "org.jvnet.hudson.plugins:instant-messaging:1.35",
+ "labels": [
+ "notifier"
+ ],
+ "name": "instant-messaging",
+ "previousTimestamp": "2015-03-14T15:39:42.00Z",
+ "previousVersion": "1.34",
+ "releaseTimestamp": "2015-05-02T11:57:36.00Z",
+ "requiredCore": "1.565",
+ "scm": "github.com",
+ "sha1": "X0l9rRtiqavQtXdUzZ44xB4ipjM=",
+ "title": "Jenkins instant-messaging plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/instant-messaging/1.35/instant-messaging.hpi",
+ "version": "1.35",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin"
+ },
+ "integrity-plugin": {
+ "buildDate": "Feb 08, 2016",
+ "compatibleSinceVersion": "1.29",
+ "dependencies": [
+ {
+ "name": "workflow-scm-step",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "PTC_Integrity_Support",
+ "email": "integrity_jenkins_plugin@ptc.com",
+ "name": "PTC Integrity Support Team"
+ }
+ ],
+ "excerpt": "This Jenkins plugin provides SCM integration capabilities to <a href='http://www.ptc.com/products/integrity'>PTC Integrity</a> for <a href='http://www.ptc.com/solutions/all/global-software-development'>Configuration Management</a>. ",
+ "gav": "org.jenkins-ci.plugins:integrity-plugin:2.0.1",
+ "labels": [
+ "scm"
+ ],
+ "name": "integrity-plugin",
+ "previousTimestamp": "2016-01-27T18:18:26.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-02-08T21:57:16.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "szauKCnG64L7GaOXp+7H1HdygHI=",
+ "title": "PTC Integrity CM - Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/integrity-plugin/2.0.1/integrity-plugin.hpi",
+ "version": "2.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PTC+Integrity+Plugin"
+ },
+ "internetmeme": {
+ "buildDate": "Jan 06, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cliffano",
+ "email": "blah@cliffano.com",
+ "name": "Cliffano Subagio"
+ },
+ {
+ "developerId": "harpreet1002",
+ "email": "singh.harry@gmail.com",
+ "name": "Harpreet Singh"
+ }
+ ],
+ "excerpt": "Displays a random &quot;internet meme&quot; with a build related message on each build page.&amp;nbsp; ",
+ "gav": "org.jenkins-ci.plugins:internetmeme:1.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "internetmeme",
+ "releaseTimestamp": "2014-01-06T13:32:58.00Z",
+ "requiredCore": "1.434",
+ "scm": "github.com",
+ "sha1": "avjW+4ZdSgxdh4aacnxCecKz9Lo=",
+ "title": "InternetMeme Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/internetmeme/1.0/internetmeme.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Internet+Meme+Plugin"
+ },
+ "ios-device-connector": {
+ "buildDate": "Oct 10, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin lists up all the iOS devices connected to the master and all the Jenkins slaves, and provide operations to them.",
+ "gav": "org.jenkins-ci.plugins:ios-device-connector:1.2",
+ "labels": [
+ "builder",
+ "ios"
+ ],
+ "name": "ios-device-connector",
+ "previousTimestamp": "2012-10-08T13:04:26.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2012-10-10T10:27:30.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "B2z2wTyA8l5uwz9HqD+xhG9Hjns=",
+ "title": "iOS Device connector plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ios-device-connector/1.2/ios-device-connector.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/iOS+Device+Connector+Plugin"
+ },
+ "iphoneview": {
+ "buildDate": "Mar 27, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sogabe",
+ "email": "sogabe@dev.java.net",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin allows you to view the status of your jobs via iPhone or iPod touch. ",
+ "gav": "org.jvnet.hudson.plugins:iphoneview:0.2",
+ "labels": [
+ "ui"
+ ],
+ "name": "iphoneview",
+ "previousTimestamp": "2010-03-21T13:45:12.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2010-03-27T19:42:02.00Z",
+ "requiredCore": "1.352",
+ "scm": "svn.dev.java.net",
+ "sha1": "nh82LEmYxlfBmqxOPukiN+QekNM=",
+ "title": "Hudson iPhoneView plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/iphoneview/0.2/iphoneview.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/iPhoneView+Plugin"
+ },
+ "ipmessenger-plugin": {
+ "buildDate": "May 12, 2012",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nabedge",
+ "name": "nabedge"
+ }
+ ],
+ "excerpt": "Sends build notifications to IPMessenger client. See http://ipmsg.org/ about IPMessenger",
+ "gav": "org.jenkins-ci.plugins:ipmessenger-plugin:1.2",
+ "labels": [
+ "notifier"
+ ],
+ "name": "ipmessenger-plugin",
+ "previousTimestamp": "2012-05-07T23:19:54.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2012-05-12T23:59:24.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "S2J4Kjc2YI1xXbYWHpZ/guOmTjw=",
+ "title": "IPMessenger plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ipmessenger-plugin/1.2/ipmessenger-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IPMessenger+Plugin"
+ },
+ "ircbot": {
+ "buildDate": "Mar 03, 2016",
+ "dependencies": [
+ {
+ "name": "ci-game",
+ "optional": true,
+ "version": "1.16"
+ },
+ {
+ "name": "instant-messaging",
+ "optional": false,
+ "version": "1.35"
+ },
+ {
+ "name": "analysis-core",
+ "optional": true,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kutzi",
+ "email": "kutzi@gmx.de",
+ "name": "Christoph Kutzinski"
+ }
+ ],
+ "excerpt": "This plugin enables Jenkins to send build not&iacute;fications via IRC and lets you interact with Jenkins via an IRC bot. Note that you also need to install the <a href='http://wiki.jenkins-ci.org/display/HUDSON/Instant+Messaging+Plugin'>instant-messaging plugin</a> .",
+ "gav": "org.jvnet.hudson.plugins:ircbot:2.27",
+ "labels": [
+ "trigger",
+ "notifier"
+ ],
+ "name": "ircbot",
+ "previousTimestamp": "2015-02-19T22:03:04.00Z",
+ "previousVersion": "2.26",
+ "releaseTimestamp": "2016-03-03T13:33:26.00Z",
+ "requiredCore": "1.565",
+ "scm": "github.com",
+ "sha1": "zjF2hx2vRYdrR7JF4+dgXlIg0ok=",
+ "title": "Jenkins IRC Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ircbot/2.27/ircbot.hpi",
+ "version": "2.27",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IRC+Plugin"
+ },
+ "ironmq-notifier": {
+ "buildDate": "Jun 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mikecaspar",
+ "email": "mike@caspar.com",
+ "name": "Mike Caspar"
+ }
+ ],
+ "excerpt": "This plugin uses the IronMQ messaging service to send status updates of build information into an enterprise level cloud based message queue.",
+ "gav": "org.jenkins-ci.plugins:ironmq-notifier:1.0.17",
+ "labels": [
+ "notifier"
+ ],
+ "name": "ironmq-notifier",
+ "previousTimestamp": "2016-06-21T13:11:26.00Z",
+ "previousVersion": "1.0.16",
+ "releaseTimestamp": "2016-06-21T13:23:12.00Z",
+ "requiredCore": "1.651.3",
+ "scm": "github.com",
+ "sha1": "W1J0hSrvY6lSQUqtuGzt/WCeY2Y=",
+ "title": "IronMQ-notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ironmq-notifier/1.0.17/ironmq-notifier.hpi",
+ "version": "1.0.17",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ironmq+Notifier"
+ },
+ "issue-link": {
+ "buildDate": "Dec 16, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "patbos",
+ "name": "Patrik Bostrom"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:issue-link:1.0.0",
+ "labels": [],
+ "name": "issue-link",
+ "releaseTimestamp": "2014-12-16T22:51:58.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "cMun5dXwpgvTCWjF1viqBrBORbA=",
+ "title": "Issue Link Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/issue-link/1.0.0/issue-link.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Issue+Link+Plugin"
+ },
+ "itest": {
+ "buildDate": "Sep 29, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "marchornbeek",
+ "email": "dl-vct@spirent.com",
+ "name": "Marc Hornbeek"
+ }
+ ],
+ "excerpt": "This plugin enables Spirent iTest support in Jenkins. Spirent iTest is a comprehensive suite creating an Agile enabled platform for agnostic network test automation that validates both virtual and physical environments for network communications, cloud services, mobile networks, IT teams and more. [http://www.spirent.com/automation] Note that this plugin does not come with Spirent iTest. ",
+ "gav": "org.jenkins-ci.plugins:itest:1.0",
+ "labels": [],
+ "name": "itest",
+ "releaseTimestamp": "2014-09-29T11:38:50.00Z",
+ "requiredCore": "1.570",
+ "scm": "github.com",
+ "sha1": "ernnePGs0cSQxEKzPbHXzq8Tf/w=",
+ "title": "Spirent iTest Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/itest/1.0/itest.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Spirent+iTest+Plugin"
+ },
+ "ivy": {
+ "buildDate": "Nov 28, 2015",
+ "dependencies": [
+ {
+ "name": "config-file-provider",
+ "optional": false,
+ "version": "2.7.5"
+ },
+ {
+ "name": "ant",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "nant",
+ "optional": true,
+ "version": "1.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "hibou"
+ },
+ {
+ "developerId": "martinficker",
+ "name": "Martin Ficker"
+ },
+ {
+ "developerId": "jmetcalf"
+ },
+ {
+ "developerId": "tbingaman",
+ "name": "Timothy Bingaman"
+ },
+ {
+ "developerId": "gboissinot",
+ "name": "Gregory Boissinot"
+ },
+ {
+ "developerId": "arothian",
+ "name": "Kevin Formsma"
+ }
+ ],
+ "excerpt": "This plugin automatically configures a build to trigger other builds based on dependency configuration via <a href='http://ant.apache.org/ivy'>Apache Ivy</a>. ",
+ "gav": "org.jenkins-ci.plugins:ivy:1.26",
+ "labels": [
+ "trigger"
+ ],
+ "name": "ivy",
+ "previousTimestamp": "2015-10-08T22:26:10.00Z",
+ "previousVersion": "1.25.1",
+ "releaseTimestamp": "2015-11-28T19:57:50.00Z",
+ "requiredCore": "1.491",
+ "scm": "github.com",
+ "sha1": "NWK4oZ568/tzNsoRiYEUNWddTJk=",
+ "title": "Ivy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ivy/1.26/ivy.hpi",
+ "version": "1.26",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ivy+Plugin"
+ },
+ "ivy-report": {
+ "buildDate": "Feb 17, 2012",
+ "dependencies": [
+ {
+ "name": "ivy",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "cchabanois",
+ "email": "cchabanois@gmail.com",
+ "name": "Cedric Chabanois"
+ }
+ ],
+ "excerpt": "This plugin publishes <a href='http://ant.apache.org/ivy'>Apache Ivy</a> reports for each build. ",
+ "gav": "org.jenkins-ci.plugins:ivy-report:1.2",
+ "labels": [],
+ "name": "ivy-report",
+ "previousTimestamp": "2012-02-16T07:01:48.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2012-02-17T22:03:36.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "wFYRVvmvk3JPqzMi1hEL9Uz+2fU=",
+ "title": "Ivy Report Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ivy-report/1.2/ivy-report.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ivy+Report+Plugin"
+ },
+ "ivytrigger": {
+ "buildDate": "May 10, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "IvyTrigger provides polling mechanisms to poll an Ivy file and triggers a build if an Ivy dependency version has changed.",
+ "gav": "org.jenkins-ci.plugins:ivytrigger:0.34",
+ "labels": [
+ "trigger"
+ ],
+ "name": "ivytrigger",
+ "previousTimestamp": "2014-10-17T22:29:38.00Z",
+ "previousVersion": "0.33",
+ "releaseTimestamp": "2015-05-10T17:55:52.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "XkhhdR9L9VcSiMlFV5yqXh78i0Y=",
+ "title": "Jenkins IvyTrigger Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ivytrigger/0.34/ivytrigger.hpi",
+ "version": "0.34",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IvyTrigger+Plugin"
+ },
+ "jabber": {
+ "buildDate": "May 02, 2015",
+ "dependencies": [
+ {
+ "name": "analysis-core",
+ "optional": true,
+ "version": "1.0"
+ },
+ {
+ "name": "instant-messaging",
+ "optional": false,
+ "version": "1.35"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.7"
+ },
+ {
+ "name": "ci-game",
+ "optional": true,
+ "version": "1.16"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kutzi",
+ "email": "kutzi@gmx.de",
+ "name": "Christoph Kutzinski"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with the Jabber/XMPP instant messaging protocol. Note that you also need to install the <a href='http://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin'>instant-messaging plugin</a>. ",
+ "gav": "org.jvnet.hudson.plugins:jabber:1.35",
+ "labels": [
+ "trigger",
+ "notifier"
+ ],
+ "name": "jabber",
+ "previousTimestamp": "2015-02-19T21:52:16.00Z",
+ "previousVersion": "1.34",
+ "releaseTimestamp": "2015-05-02T12:03:06.00Z",
+ "requiredCore": "1.565",
+ "scm": "github.com",
+ "sha1": "YIUaY28pLcZgumM8hN1MgK4elb4=",
+ "title": "Jenkins Jabber notifier plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jabber/1.35/jabber.hpi",
+ "version": "1.35",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jabber+Plugin"
+ },
+ "jabber-server-plugin": {
+ "buildDate": "Jul 16, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "peter_rader",
+ "email": "jenkins-plugin-jabber-server@e-nexus.de",
+ "name": "Peter Rader"
+ }
+ ],
+ "excerpt": "This plugin creates a Jabber-Server for your builtin-users using the Jenkin's Domainname (you need a .jks-File). ",
+ "gav": "de.e-nexus:jabber-server-plugin:1.9",
+ "labels": [
+ "trigger",
+ "notifier"
+ ],
+ "name": "jabber-server-plugin",
+ "previousTimestamp": "2014-07-15T08:32:58.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2014-07-16T22:20:00.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "3Ad31N9LG9aT77fgdWgzv4hjAGk=",
+ "title": "Jabber Server plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jabber-server-plugin/1.9/jabber-server-plugin.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jabber+Server+Plugin"
+ },
+ "jackson2-api": {
+ "buildDate": "Mar 22, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin exposes the Jackson 2 JSON APIs to other Jenkins plugins.",
+ "gav": "org.jenkins-ci.plugins:jackson2-api:2.7.3",
+ "labels": [],
+ "name": "jackson2-api",
+ "previousTimestamp": "2016-03-22T09:39:56.00Z",
+ "previousVersion": "2.7.2",
+ "releaseTimestamp": "2016-03-22T09:41:20.00Z",
+ "requiredCore": "1.612",
+ "scm": "github.com",
+ "sha1": "W//XS40e9s2EjIHHbByQFImtAJs=",
+ "title": "Jackson 2 API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jackson2-api/2.7.3/jackson2-api.hpi",
+ "version": "2.7.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jackson2+API+Plugin"
+ },
+ "jacoco": {
+ "buildDate": "Sep 29, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ },
+ {
+ "developerId": "manolo",
+ "email": "manolo@apache.org",
+ "name": "Manuel Carrasco Monino"
+ },
+ {
+ "developerId": "jfuerth",
+ "name": "Jonathan Fuerth"
+ },
+ {
+ "developerId": "kingargyle",
+ "name": "David Carver"
+ },
+ {
+ "developerId": "ognjenb",
+ "name": "Ognjen Bubalo"
+ },
+ {
+ "developerId": "centic",
+ "name": "Dominik Stadler"
+ },
+ {
+ "developerId": "csimons",
+ "name": "Christopher Simons"
+ }
+ ],
+ "excerpt": "This plugin allows you to capture code coverage report from JaCoCo. Jenkins will generate the trend report of coverage. This plugin is fork of the [Emma Plugin]. Big part of the code structure comes from it, however, it is completely refactored. It also includes functionality similar to the [Emma Coverage Column] which allows to include a column in Dashboards which displays the latest overall coverage numbers and links to the coverage report. ",
+ "gav": "org.jenkins-ci.plugins:jacoco:2.1.0",
+ "labels": [
+ "report"
+ ],
+ "name": "jacoco",
+ "previousTimestamp": "2016-01-15T22:41:26.00Z",
+ "previousVersion": "2.0.1",
+ "releaseTimestamp": "2016-09-29T12:40:36.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "CtK02wHdFOxTutqhUQzmue6uvpg=",
+ "title": "Jenkins JaCoCo plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jacoco/2.1.0/jacoco.hpi",
+ "version": "2.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JaCoCo+Plugin"
+ },
+ "japex": {
+ "buildDate": "Feb 14, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin adds <a href='https://japex.java.net/'>Japex</a> support so that Jenkins can display trend reports and other useful metrics.",
+ "gav": "org.jvnet.hudson.plugins:japex:1.7",
+ "labels": [
+ "report"
+ ],
+ "name": "japex",
+ "previousTimestamp": "2009-12-30T12:14:18.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2011-02-14T14:06:54.00Z",
+ "requiredCore": "1.377",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "Cwnz6S3GT+nNvQWAHtbW69Ymj0Y=",
+ "title": "Jenkins JAPEX plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/japex/1.7/japex.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Japex+Plugin"
+ },
+ "javadoc": {
+ "buildDate": "Jun 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "This plugin adds Javadoc support to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:javadoc:1.4",
+ "labels": [],
+ "name": "javadoc",
+ "previousTimestamp": "2014-11-06T17:12:44.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-06-17T10:51:12.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "6saBzaxuRKG3iHFKKRqvgQ4PzLQ=",
+ "title": "Javadoc Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/javadoc/1.4/javadoc.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Javadoc+Plugin"
+ },
+ "javancss": {
+ "buildDate": "Jun 11, 2011",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.413"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='http://www.kclee.de/clemens/java/javancss/'>JavaNCSS</a> build reporting tool.",
+ "gav": "org.jenkins-ci.plugins:javancss:1.1",
+ "labels": [
+ "report"
+ ],
+ "name": "javancss",
+ "previousTimestamp": "2010-06-01T16:07:30.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-06-11T19:01:42.00Z",
+ "requiredCore": "1.413",
+ "scm": "github.com",
+ "sha1": "0jV7Ovyi4H4L5Wryc42Qh2k5wL8=",
+ "title": "Jenkins JavaNCSS plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/javancss/1.1/javancss.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JavaNCSS+Plugin"
+ },
+ "javatest-report": {
+ "buildDate": "Jun 09, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ramapulavarthi",
+ "name": "Rama Pulavarthi"
+ }
+ ],
+ "excerpt": "This plugin enables Jenkins to load test output from <a href='http://java.sun.com/developer/technicalArticles/JCPtools2/'>JavaTest</a> test harness, which is commonly used by TCK tests for various JSRs.",
+ "gav": "org.jenkins-ci.plugins:javatest-report:1.6",
+ "labels": [
+ "report"
+ ],
+ "name": "javatest-report",
+ "previousTimestamp": "2015-01-20T10:22:08.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2015-06-09T10:50:14.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "7y8rI8bbROpGNcnXHPdhtCSJQw4=",
+ "title": "Jenkins JavaTest report plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/javatest-report/1.6/javatest-report.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JavaTest+Report+Plugin"
+ },
+ "jboss": {
+ "buildDate": "Nov 04, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "JulB4",
+ "email": "JulB4@dev.java.net",
+ "name": "Juliusz Brzostek"
+ }
+ ],
+ "excerpt": "This plugin allows to manage a <a href='http://en.wikipedia.org/wiki/JBoss_application_server'>JBoss Application Server</a> during build procedure. ",
+ "gav": "org.jenkins-ci.plugins:jboss:1.0.5",
+ "labels": [
+ "misc",
+ "builder"
+ ],
+ "name": "jboss",
+ "previousTimestamp": "2011-08-20T10:34:20.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2011-11-04T16:12:50.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "08xwWJsdwME3cpCv8pKym/DXXZ8=",
+ "title": "JBoss Management Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jboss/1.0.5/jboss.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JBoss+Management+Plugin"
+ },
+ "jbpm-embedded-plugin": {
+ "buildDate": "Feb 07, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jsvitak",
+ "email": "jsvitak@redhat.com",
+ "name": "Jiri Svitak"
+ }
+ ],
+ "excerpt": "This plugin implements a jBPM 5 build step, which can be used to execute a test plan described by a business process.",
+ "gav": "jenkins.plugins.jbpm:jbpm-embedded-plugin:0.2",
+ "labels": [
+ "external"
+ ],
+ "name": "jbpm-embedded-plugin",
+ "releaseTimestamp": "2013-02-07T16:42:52.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "YS3rYn4ilojUPRELnHx8VFIotq8=",
+ "title": "jBPM embedded plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jbpm-embedded-plugin/0.2/jbpm-embedded-plugin.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/jBPM+workflow+plugin"
+ },
+ "jbpm-workflow-plugin": {
+ "buildDate": "Feb 08, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jsvitak",
+ "email": "jsvitak@redhat.com",
+ "name": "Jiri Svitak"
+ }
+ ],
+ "excerpt": "This plugin implements a jBPM 5 build step, which can be used to execute a test plan described by a business process.",
+ "gav": "jenkins.plugins.jbpm:jbpm-workflow-plugin:0.3",
+ "labels": [
+ "external"
+ ],
+ "name": "jbpm-workflow-plugin",
+ "releaseTimestamp": "2013-02-08T21:19:26.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "DtzhmqmjEhm2FLcXdWG8EBPQZck=",
+ "title": "jBPM workflow plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jbpm-workflow-plugin/0.3/jbpm-workflow-plugin.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/jBPM+workflow+plugin"
+ },
+ "jcaptcha-plugin": {
+ "buildDate": "Jul 21, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "JCaptcha provider of Jenkins' CaptchaSupport extension point.",
+ "gav": "org.jenkins-ci.plugins:jcaptcha-plugin:1.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "jcaptcha-plugin",
+ "previousTimestamp": "2011-06-08T23:49:34.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-07-21T22:54:50.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "4vbTiLFQDMH98DHDbumn7127UNw=",
+ "title": "JCaptcha Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jcaptcha-plugin/1.1/jcaptcha-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JCaptcha+Plugin"
+ },
+ "jclouds-jenkins": {
+ "buildDate": "Dec 02, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sdirector",
+ "email": "mordred@inaugust.com",
+ "name": "Monty Taylor"
+ },
+ {
+ "developerId": "jclouds",
+ "email": "adrian@jclouds.org",
+ "name": "Adrian Cole"
+ },
+ {
+ "developerId": "vijaykiran",
+ "email": "mail@vijaykiran.com",
+ "name": "Vijay Kiran"
+ },
+ {
+ "developerId": "abayer",
+ "email": "andrew.bayer@gmail.com",
+ "name": "Andrew Bayer"
+ },
+ {
+ "developerId": "mavlyutov",
+ "email": "m.mavlyutov@gmail.com",
+ "name": "Marat Mavlyutov"
+ }
+ ],
+ "excerpt": "This plugin uses <a href='http://jclouds.org/'>JClouds</a> to provide slave launching on most of the currently usable Cloud infrastructures.",
+ "gav": "org.jenkins-ci.plugins:jclouds-jenkins:2.8.1-1",
+ "labels": [
+ "cluster"
+ ],
+ "name": "jclouds-jenkins",
+ "previousTimestamp": "2014-06-03T17:09:42.00Z",
+ "previousVersion": "2.8",
+ "releaseTimestamp": "2015-12-02T18:00:34.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "Ly05o5vZmdxELtzb5FZLvFRmbqc=",
+ "title": "Jenkins JClouds plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jclouds-jenkins/2.8.1-1/jclouds-jenkins.hpi",
+ "version": "2.8.1-1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JClouds+Plugin"
+ },
+ "jdepend": {
+ "buildDate": "Oct 02, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cflewis",
+ "email": "chris@cflewis.com",
+ "name": "Chris Lewis"
+ }
+ ],
+ "excerpt": "The JDepend Plugin is a plugin to generate JDepend reports for builds.",
+ "gav": "org.jenkins-ci.plugins:jdepend:1.2.4",
+ "labels": [
+ "report"
+ ],
+ "name": "jdepend",
+ "previousTimestamp": "2011-02-14T13:04:38.00Z",
+ "previousVersion": "1.2.3",
+ "releaseTimestamp": "2014-10-02T17:17:32.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "9cV0a9dnIGsPEh0kQrFPy8btGKo=",
+ "title": "Jenkins JDepend Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jdepend/1.2.4/jdepend.hpi",
+ "version": "1.2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JDepend+Plugin"
+ },
+ "jenkins-cloudformation-plugin": {
+ "buildDate": "Feb 24, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nathanagood",
+ "email": "nathan.a.good@gmail.com",
+ "name": "Nathan A. Good"
+ }
+ ],
+ "excerpt": "A plugin that allows for the creation of cloud formation stacks before running the build and the deletion of them after the build is completed. ",
+ "gav": "org.jenkins-ci.plugins:jenkins-cloudformation-plugin:1.2",
+ "labels": [
+ "buildwrapper",
+ "external",
+ "notifier"
+ ],
+ "name": "jenkins-cloudformation-plugin",
+ "previousTimestamp": "2015-08-21T09:22:18.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-02-24T06:29:26.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "crue8l6OTUmSgt3afzXL7Gz4EeE=",
+ "title": "jenkins-cloudformation-plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-cloudformation-plugin/1.2/jenkins-cloudformation-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWS+Cloudformation+Plugin"
+ },
+ "jenkins-flowdock-plugin": {
+ "buildDate": "Oct 25, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "anttipitkanen",
+ "email": "antti@flowdock.com",
+ "name": "Antti Pitkanen"
+ }
+ ],
+ "excerpt": "Posts build notifications to your flow",
+ "gav": "com.flowdock.jenkins:jenkins-flowdock-plugin:1.1.8",
+ "labels": [],
+ "name": "jenkins-flowdock-plugin",
+ "previousTimestamp": "2015-01-09T10:46:24.00Z",
+ "previousVersion": "1.1.7",
+ "releaseTimestamp": "2015-10-25T17:38:46.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "6edczkHxwu1RSn1onoxxVpeI5VQ=",
+ "title": "Flowdock plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-flowdock-plugin/1.1.8/jenkins-flowdock-plugin.hpi",
+ "version": "1.1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Flowdock+Plugin"
+ },
+ "jenkins-jira-issue-updater": {
+ "buildDate": "Dec 03, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "laszlomiklosik",
+ "email": "laszlo.miklosik@gmail.com",
+ "name": "Laszlo Miklosik"
+ },
+ {
+ "developerId": "isparkes",
+ "email": "ian.sparks@swisscom.com",
+ "name": "Ian Sparkes"
+ }
+ ],
+ "excerpt": "This is a Jenkins plugin which updates issues in Atlassian Jira (by changing their status, adding a comment or updating fields) as part of a Jenkins job. ",
+ "gav": "info.bluefloyd.jenkins:jenkins-jira-issue-updater:1.18",
+ "labels": [
+ "external"
+ ],
+ "name": "jenkins-jira-issue-updater",
+ "previousTimestamp": "2015-10-21T21:13:50.00Z",
+ "previousVersion": "1.17",
+ "releaseTimestamp": "2015-12-03T23:36:00.00Z",
+ "requiredCore": "1.600",
+ "scm": "github.com",
+ "sha1": "sAOhD7DDmajli8qDmKr/zodVgsg=",
+ "title": "Jenkins Jira Issue Updater",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-jira-issue-updater/1.18/jenkins-jira-issue-updater.hpi",
+ "version": "1.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jira+Issue+Updater+Plugin"
+ },
+ "jenkins-multijob-plugin": {
+ "buildDate": "Aug 09, 2016",
+ "dependencies": [
+ {
+ "name": "copyartifact",
+ "optional": true,
+ "version": "1.31"
+ },
+ {
+ "name": "envinject",
+ "optional": false,
+ "version": "1.90"
+ },
+ {
+ "name": "conditional-buildstep",
+ "optional": false,
+ "version": "1.3.3"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": false,
+ "version": "2.25"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.6"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.7.1"
+ },
+ {
+ "name": "ez-templates",
+ "optional": false,
+ "version": "1.0.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "alex-n",
+ "email": "alex@tikalk.com",
+ "name": "Alex Nickolaevsky"
+ },
+ {
+ "developerId": "ronil",
+ "email": "roni@tikalk.com",
+ "name": "Roni Licht"
+ },
+ {
+ "developerId": "itaior",
+ "email": "itai@tikalk.com",
+ "name": "Itai Or"
+ }
+ ],
+ "excerpt": "This plugin, created by <a href='http://www.tikalk.com'>Tikal</a> ALM team, gives the option to define complex and hierarchical jobs structure in Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:jenkins-multijob-plugin:1.22",
+ "labels": [
+ "misc"
+ ],
+ "name": "jenkins-multijob-plugin",
+ "previousTimestamp": "2016-03-30T20:05:56.00Z",
+ "previousVersion": "1.21",
+ "releaseTimestamp": "2016-08-09T23:29:28.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "EMw7APl4a3wdAUCES1EBulr2n3c=",
+ "title": "Jenkins Multijob plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-multijob-plugin/1.22/jenkins-multijob-plugin.hpi",
+ "version": "1.22",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multijob+Plugin"
+ },
+ "jenkins-reviewbot": {
+ "buildDate": "May 03, 2015",
+ "dependencies": [
+ {
+ "name": "patch-parameter",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "yardena",
+ "name": "Yardena Meymann"
+ }
+ ],
+ "excerpt": "This plugin pulls a diff from reviewboard request, applies the patch, builds it and reports the build status as a review comment",
+ "gav": "org.jenkins-ci.plugins:jenkins-reviewbot:2.4.6",
+ "labels": [
+ "parameter",
+ "notifier"
+ ],
+ "name": "jenkins-reviewbot",
+ "previousTimestamp": "2015-04-30T21:25:00.00Z",
+ "previousVersion": "2.4",
+ "releaseTimestamp": "2015-05-03T17:09:04.00Z",
+ "requiredCore": "1.528",
+ "scm": "github.com",
+ "sha1": "hRia7U29kLyjKusxGLw/Bapb7so=",
+ "title": "Jenkins-Reviewbot",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-reviewbot/2.4.6/jenkins-reviewbot.hpi",
+ "version": "2.4.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins-Reviewbot"
+ },
+ "jenkins-tag-cloud-plugin": {
+ "buildDate": "Jul 03, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cvanes",
+ "email": "cvanes@gmail.com",
+ "name": "Chris van Es"
+ }
+ ],
+ "excerpt": "Plugin which generates a tag cloud from source code.",
+ "gav": "org.jenkins-ci.plugins:jenkins-tag-cloud-plugin:1.6",
+ "labels": [
+ "misc"
+ ],
+ "name": "jenkins-tag-cloud-plugin",
+ "previousTimestamp": "2012-04-15T05:43:28.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2012-07-03T11:31:22.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "kMIRpde1Ck+jmM61yXZZ1bac9ss=",
+ "title": "Tag Cloud Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-tag-cloud-plugin/1.6/jenkins-tag-cloud-plugin.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tag+Cloud+Plugin"
+ },
+ "jenkins-testswarm-plugin": {
+ "buildDate": "Oct 02, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "keivnnilson",
+ "name": "Kevin Nilson"
+ }
+ ],
+ "excerpt": "Testswarm is used to run javascript tests in all browser. This plugin allows you to run testswarm tests and see results from jenkins.",
+ "gav": "com.javaclimber.jenkins.testswarmplugin:jenkins-testswarm-plugin:1.2",
+ "labels": [
+ "scm"
+ ],
+ "name": "jenkins-testswarm-plugin",
+ "releaseTimestamp": "2012-10-02T00:14:10.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "il4+Q/8yWZO1vDD5pxU/4kwKAiA=",
+ "title": "testswarm-plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-testswarm-plugin/1.2/jenkins-testswarm-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/testswarm-plugin"
+ },
+ "jenkinsci-appspider-plugin": {
+ "buildDate": "Dec 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nbugash",
+ "email": "Nonico_Bugash@rapid7.com",
+ "name": "Nonico Bugash"
+ }
+ ],
+ "excerpt": "The Appspider plugin allows you to configure settings to automatically trigger Appspider scans when builds of your web application completes. This enables your team to find web security defects earlier in the software development lifecycle.",
+ "gav": "com.rapid7:jenkinsci-appspider-plugin:1.0.8",
+ "labels": [
+ "report"
+ ],
+ "name": "jenkinsci-appspider-plugin",
+ "previousTimestamp": "2015-12-14T17:19:44.00Z",
+ "previousVersion": "1.0.7",
+ "releaseTimestamp": "2015-12-15T11:16:58.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "8fr5ZA+DrD33bYhhPRFFyHz0Azg=",
+ "title": "AppSpider Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkinsci-appspider-plugin/1.0.8/jenkinsci-appspider-plugin.hpi",
+ "version": "1.0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Appspider+Build+Scanner+Plugin"
+ },
+ "jenkinslint": {
+ "buildDate": "Oct 01, 2015",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "v1v",
+ "email": "VictorMartinezRubio@gmail.com",
+ "name": "Victor Martinez"
+ }
+ ],
+ "excerpt": "Detects whether your Jenkins configuration follows those best practices&amp;nbsp; This plugin has mainly two goals: * To make it easier to detect issues in your Jenkins configuration that will cause Jenkins to blow up when you attempt to run those jobs. * To encourage discussion within the Jenkins community on the more subjective stuff. Having a set of checks to base discussion on helps drive out what we as a community think is good style. ",
+ "gav": "org.jenkins-ci.plugins:jenkinslint:0.5.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "jenkinslint",
+ "previousTimestamp": "2015-08-27T21:24:54.00Z",
+ "previousVersion": "0.4.0",
+ "releaseTimestamp": "2015-10-01T18:58:10.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "CY2Sf0lKu7xfwUV7stzSP2b9q8Q=",
+ "title": "JenkinsLint Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkinslint/0.5.0/jenkinslint.hpi",
+ "version": "0.5.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JenkinsLint+Plugin"
+ },
+ "jenkinswalldisplay": {
+ "buildDate": "Mar 25, 2015",
+ "dependencies": [
+ {
+ "name": "nested-view",
+ "optional": true,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pellepelster",
+ "email": "pellepelster@gmail.com",
+ "name": "Christian Pelster"
+ }
+ ],
+ "excerpt": "A wall display that shows job build progress in a way suitable for public wall displays. Rendering is performed using javascript based on REST API calls, so requires no page refreshes.&amp;nbsp;",
+ "gav": "org.jenkins-ci.plugins:jenkinswalldisplay:0.6.30",
+ "labels": [
+ "ui"
+ ],
+ "name": "jenkinswalldisplay",
+ "previousTimestamp": "2015-03-25T10:56:06.00Z",
+ "previousVersion": "0.6.29",
+ "releaseTimestamp": "2015-03-25T20:00:30.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "v1p+TAC+tzcTNVF9y5Gj9x5v/Sc=",
+ "title": "Jenkins Wall Display Master Project",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jenkinswalldisplay/0.6.30/jenkinswalldisplay.hpi",
+ "version": "0.6.30",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Wall+Display+Plugin"
+ },
+ "jgiven": {
+ "buildDate": "Dec 26, 2015",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.37"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "wolfs",
+ "email": "stefan.wolf@tngtech.com",
+ "name": "Stefan Wolf"
+ }
+ ],
+ "excerpt": "This plugin lets you generate <a href='http://jgiven.org/'>JGiven</a> reports as a post-build action.",
+ "gav": "org.jenkins-ci.plugins:jgiven:0.10.0",
+ "labels": [
+ "report"
+ ],
+ "name": "jgiven",
+ "previousTimestamp": "2015-10-14T00:16:16.00Z",
+ "previousVersion": "0.9.1",
+ "releaseTimestamp": "2015-12-26T14:12:50.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "ojSWNKeUVLwEvF1MDJRD8m15zCE=",
+ "title": "JGiven Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jgiven/0.10.0/jgiven.hpi",
+ "version": "0.10.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JGiven+Plugin"
+ },
+ "jianliao": {
+ "buildDate": "Jun 23, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jianliao",
+ "email": "nl.martian@gmail.com",
+ "name": "Junguan Zhu"
+ }
+ ],
+ "excerpt": "This plugin allows your team to setup build notifications to be sent to Jianliao topics. To enable notifications add &quot;Jianlia&quot; as a post-build step.",
+ "gav": "org.jenkins-ci.plugins:jianliao:1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "jianliao",
+ "previousTimestamp": "2015-06-19T11:41:24.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-06-23T15:03:02.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "eUidIvojEuO9vMgoJ/sjrvqDzfQ=",
+ "title": "Jianliao Notification Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jianliao/1.1/jianliao.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jianliao+Plugin"
+ },
+ "jigomerge": {
+ "buildDate": "Aug 04, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vberetti",
+ "name": "Vincent Beretti"
+ }
+ ],
+ "excerpt": "This plugin adds the ability to directly merge Subversion branches in Jenkins. See&amp;nbsp;<a href='http://code.google.com/p/jigomerge/'>http://code.google.com/p/jigomerge/</a>",
+ "gav": "org.jenkins-ci.plugins:jigomerge:0.9",
+ "labels": [
+ "builder"
+ ],
+ "name": "jigomerge",
+ "previousTimestamp": "2015-08-18T14:29:18.00Z",
+ "previousVersion": "0.8",
+ "releaseTimestamp": "2016-08-04T00:45:32.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "P5dm3uPnRNoRoDGtpuV1/P9uW9k=",
+ "title": "Jigomerge plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jigomerge/0.9/jigomerge.hpi",
+ "version": "0.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jigomerge+plugin"
+ },
+ "jira": {
+ "buildDate": "Mar 26, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.12"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olamy",
+ "name": "Olivier Lamy"
+ },
+ {
+ "developerId": "warden",
+ "name": "Radek Antoniuk"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.atlassian.com/software/jira/'>Atlassian JIRA</a> to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:jira:2.2.1",
+ "labels": [
+ "maven",
+ "external"
+ ],
+ "name": "jira",
+ "previousTimestamp": "2016-02-20T17:01:10.00Z",
+ "previousVersion": "2.2",
+ "releaseTimestamp": "2016-03-26T23:24:28.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "AOKA3vVcKFwNmw5rufZSeP7hJXE=",
+ "title": "Jenkins JIRA plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jira/2.2.1/jira.hpi",
+ "version": "2.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JIRA+Plugin"
+ },
+ "jira-ext": {
+ "buildDate": "May 24, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.2.3"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.39"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dalvizu",
+ "email": "alvizu@gmail.com",
+ "name": "Dan Alvizu"
+ }
+ ],
+ "excerpt": "A plugin for Jenkins CI to update JIRA tickets in an extensible way: both what to update&amp;nbsp;and how to up date are exposed as Extension Points",
+ "gav": "org.jenkins-ci.plugins:jira-ext:0.5",
+ "labels": [
+ "external"
+ ],
+ "name": "jira-ext",
+ "previousTimestamp": "2016-03-04T17:17:10.00Z",
+ "previousVersion": "0.4.1",
+ "releaseTimestamp": "2016-05-24T21:01:04.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "Oc0NlHyR+JMadAoPTjSEcvCLvio=",
+ "title": "jira-ext Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jira-ext/0.5/jira-ext.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jira-Ext+Plugin"
+ },
+ "jira-trigger": {
+ "buildDate": "Aug 01, 2016",
+ "compatibleSinceVersion": "0.2.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ceilfors",
+ "email": "wisen@ceilfors.com",
+ "name": "Wisen Tanasa"
+ }
+ ],
+ "excerpt": "Triggers a build when a certain condition is matched in JIRA.",
+ "gav": "org.jenkins-ci.plugins:jira-trigger:0.2.3",
+ "labels": [
+ "trigger",
+ "external"
+ ],
+ "name": "jira-trigger",
+ "previousTimestamp": "2016-04-19T10:20:56.00Z",
+ "previousVersion": "0.2.2",
+ "releaseTimestamp": "2016-08-01T07:56:54.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "tq7Xt+0daU1RkM4V+orKsEYEcSo=",
+ "title": "JIRA Trigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jira-trigger/0.2.3/jira-trigger.hpi",
+ "version": "0.2.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JIRA+Trigger+Plugin"
+ },
+ "job-direct-mail": {
+ "buildDate": "May 17, 2013",
+ "dependencies": [
+ {
+ "name": "email-ext",
+ "optional": false,
+ "version": "2.25"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.494"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "boev",
+ "email": "iordan.boev@gmail.com",
+ "name": "Yordan Boev"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to send emails directly from a Job/Build View. ",
+ "gav": "org.jenkins-ci.plugins:job-direct-mail:1.5",
+ "labels": [
+ "ui",
+ "emailext"
+ ],
+ "name": "job-direct-mail",
+ "previousTimestamp": "2013-04-23T18:24:40.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2013-05-17T12:33:04.00Z",
+ "requiredCore": "1.494",
+ "scm": "github.com",
+ "sha1": "70U7X0unXzulKs9ZVXQMIrXGfLA=",
+ "title": "Job Direct Mail Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-direct-mail/1.5/job-direct-mail.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Direct+Mail+Plugin"
+ },
+ "job-dsl": {
+ "buildDate": "Sep 13, 2016",
+ "compatibleSinceVersion": "1.51",
+ "dependencies": [
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "vsphere-cloud",
+ "optional": true,
+ "version": "1.1.11"
+ },
+ {
+ "name": "config-file-provider",
+ "optional": true,
+ "version": "2.8.1"
+ },
+ {
+ "name": "managed-scripts",
+ "optional": true,
+ "version": "1.2.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "quidryan",
+ "email": "jryan@netflix.com",
+ "name": "Justin Ryan"
+ },
+ {
+ "developerId": "andrewharmellaw",
+ "email": "andrew@harmel-law.com",
+ "name": "Andrew Harmel-Law"
+ },
+ {
+ "developerId": "daspilker",
+ "email": "mail@daniel-spilker.com",
+ "name": "Daniel Spilker"
+ },
+ {
+ "developerId": "sheehan",
+ "email": "mr.sheehan@gmail.com",
+ "name": "Matt Sheehan"
+ }
+ ],
+ "excerpt": "The job-dsl-plugin allows the programmatic creation of projects using a DSL. Pushing job creation into a script allows you to automate and standardize your Jenkins installation, unlike anything possible before. ",
+ "gav": "org.jenkins-ci.plugins:job-dsl:1.51",
+ "labels": [
+ "builder"
+ ],
+ "name": "job-dsl",
+ "previousTimestamp": "2016-08-17T21:50:44.00Z",
+ "previousVersion": "1.50",
+ "releaseTimestamp": "2016-09-13T14:50:50.00Z",
+ "requiredCore": "1.625",
+ "scm": "github.com",
+ "sha1": "pvygRieqqFiwCMN/P7j5TozmG2U=",
+ "title": "Job DSL",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-dsl/1.51/job-dsl.hpi",
+ "version": "1.51",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+DSL+Plugin"
+ },
+ "job-exporter": {
+ "buildDate": "Jan 27, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "m31",
+ "email": "michael@meyling.com",
+ "name": "Michael Meyling"
+ }
+ ],
+ "excerpt": "Adds a build step that exports runtime parameters into a properties file (e.g who triggered the build, what is her email address...). This information can be read by other build steps.",
+ "gav": "org.jenkins-ci.plugins:job-exporter:0.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "job-exporter",
+ "previousTimestamp": "2011-03-22T22:31:20.00Z",
+ "previousVersion": "0.3.1",
+ "releaseTimestamp": "2012-01-27T09:48:32.00Z",
+ "requiredCore": "1.433",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "2SC4lvJtUwtW5e6ImdSJafagjJk=",
+ "title": "export dynamic job data",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-exporter/0.4/job-exporter.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Exporter+Plugin"
+ },
+ "job-fan-in": {
+ "buildDate": "Aug 31, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "yogeshlo",
+ "email": "lonkar.yogeshr@gmail.com",
+ "name": "Yogesh Lonkar"
+ }
+ ],
+ "excerpt": "This plugin provides a&amp;nbsp;watch on upstream projects to trigger downstream projects once all the upstream projects are build &amp; have stable status. Easier to join multiple project to trigger single downstream project. This plugin can be used with Build Pipeline, Delivery Pipeline etc. It solves complexity of merging pipeline flows from multiple branches to single. ",
+ "gav": "org.jenkins-ci.plugins:job-fan-in:1.1.1",
+ "labels": [
+ "",
+ "trigger"
+ ],
+ "name": "job-fan-in",
+ "previousTimestamp": "2016-03-31T23:17:18.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-08-31T12:43:40.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "oHSjcX6yttDni+9hSH2h3xl50Yo=",
+ "title": "JobFanIn",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-fan-in/1.1.1/job-fan-in.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JobFanIn+Plugin"
+ },
+ "job-import-plugin": {
+ "buildDate": "Sep 13, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.24"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ },
+ {
+ "developerId": "escoem",
+ "email": "escoem@gmail.com",
+ "name": "Emilio Escobar"
+ }
+ ],
+ "excerpt": "Import jobs from another Jenkins instance.",
+ "gav": "org.jenkins-ci.plugins:job-import-plugin:1.5",
+ "labels": [
+ "misc"
+ ],
+ "name": "job-import-plugin",
+ "previousTimestamp": "2016-04-01T11:56:04.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2016-09-13T12:21:48.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "ds3n8qNA+SHbj3qjS05XyX96Fd8=",
+ "title": "Job Import Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-import-plugin/1.5/job-import-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Import+Plugin"
+ },
+ "job-log-logger-plugin": {
+ "buildDate": "Jan 17, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Write the job log to the underlying logging system.",
+ "gav": "org.jenkins-ci.plugins:job-log-logger-plugin:1.0",
+ "labels": [
+ "misc",
+ "buildwrapper"
+ ],
+ "name": "job-log-logger-plugin",
+ "releaseTimestamp": "2012-01-17T00:14:12.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "ikHWj/fSsoafQKcxjIV9Ov5UOm0=",
+ "title": "Job Log Logger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-log-logger-plugin/1.0/job-log-logger-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Log+Logger+Plugin"
+ },
+ "job-node-stalker": {
+ "buildDate": "Dec 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "fneves",
+ "email": "fabio.neves@datalex.com",
+ "name": "Fabio Neves"
+ },
+ {
+ "developerId": "baris_batiege",
+ "email": "baris.batiege@datalex.com",
+ "name": "Baris Batiege"
+ }
+ ],
+ "excerpt": "This plugin lets you configure jobs to run on the same node, and if desired the same workspace, as another job.",
+ "gav": "org.jenkins-ci.plugins:job-node-stalker:1.0.5",
+ "labels": [
+ "misc",
+ "buildwrapper",
+ "slaves",
+ "cluster"
+ ],
+ "name": "job-node-stalker",
+ "previousTimestamp": "2013-09-13T09:17:42.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2015-12-18T10:49:18.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "XBvg58q6O9h+uVYWQZnG/VRuTfc=",
+ "title": "Job Node Stalker",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-node-stalker/1.0.5/job-node-stalker.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Node+Stalker+Plugin"
+ },
+ "job-parameter-summary": {
+ "buildDate": "Jul 29, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ogondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:job-parameter-summary:0.3",
+ "labels": [],
+ "name": "job-parameter-summary",
+ "previousTimestamp": "2014-01-04T17:07:22.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2014-07-29T20:06:32.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "VTyPPlL9fww/lnXYp5qUwPrtYSU=",
+ "title": "Job Parameter Summary Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-parameter-summary/0.3/job-parameter-summary.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Parameter+Summary+Plugin"
+ },
+ "job-poll-action-plugin": {
+ "buildDate": "Mar 07, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provides an easy mechanism to force a job to poll for SCM changes.",
+ "gav": "org.jenkins-ci.plugins:job-poll-action-plugin:1.0",
+ "labels": [
+ "misc",
+ "trigger"
+ ],
+ "name": "job-poll-action-plugin",
+ "releaseTimestamp": "2012-03-07T22:26:34.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "qehDx0VLMjyHlb/uULkO2hKvaxU=",
+ "title": "Job Poll Action Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-poll-action-plugin/1.0/job-poll-action-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Poll+Action+Plugin"
+ },
+ "job-restrictions": {
+ "buildDate": "Aug 04, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "The plugin allows restricting job executions in order to change their behavior or to harden the security. With this plugin it is possible to configure nodes to accept only particular jobs. It is also possible to prevent job triggering by users and other jobs using various conditions. ",
+ "gav": "com.synopsys.arc.jenkinsci.plugins:job-restrictions:0.5",
+ "labels": [
+ "misc",
+ "security"
+ ],
+ "name": "job-restrictions",
+ "previousTimestamp": "2015-01-18T21:15:36.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2016-08-04T20:28:10.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "/WbOFKQkZ96Y0LmCfpH0P8tB+Vs=",
+ "title": "Jenkins Job Restrictions Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-restrictions/0.5/job-restrictions.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Restrictions+Plugin"
+ },
+ "job-strongauth-simple": {
+ "buildDate": "Dec 17, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kkkon",
+ "name": "KK.Kon"
+ }
+ ],
+ "excerpt": "This plugin allows you to safety builds for job, when multi-people approved ",
+ "gav": "org.jenkins-ci.plugins:job-strongauth-simple:0.5",
+ "labels": [
+ "builder"
+ ],
+ "name": "job-strongauth-simple",
+ "previousTimestamp": "2012-12-08T10:46:30.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2012-12-17T11:58:00.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "gwM1pQC1RLQKw7GCP8q6aYvfuh4=",
+ "title": "Job StrongAuthSimple Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/job-strongauth-simple/0.5/job-strongauth-simple.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+StrongAuthSimple+Plugin"
+ },
+ "jobConfigHistory": {
+ "buildDate": "Jul 21, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "mfriedenhagen",
+ "email": "mfriedenhagen@gmail.com",
+ "name": "Mirko Friedenhagen"
+ },
+ {
+ "developerId": "kstutz",
+ "email": "kathi.stutz@1und1.de",
+ "name": "Kathi Stutz"
+ },
+ {
+ "developerId": "boev",
+ "email": "iordan.boev@gmail.com",
+ "name": "Yordan Boev"
+ },
+ {
+ "developerId": "Jochen-A-Fuerbacher",
+ "email": "jochen.fuerbacher@1und1.de",
+ "name": "Jochen A. Fuerbacher"
+ }
+ ],
+ "excerpt": "Saves copies of all job and system configurations.",
+ "gav": "org.jenkins-ci.plugins:jobConfigHistory:2.15",
+ "labels": [
+ "ui",
+ "misc"
+ ],
+ "name": "jobConfigHistory",
+ "previousTimestamp": "2016-05-09T11:29:42.00Z",
+ "previousVersion": "2.14",
+ "releaseTimestamp": "2016-07-21T11:12:34.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "FLbKHOUwTP28kRNbhajcngsXXUo=",
+ "title": "Jenkins Job Configuration History Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jobConfigHistory/2.15/jobConfigHistory.hpi",
+ "version": "2.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JobConfigHistory+Plugin"
+ },
+ "jobcopy-builder": {
+ "buildDate": "Jul 24, 2016",
+ "compatibleSinceVersion": "1.4.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ikedam",
+ "name": "IKEDA Yasuyuki"
+ }
+ ],
+ "excerpt": "This plugin adds &quot;Copy Job&quot; as a build step.",
+ "gav": "jp.ikedam.jenkins.plugins:jobcopy-builder:1.4.0",
+ "labels": [
+ "builder"
+ ],
+ "name": "jobcopy-builder",
+ "previousTimestamp": "2015-05-24T11:53:42.00Z",
+ "previousVersion": "1.3.0",
+ "releaseTimestamp": "2016-07-24T10:50:58.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "+opVCguxSC3HnJ+E70e39pjZA4E=",
+ "title": "Jobcopy Builder plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jobcopy-builder/1.4.0/jobcopy-builder.hpi",
+ "version": "1.4.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jobcopy+Builder+plugin"
+ },
+ "jobdelete-builder": {
+ "buildDate": "Sep 23, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sona-tar",
+ "email": "sona.zip@gmail.com",
+ "name": "sona-tar"
+ }
+ ],
+ "excerpt": "Jenkins plugin to delete jobs in a build step.",
+ "gav": "org.jenkins-ci.plugins:jobdelete-builder:1.0",
+ "labels": [
+ "builder"
+ ],
+ "name": "jobdelete-builder",
+ "releaseTimestamp": "2015-09-23T21:28:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "Is8alZPcfwM1Yhu3vuqDwFsiNIw=",
+ "title": "JobDelete Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jobdelete-builder/1.0/jobdelete-builder.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JobDelete+Builder+Plugin"
+ },
+ "jobgenerator": {
+ "buildDate": "Apr 13, 2014",
+ "dependencies": [
+ {
+ "name": "conditional-buildstep",
+ "optional": false,
+ "version": "1.2.2"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "0.10"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": false,
+ "version": "2.18"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "syl20bnr",
+ "email": "sylvain.benner@gmail.com",
+ "name": "Sylvain Benner"
+ }
+ ],
+ "excerpt": "This plugin adds a new job type &quot;Job Generator&quot; which can generate new projects when executed.",
+ "gav": "org.jenkins-ci.plugins:jobgenerator:1.22",
+ "labels": [
+ "misc",
+ "parameter"
+ ],
+ "name": "jobgenerator",
+ "previousTimestamp": "2014-02-16T00:05:46.00Z",
+ "previousVersion": "1.21",
+ "releaseTimestamp": "2014-04-13T18:52:04.00Z",
+ "requiredCore": "1.489",
+ "scm": "github.com",
+ "sha1": "D6LQdHWhkxALpHICElpfhtFkXvs=",
+ "title": "Job Generator",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jobgenerator/1.22/jobgenerator.hpi",
+ "version": "1.22",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Generator+Plugin"
+ },
+ "jobrequeue": {
+ "buildDate": "Sep 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bwall",
+ "email": "bwall@openbwall.com",
+ "name": "Brian Wallace"
+ }
+ ],
+ "excerpt": "A plugin to requeue any jobs that fail due to the remote slave going down.",
+ "gav": "org.jenkins-ci.plugins:jobrequeue:1.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "jobrequeue",
+ "previousTimestamp": "2013-04-17T14:04:48.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-09-08T13:55:06.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "Oo6nVNNFo/OQaAxzOfOmn0P44i0=",
+ "title": "Requeue Job Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jobrequeue/1.1/jobrequeue.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JobRequeue-Plugin"
+ },
+ "jobrevision": {
+ "buildDate": "Jan 03, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin enables users to set a revision (a version) for the Jenkins job.",
+ "gav": "org.jenkins-ci.plugins:jobrevision:0.6",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "jobrevision",
+ "previousTimestamp": "2011-05-16T21:55:38.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2012-01-03T01:10:46.00Z",
+ "requiredCore": "1.410",
+ "scm": "github.com",
+ "sha1": "q8lTZoa/FC+Yko0SuF7Abii8gYM=",
+ "title": "Job Revision Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jobrevision/0.6/jobrevision.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JobRevision+Plugin"
+ },
+ "jobtemplates": {
+ "buildDate": "Sep 26, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mklein",
+ "email": "michael.klein1@1und1.de",
+ "name": "Michael Klein"
+ },
+ {
+ "developerId": "kstutz",
+ "email": "kathi.stutz@1und1.de",
+ "name": "Kathi Stutz"
+ }
+ ],
+ "excerpt": "Allows you to create new jobs from templates.",
+ "gav": "com.unitedinternet.jenkins.plugins.jobtemplates:jobtemplates:1.0",
+ "labels": [],
+ "name": "jobtemplates",
+ "releaseTimestamp": "2013-09-26T15:04:40.00Z",
+ "requiredCore": "1.424.6",
+ "scm": "github.com",
+ "sha1": "h9+M3irKDIukcZYteq+3qs4O1NA=",
+ "title": "jobtemplates Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jobtemplates/1.0/jobtemplates.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/jobtemplates+Plugin"
+ },
+ "jobtype-column": {
+ "buildDate": "Nov 22, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mindless",
+ "email": "alan.harder@gmail.com",
+ "name": "Alan Harder"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Adds column showing job type that can be configured in views.",
+ "gav": "org.jenkins-ci.plugins:jobtype-column:1.3",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "jobtype-column",
+ "previousTimestamp": "2011-12-10T00:01:38.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-11-22T00:39:46.00Z",
+ "requiredCore": "1.465",
+ "scm": "github.com",
+ "sha1": "qysh5vJKwHhY17LMuR6H8y//vlg=",
+ "title": "Job Type Column",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jobtype-column/1.3/jobtype-column.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Type+Column+Plugin"
+ },
+ "join": {
+ "buildDate": "Jun 16, 2016",
+ "dependencies": [
+ {
+ "name": "parameterized-trigger",
+ "optional": true,
+ "version": "2.26"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.12"
+ },
+ {
+ "name": "downstream-ext",
+ "optional": true,
+ "version": "1.7"
+ },
+ {
+ "name": "flexible-publish",
+ "optional": true,
+ "version": "0.15.2"
+ },
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mdonohue",
+ "name": "Michael Donohue"
+ },
+ {
+ "developerId": "wolfs",
+ "name": "Stefan Wolf"
+ }
+ ],
+ "excerpt": "This plugin allows a job to be run after all the immediate downstream jobs have completed.",
+ "gav": "org.jenkins-ci.plugins:join:1.21",
+ "labels": [
+ "trigger"
+ ],
+ "name": "join",
+ "previousTimestamp": "2016-06-09T21:17:08.00Z",
+ "previousVersion": "1.20",
+ "releaseTimestamp": "2016-06-16T22:00:06.00Z",
+ "requiredCore": "1.600",
+ "scm": "github.com",
+ "sha1": "1Q91v6jo5DatFXuYNtZ4gP8NE0s=",
+ "title": "Join plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/join/1.21/join.hpi",
+ "version": "1.21",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Join+Plugin"
+ },
+ "jqs-monitoring": {
+ "buildDate": "Oct 07, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "boev",
+ "email": "iordan.boev@gmail.com",
+ "name": "Yordan Boev"
+ }
+ ],
+ "excerpt": "This plugin show information about jobs, slaves and the queue in Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:jqs-monitoring:1.4",
+ "labels": [
+ "ui"
+ ],
+ "name": "jqs-monitoring",
+ "previousTimestamp": "2013-07-19T13:28:50.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2013-10-07T11:43:24.00Z",
+ "requiredCore": "1.505",
+ "scm": "github.com",
+ "sha1": "eRwqE9AFD5LJzkeJwl2DdcPZyHc=",
+ "title": "Job/Queue/Slaves Monitoring Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jqs-monitoring/1.4/jqs-monitoring.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JQS+Monitoring+Plugin"
+ },
+ "jquery": {
+ "buildDate": "Apr 11, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kiy0taka",
+ "name": "Kiyotaka Oku"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin is a library plugin for other plugins to share common jQuery. It also allows users to use jQuery on each view descriptions.",
+ "gav": "org.jenkins-ci.plugins:jquery:1.11.2-0",
+ "labels": [
+ "ui",
+ "library"
+ ],
+ "name": "jquery",
+ "previousTimestamp": "2012-11-15T20:14:04.00Z",
+ "previousVersion": "1.7.2-1",
+ "releaseTimestamp": "2015-04-11T21:24:24.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "eOnfdKAq1jTJLA6XJ5qfQiXBY6o=",
+ "title": "Jenkins jQuery plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jquery/1.11.2-0/jquery.hpi",
+ "version": "1.11.2-0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/jQuery+Plugin"
+ },
+ "jquery-detached": {
+ "buildDate": "Mar 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tfennelly"
+ }
+ ],
+ "excerpt": "Module bundles for jQuery and jQuery UI.",
+ "gav": "org.jenkins-ci.ui:jquery-detached:1.2.1",
+ "labels": [],
+ "name": "jquery-detached",
+ "previousTimestamp": "2015-12-15T15:14:32.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-03-03T12:06:44.00Z",
+ "requiredCore": "1.580.1",
+ "sha1": "vuqbKZ3z2kJ78+Nc90ySO72bN9g=",
+ "title": "JavaScript GUI Lib: jQuery bundles (jQuery and jQuery UI) plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jquery-detached/1.2.1/jquery-detached.hpi",
+ "version": "1.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/jQuery+Detached+Plugin"
+ },
+ "jquery-ui": {
+ "buildDate": "Feb 27, 2011",
+ "dependencies": [
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.0.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kiy0taka",
+ "name": "Kiyotaka Oku"
+ }
+ ],
+ "excerpt": "This plugin allows you to use jQuery UI on each view descriptions.",
+ "gav": "org.jenkins-ci.plugins:jquery-ui:1.0.2",
+ "labels": [
+ "ui"
+ ],
+ "name": "jquery-ui",
+ "previousTimestamp": "2011-02-22T21:37:36.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2011-02-27T09:16:22.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "ViCgK4dU7QhkDfxlrK5m2Bw89og=",
+ "title": "Jenkins jQuery UI plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jquery-ui/1.0.2/jquery-ui.hpi",
+ "version": "1.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/jQuery+UI+Plugin"
+ },
+ "jsgames": {
+ "buildDate": "Aug 05, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cliffano",
+ "email": "blah@cliffano.com",
+ "name": "Cliffano Subagio"
+ }
+ ],
+ "excerpt": "Play some JavaScript games from the comfort of your Jenkins instance.",
+ "gav": "org.jenkins-ci.plugins:jsgames:0.2",
+ "labels": [],
+ "name": "jsgames",
+ "previousTimestamp": "2010-08-01T15:42:00.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2011-08-05T15:37:08.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "Hf5Xs8mph2L8KMF/J8MMt6nsgdk=",
+ "title": "JSGames Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jsgames/0.2/jsgames.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSGames+Plugin"
+ },
+ "jslint": {
+ "buildDate": "Jul 15, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gavd",
+ "email": "gavin.davies@boxuk.com",
+ "name": "Gavin Davies"
+ }
+ ],
+ "excerpt": "Lint JavaScript files, outputting to checkstyle format. Supports all JSLint options. Developed by Box UK.",
+ "gav": "org.jenkins-ci.plugins:jslint:0.8.2",
+ "labels": [],
+ "name": "jslint",
+ "previousTimestamp": "2013-04-19T13:22:44.00Z",
+ "previousVersion": "0.8.0",
+ "releaseTimestamp": "2013-07-15T16:43:54.00Z",
+ "requiredCore": "1.523",
+ "scm": "github.com",
+ "sha1": "TJHg3tCXeHwRnRnMkUYLFZ7at+k=",
+ "title": "Box UK - JSLint",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jslint/0.8.2/jslint.hpi",
+ "version": "0.8.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSLint+plugin"
+ },
+ "jsoup": {
+ "buildDate": "Sep 17, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenc",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a shared dependency on the jsoup library so that other plugins can co-operate when using this library.",
+ "gav": "org.jenkins-ci.plugins:jsoup:1.6.3",
+ "labels": [],
+ "name": "jsoup",
+ "releaseTimestamp": "2012-09-17T16:39:06.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "8ikQk817DT/9kj78e8xTq950Olk=",
+ "title": "JSoup",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jsoup/1.6.3/jsoup.hpi",
+ "version": "1.6.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSoup+Plugin"
+ },
+ "jsunit": {
+ "buildDate": "Aug 14, 2014",
+ "dependencies": [
+ {
+ "name": "xunit",
+ "optional": false,
+ "version": "1.90"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ricktw",
+ "email": "r.oosterholt@gmail.com",
+ "name": "Rick Oosterholt"
+ },
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin allows you publish <a href='http://www.jsunit.net/'>JSUnit</a> test results ",
+ "gav": "org.jenkins-ci.plugins:jsunit:1.6",
+ "labels": [
+ "report"
+ ],
+ "name": "jsunit",
+ "previousTimestamp": "2011-05-15T23:27:22.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2014-08-14T17:58:22.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "LF++W+3THwF6j6bWhSCubfFLBhc=",
+ "title": "Jenkins JSUnit plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jsunit/1.6/jsunit.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSUnit+plugin"
+ },
+ "jswidgets": {
+ "buildDate": "Apr 27, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mfriedenhagen",
+ "email": "mfriedenhagen@gmail.com",
+ "name": "Mirko Friedenhagen"
+ }
+ ],
+ "excerpt": "Allows embedding various statistics available from Jenkins in your via javascript-snippets ala ohloh.net.",
+ "gav": "org.jenkins-ci.plugins:jswidgets:1.10",
+ "labels": [
+ "ui"
+ ],
+ "name": "jswidgets",
+ "previousTimestamp": "2012-06-15T21:20:10.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2013-04-27T22:36:36.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "dtLOjHyljDTfnYHBZuyTHXdb7ys=",
+ "title": "Jenkins Javascript Widgets Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jswidgets/1.10/jswidgets.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSWidgets+Plugin"
+ },
+ "jucies": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bsideup",
+ "email": "bsideup@gmail.com",
+ "name": "Sergei Egorov"
+ }
+ ],
+ "excerpt": "Adds Jucies Update Center that provides plugins distributed in more flexible way.",
+ "gav": "org.jenkins-ci.plugins:jucies:0.2.1",
+ "labels": [],
+ "name": "jucies",
+ "previousTimestamp": "2016-05-26T09:12:58.00Z",
+ "previousVersion": "0.2.0",
+ "releaseTimestamp": "2016-10-03T15:23:14.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "82fhRnWdkr9qNb2UnUZqZVFab5s=",
+ "title": "Jucies Update Center Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jucies/0.2.1/jucies.hpi",
+ "version": "0.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jucies+Plugin"
+ },
+ "junit": {
+ "buildDate": "Aug 08, 2016",
+ "dependencies": [
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Allows JUnit-format test results to be published.",
+ "gav": "org.jenkins-ci.plugins:junit:1.18",
+ "labels": [
+ "report"
+ ],
+ "name": "junit",
+ "previousTimestamp": "2016-07-11T17:01:02.00Z",
+ "previousVersion": "1.15",
+ "releaseTimestamp": "2016-08-08T15:10:34.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "MVunfJdjUWAuyKRfp0TbT29FRqA=",
+ "title": "JUnit Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/junit/1.18/junit.hpi",
+ "version": "1.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JUnit+Plugin"
+ },
+ "junit-attachments": {
+ "buildDate": "Jul 07, 2016",
+ "dependencies": [
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.14"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "huybrechts",
+ "name": "Tom Huybrechts"
+ },
+ {
+ "developerId": "orrc",
+ "email": "chris@orr.me.uk",
+ "name": "Christopher Orr"
+ }
+ ],
+ "excerpt": "This plugin can archive certain files (attachments) together with your JUnit results.",
+ "gav": "org.jenkins-ci.plugins:junit-attachments:1.4.2",
+ "labels": [
+ "report"
+ ],
+ "name": "junit-attachments",
+ "previousTimestamp": "2016-07-05T10:53:50.00Z",
+ "previousVersion": "1.4.1",
+ "releaseTimestamp": "2016-07-07T12:30:34.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "P/rcm9S3McSZ4lIGcQVkZ+UvpYo=",
+ "title": "JUnit Attachments Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/junit-attachments/1.4.2/junit-attachments.hpi",
+ "version": "1.4.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JUnit+Attachments+Plugin"
+ },
+ "junit-realtime-test-reporter": {
+ "buildDate": "Aug 19, 2013",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.480.3"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ogondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:junit-realtime-test-reporter:0.2",
+ "labels": [],
+ "name": "junit-realtime-test-reporter",
+ "previousTimestamp": "2013-08-15T19:53:14.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2013-08-19T15:30:24.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "7oV5pJqFQ/r4MyF8j0crLm7SEDI=",
+ "title": "JUnit Realtime Test Reporter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/junit-realtime-test-reporter/0.2/junit-realtime-test-reporter.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JUnit+Realtime+Test+Reporter+Plugin"
+ },
+ "jython": {
+ "buildDate": "Dec 20, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jackgene",
+ "email": "jackgene@java.net",
+ "name": "Jack Leow"
+ },
+ {
+ "developerId": "rtyler",
+ "email": "tyler@slide.com",
+ "name": "R. Tyler Ballance"
+ }
+ ],
+ "excerpt": "Adds the ability to execute Jython script",
+ "gav": "org.jvnet.hudson.plugins:jython:1.9",
+ "labels": [
+ "builder"
+ ],
+ "name": "jython",
+ "previousTimestamp": "2011-12-16T00:27:04.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2011-12-20T00:44:30.00Z",
+ "requiredCore": "1.377",
+ "scm": "github.com",
+ "sha1": "9U3sTmSg5s5Rwr+HmV+CdVMQ0Qs=",
+ "title": "Jython Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/jython/1.9/jython.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jython+Plugin"
+ },
+ "kagemai": {
+ "buildDate": "Dec 29, 2009",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "yamkazu"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.daifukuya.com/kagemai/'>Kagemai</a> to Hudson.",
+ "gav": "org.jvnet.hudson.plugins:kagemai:1.3",
+ "labels": [
+ "external"
+ ],
+ "name": "kagemai",
+ "previousTimestamp": "2009-03-04T00:43:20.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2009-12-29T00:16:58.00Z",
+ "requiredCore": "1.324",
+ "scm": "svn.dev.java.net",
+ "sha1": "tbzjjid8VTIw+JvmX+iBRpO+je8=",
+ "title": "Hudson kagemai plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/kagemai/1.3/kagemai.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Kagemai+Plugin"
+ },
+ "keepSlaveOffline": {
+ "buildDate": "Feb 10, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ }
+ ],
+ "excerpt": "&amp;nbsp; This plugin allows to keep given slave offline after Jenkins restart.",
+ "gav": "hudson.plugins.keepSlaveOffline:keepSlaveOffline:1.0",
+ "labels": [
+ "slaves"
+ ],
+ "name": "keepSlaveOffline",
+ "releaseTimestamp": "2011-02-10T14:27:06.00Z",
+ "requiredCore": "1.391",
+ "scm": "github.com",
+ "sha1": "AX3TuzSE9BNUo5wiCbdqbPQXDkA=",
+ "title": "Keep slave offline",
+ "url": "http://updates.jenkins-ci.org/download/plugins/keepSlaveOffline/1.0/keepSlaveOffline.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Keep+slave+offline"
+ },
+ "kerberos-sso": {
+ "buildDate": "Oct 07, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "fredrikpersson",
+ "email": "fredrik6.persson@sonymobile.com",
+ "name": "Fredrik Persson"
+ },
+ {
+ "developerId": "joakim_ahle",
+ "email": "joakim.ahle@sonymobile.com",
+ "name": "Joakim Ahle"
+ },
+ {
+ "developerId": "rsandell",
+ "email": "robert.sandell@sonymobile.com",
+ "name": "Robert Sandell"
+ },
+ {
+ "developerId": "t_westling",
+ "email": "tomas.westling@sonymobile.com",
+ "name": "Tomas Westling"
+ },
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Authenticate user in Jenkins based on kerberos ticket negotiation.",
+ "gav": "com.sonymobile.jenkins.plugins.kerberos-sso:kerberos-sso:1.3",
+ "labels": [
+ "user",
+ "security"
+ ],
+ "name": "kerberos-sso",
+ "previousTimestamp": "2016-10-05T16:44:10.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-10-07T09:43:18.00Z",
+ "requiredCore": "1.568",
+ "scm": "github.com",
+ "sha1": "Ahk/FFeknTXWaVOkCBOaZBq6F08=",
+ "title": "Kerberos SSO plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/kerberos-sso/1.3/kerberos-sso.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Kerberos+SSO+Plugin"
+ },
+ "keyboard-shortcuts-plugin": {
+ "buildDate": "Apr 03, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provides keyboard shortcuts to quickly and efficiently navigate and manage Jenkins.",
+ "gav": "org.jenkins-ci.plugins:keyboard-shortcuts-plugin:1.2",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "keyboard-shortcuts-plugin",
+ "previousTimestamp": "2012-03-07T10:09:00.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2012-04-03T20:59:22.00Z",
+ "requiredCore": "1.455",
+ "scm": "github.com",
+ "sha1": "vKTNGmyvXb6df8sqM9OEQgnvRCw=",
+ "title": "Keyboard Shortcuts Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/keyboard-shortcuts-plugin/1.2/keyboard-shortcuts-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Keyboard+Shortcuts+Plugin"
+ },
+ "kiuwanJenkinsPlugin": {
+ "buildDate": "Sep 22, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jptejela",
+ "name": "Juan Pablo"
+ }
+ ],
+ "excerpt": "This plugin allows you to Run <a href='http://kiuwan.com'>Kiuwan</a> static analysis of your code as part of your continuous integration process with Jenkins. You can update your code quality information in Kiuwan automatically.",
+ "gav": "org.jenkins-ci.plugins:kiuwanJenkinsPlugin:1.4.1",
+ "labels": [
+ "external",
+ "post-build"
+ ],
+ "name": "kiuwanJenkinsPlugin",
+ "previousTimestamp": "2016-08-09T10:21:10.00Z",
+ "previousVersion": "1.4.0",
+ "releaseTimestamp": "2016-09-22T15:53:12.00Z",
+ "requiredCore": "1.532.2",
+ "scm": "github.com",
+ "sha1": "wiiI6mVpSJtqMHYqAe06y79oZKQ=",
+ "title": "Jenkins Kiuwan plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/kiuwanJenkinsPlugin/1.4.1/kiuwanJenkinsPlugin.hpi",
+ "version": "1.4.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Kiuwan+Plugin"
+ },
+ "klaros-testmanagement": {
+ "buildDate": "Feb 16, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stolp",
+ "email": "stolp@verit.de",
+ "name": "Torsten Stolpmann"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with <a href='http://www.klaros-testmanagement.com/'>Klaros-Testmanagement</a> by publishing the test results of a build to the <a href='http://www.klaros-testmanagement.com/'>Klaros-Testmanagement</a> application. The test results will be stored in the <a href='http://www.klaros-testmanagement.com/'>Klaros-Testmanagement</a> database for further evaluation and reporting purposes.",
+ "gav": "hudson.plugins.klaros:klaros-testmanagement:1.7",
+ "labels": [
+ "external"
+ ],
+ "name": "klaros-testmanagement",
+ "previousTimestamp": "2016-02-15T10:43:24.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2016-02-16T11:11:02.00Z",
+ "requiredCore": "1.388",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "YzY1dpOlRgmthn9pCzuKtG4+ab4=",
+ "title": "Klaros-Testmanagement plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/klaros-testmanagement/1.7/klaros-testmanagement.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Klaros-Testmanagement+Plugin"
+ },
+ "klocwork": {
+ "buildDate": "Aug 24, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "Aravindan",
+ "name": "Aravindan Mahendran"
+ },
+ {
+ "developerId": "gboissinot",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to publish Klocwork reports in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:klocwork:1.18",
+ "labels": [
+ "report"
+ ],
+ "name": "klocwork",
+ "previousTimestamp": "2015-03-05T00:08:00.00Z",
+ "previousVersion": "1.16.3",
+ "releaseTimestamp": "2015-08-24T17:46:48.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "AUDtijSM9cRDZzRR/qODjcyvxx0=",
+ "title": "Jenkins Klocwork Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/klocwork/1.18/klocwork.hpi",
+ "version": "1.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Klocwork+Plugin"
+ },
+ "kmap-jenkins": {
+ "buildDate": "Mar 24, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "keivoxsupport",
+ "email": "support@keivox.com",
+ "name": "Keivox Professional Services"
+ }
+ ],
+ "excerpt": "Publish mobile applications to your Keivox KMAP Private Mobile App Store [http://www.keivox.com] ",
+ "gav": "org.jenkins-ci.plugins:kmap-jenkins:1.6",
+ "labels": [
+ "upload",
+ "ios",
+ "android"
+ ],
+ "name": "kmap-jenkins",
+ "releaseTimestamp": "2014-03-24T12:20:48.00Z",
+ "requiredCore": "1.555",
+ "scm": "github.com",
+ "sha1": "yv2SchGLHBbezjRnPsOTdfRugKk=",
+ "title": "Kmap Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/kmap-jenkins/1.6/kmap-jenkins.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Keivox+KMAP+Private+Mobile+App+Store+Plugin"
+ },
+ "koji": {
+ "buildDate": "Jun 01, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vtunka",
+ "name": "Vaclav Tunka"
+ }
+ ],
+ "excerpt": "This plugin enables integration with <a href='https://fedorahosted.org/koji/'>Koji</a> build system providing clean-room environment for production builds. Main focus of Koji is on reproducibility, auditability and isolation of build executors which are freshly provisioned each time. This plugin focuses on Koji/Maven builds, however if there will be requirements to work with RPM builds, Windows native builds or images in the future, I can add the support as well and of course I will accept your contributions. You can use <a href='https://github.com/sbadakhc/kojak'>Kojak</a> scripts to easily provision &amp; automatically configure your own Koji instance including configuration of the Java/maven ecosystem. ",
+ "gav": "org.jenkins-ci.plugins:koji:0.3",
+ "labels": [
+ "report"
+ ],
+ "name": "koji",
+ "previousTimestamp": "2014-05-14T01:48:00.00Z",
+ "previousVersion": "0.1.2",
+ "releaseTimestamp": "2015-06-01T15:12:10.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "TedI80t2j/wckL6Hu3c7E8/CtkQ=",
+ "title": "Koji plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/koji/0.3/koji.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Koji+Plugin"
+ },
+ "kpp-management-plugin": {
+ "buildDate": "Aug 15, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "michaelb",
+ "email": "michael.baer@sic-software.com",
+ "name": "Michael Bär"
+ }
+ ],
+ "excerpt": "This Jenkins plugin integrates a keychains and provisioning profiles managment for iOS and OSX projects build on a mac.",
+ "gav": "sic.software:kpp-management-plugin:1.0.0",
+ "labels": [],
+ "name": "kpp-management-plugin",
+ "releaseTimestamp": "2013-08-15T16:34:32.00Z",
+ "requiredCore": "1.509.2",
+ "scm": "github.com",
+ "sha1": "rVDLxyEayl8VwEByCpr9Wxqh9A8=",
+ "title": "Keychains and Provisioning Profiles Management",
+ "url": "http://updates.jenkins-ci.org/download/plugins/kpp-management-plugin/1.0.0/kpp-management-plugin.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Keychains+and+Provisioning+Profiles+Plugin"
+ },
+ "kubernetes": {
+ "buildDate": "Aug 16, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "durable-task",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "carlos",
+ "email": "carlos@apache.org",
+ "name": "Carlos Sanchez"
+ }
+ ],
+ "excerpt": "This plugin allows slaves to be dynamically provisioned on multiple Docker hosts using <a href='https://github.com/GoogleCloudPlatform/kubernetes'>Kubernetes</a>. ",
+ "gav": "org.csanchez.jenkins.plugins:kubernetes:0.8",
+ "labels": [
+ "cluster",
+ "cloud"
+ ],
+ "name": "kubernetes",
+ "previousTimestamp": "2016-06-28T09:24:34.00Z",
+ "previousVersion": "0.7",
+ "releaseTimestamp": "2016-08-16T12:48:00.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "8Ycl4/9weRZszhJ3fQIWAw45gn8=",
+ "title": "Kubernetes plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/kubernetes/0.8/kubernetes.hpi",
+ "version": "0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Kubernetes+Plugin"
+ },
+ "kubernetes-ci": {
+ "buildDate": "Sep 30, 2016",
+ "compatibleSinceVersion": "4.0.0",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.28"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "oserna3",
+ "email": "serna@elasticbox.com",
+ "name": "Oscar Serna"
+ },
+ {
+ "developerId": "gsanchezu",
+ "email": "guillermo@elasticbox.com",
+ "name": "Guillermo Sanchez Urien"
+ }
+ ],
+ "excerpt": "Provides integration between Jenkins and Kubernetes for CI/CD scenarios based on charts",
+ "gav": "com.elasticbox.jenkins-ci.plugins:kubernetes-ci:1.2",
+ "labels": [
+ "cluster",
+ "builder",
+ "slaves"
+ ],
+ "name": "kubernetes-ci",
+ "previousTimestamp": "2016-08-11T06:43:10.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-09-30T12:04:48.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "ZKcXi9eryOTj3XiZoykEP5Mr7Lw=",
+ "title": "ElasticBox Jenkins Kubernetes CI/CD Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/kubernetes-ci/1.2/kubernetes-ci.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Kubernetes+CI+Plugin"
+ },
+ "label-linked-jobs": {
+ "buildDate": "May 08, 2016",
+ "dependencies": [
+ {
+ "name": "parameterized-trigger",
+ "optional": true,
+ "version": "2.12"
+ },
+ {
+ "name": "nodelabelparameter",
+ "optional": true,
+ "version": "1.5.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dominiquebrice",
+ "name": "Dominique Brice"
+ }
+ ],
+ "excerpt": "A plugin to facilitate maintenance when using numerous/complex labels. ",
+ "gav": "org.jenkins-ci.plugins:label-linked-jobs:5.0.1",
+ "labels": [
+ "misc",
+ "report"
+ ],
+ "name": "label-linked-jobs",
+ "previousTimestamp": "2015-12-26T16:33:54.00Z",
+ "previousVersion": "4.0.3",
+ "releaseTimestamp": "2016-05-08T12:39:58.00Z",
+ "requiredCore": "1.554",
+ "scm": "github.com",
+ "sha1": "2yvUMYt7w1j1X0dKp9WzW8nailE=",
+ "title": "Label Linked Jobs Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/label-linked-jobs/5.0.1/label-linked-jobs.hpi",
+ "version": "5.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Label+Linked+Jobs+Plugin"
+ },
+ "label-verifier": {
+ "buildDate": "Dec 08, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "oleg_nenashev",
+ "email": "nenashev@synopsys.com;o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "This plugin allows system administrator to programmatically verify the label assignment correctness on slaves.",
+ "gav": "org.jenkins-ci.plugins:label-verifier:1.1",
+ "labels": [
+ "slaves"
+ ],
+ "name": "label-verifier",
+ "previousTimestamp": "2010-09-11T16:15:24.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-12-08T12:30:40.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "Y4k4cOkAINqz8zVaLH+j5nqS0II=",
+ "title": "Jenkins Label Verifier plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/label-verifier/1.1/label-verifier.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Label+Verifier+Plugin"
+ },
+ "labeled-test-groups-publisher": {
+ "buildDate": "Nov 20, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lbordowitz",
+ "email": "laurence.bordowitz@yahoo.com",
+ "name": "Larry Bordowitz"
+ }
+ ],
+ "excerpt": "This plugin provides the functionality to group tests by types, such as &quot;unit test&quot;, &quot;smoke test&quot;, &quot;regression test&quot;, etc.",
+ "gav": "org.jvnet.hudson.plugins:labeled-test-groups-publisher:1.2.8",
+ "labels": [
+ "report"
+ ],
+ "name": "labeled-test-groups-publisher",
+ "previousTimestamp": "2015-03-16T11:32:46.00Z",
+ "previousVersion": "1.2.7",
+ "releaseTimestamp": "2015-11-20T10:56:32.00Z",
+ "requiredCore": "1.343",
+ "scm": "github.com",
+ "sha1": "WHv1dc9HeVTg53ilfcpoYr4FDkg=",
+ "title": "Labeled Test Groups Publisher",
+ "url": "http://updates.jenkins-ci.org/download/plugins/labeled-test-groups-publisher/1.2.8/labeled-test-groups-publisher.hpi",
+ "version": "1.2.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LabeledTestGroupsPublisher+Plugin"
+ },
+ "labmanager": {
+ "buildDate": "Aug 05, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tomrini",
+ "email": "trini@kernel.crashing.org",
+ "name": "Tom Rini"
+ }
+ ],
+ "excerpt": "Add VMware Lab Manager support to Jenkins",
+ "gav": "org.jenkins-ci.plugins:labmanager:0.2.8",
+ "labels": [
+ "cluster"
+ ],
+ "name": "labmanager",
+ "previousTimestamp": "2011-07-18T15:12:32.00Z",
+ "previousVersion": "0.2.7",
+ "releaseTimestamp": "2011-08-05T10:42:14.00Z",
+ "requiredCore": "1.403",
+ "scm": "github.com",
+ "sha1": "qc+HiOyoRAPvDCyvrtQ9W9pmLQ4=",
+ "title": "Jenkins VMware Lab Manager Slaves plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/labmanager/0.2.8/labmanager.hpi",
+ "version": "0.2.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lab+Manager+Plugin"
+ },
+ "last-changes": {
+ "buildDate": "Aug 21, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3.5"
+ },
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.5"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "0.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rmpestano",
+ "email": "rmpestano@gmail.com",
+ "name": "Rafael M. Pestano"
+ }
+ ],
+ "excerpt": "Shows build last changes via VCS diff between latest revisions.",
+ "gav": "org.jenkins-ci.plugins:last-changes:1.0.5",
+ "labels": [],
+ "name": "last-changes",
+ "previousTimestamp": "2016-07-27T22:21:26.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2016-08-21T21:43:44.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "s+UAjM8ZgVzYuUElJBqNUtNeiyo=",
+ "title": "Last Changes Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/last-changes/1.0.5/last-changes.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Last+Changes+Plugin"
+ },
+ "lastfailureversioncolumn": {
+ "buildDate": "Nov 02, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ajpurkiss",
+ "email": "ajpurkiss@hotmail.com",
+ "name": "Adam Purkiss"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Adds a column showing last failed version that can be configured in views.",
+ "gav": "org.jvnet.hudson.plugins:lastfailureversioncolumn:1.1",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "lastfailureversioncolumn",
+ "previousTimestamp": "2009-11-25T10:12:18.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-11-02T15:54:40.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "TrjhYHvx09364NnzSgkj+XqemQg=",
+ "title": "Last Failure Version Column",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lastfailureversioncolumn/1.1/lastfailureversioncolumn.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Last+Failure+Version+Column+Plugin"
+ },
+ "lastsuccessdescriptioncolumn": {
+ "buildDate": "Mar 29, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "email": "stephenc at apache",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "Column showing the last success description that can be configured in views.",
+ "gav": "org.jvnet.hudson.plugins:lastsuccessdescriptioncolumn:1.0",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "lastsuccessdescriptioncolumn",
+ "releaseTimestamp": "2010-03-29T12:03:02.00Z",
+ "requiredCore": "1.352",
+ "scm": "svn.dev.java.net",
+ "sha1": "I2n8cOXtRE3nJI/spxIMtHBAxn8=",
+ "title": "Last Success Description Column",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lastsuccessdescriptioncolumn/1.0/lastsuccessdescriptioncolumn.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Last+Success+Description+Column+Plugin"
+ },
+ "lastsuccessversioncolumn": {
+ "buildDate": "Nov 02, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ajpurkiss",
+ "email": "ajpurkiss@hotmail.com",
+ "name": "Adam Purkiss"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Adds a column showing last successful version that can be configured in views.",
+ "gav": "org.jvnet.hudson.plugins:lastsuccessversioncolumn:1.1",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "lastsuccessversioncolumn",
+ "previousTimestamp": "2009-11-25T10:15:48.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-11-02T16:23:24.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "MTwbngVgz/iGTTeZwjEviC8CIHo=",
+ "title": "Last Success Version Column",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lastsuccessversioncolumn/1.1/lastsuccessversioncolumn.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Last+Success+Version+Column+Plugin"
+ },
+ "ldap": {
+ "buildDate": "Sep 20, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "andresrc"
+ }
+ ],
+ "excerpt": "Adds LDAP authentication to Jenkins",
+ "gav": "org.jenkins-ci.plugins:ldap:1.13",
+ "labels": [
+ "user"
+ ],
+ "name": "ldap",
+ "previousTimestamp": "2016-04-26T22:33:38.00Z",
+ "previousVersion": "1.12",
+ "releaseTimestamp": "2016-09-20T10:04:42.00Z",
+ "requiredCore": "1.566",
+ "scm": "github.com",
+ "sha1": "0lUdRbWS0aIqoMDL5N1EXj2zfnM=",
+ "title": "LDAP Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ldap/1.13/ldap.hpi",
+ "version": "1.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LDAP+Plugin"
+ },
+ "ldapemail": {
+ "buildDate": "Jul 09, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "justinedelson",
+ "name": "Justin Edelson"
+ }
+ ],
+ "excerpt": "This plugin resolves user email addresses from an LDAP directory. It is not needed if Jenkins uses LDAP as its authentication source and user records have a standard &quot;mail&quot; attribute.",
+ "gav": "com.mtvi.plateng.hudson:ldapemail:0.8",
+ "labels": [
+ "user"
+ ],
+ "name": "ldapemail",
+ "previousTimestamp": "2011-02-14T10:47:26.00Z",
+ "previousVersion": "0.7",
+ "releaseTimestamp": "2014-07-09T13:40:06.00Z",
+ "requiredCore": "1.436",
+ "scm": "github.com",
+ "sha1": "B2UWbSgz4fFc3uYt1hyYRXxlOAs=",
+ "title": "LDAP Email Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ldapemail/0.8/ldapemail.hpi",
+ "version": "0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LDAP+Email+Plugin"
+ },
+ "leastload": {
+ "buildDate": "Jun 27, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bstick12",
+ "email": "brendan.nolan@gmail.com",
+ "name": "Brendan Nolan"
+ }
+ ],
+ "excerpt": "This plugin overrides the default Load Balancer behavior and assigns jobs to nodes with the least load ",
+ "gav": "org.jenkins-ci.plugins:leastload:1.0.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "leastload",
+ "previousTimestamp": "2013-06-13T23:23:04.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2013-06-27T21:49:34.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "jHZY83UcmJ2RU/lLspblkYz18Bo=",
+ "title": "Least Load plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/leastload/1.0.3/leastload.hpi",
+ "version": "1.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Least+Load+Plugin"
+ },
+ "leiningen-plugin": {
+ "buildDate": "Sep 25, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "pyr",
+ "email": "pyr@spootnik.org",
+ "name": "Pierre-Yves Ritschard"
+ }
+ ],
+ "excerpt": "This plugin allows building projects using <a href='http://leiningen.org/'>leiningen</a>. ",
+ "gav": "org.jenkins-ci.plugins:leiningen-plugin:0.5.6",
+ "labels": [
+ "builder"
+ ],
+ "name": "leiningen-plugin",
+ "previousTimestamp": "2012-10-29T15:00:26.00Z",
+ "previousVersion": "0.5.5",
+ "releaseTimestamp": "2013-09-25T21:00:18.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "fZJOPxTOX8TqCdO2JDGmPYwWjVo=",
+ "title": "leiningen-plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/leiningen-plugin/0.5.6/leiningen-plugin.hpi",
+ "version": "0.5.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/leiningen+plugin"
+ },
+ "lenientshutdown": {
+ "buildDate": "Jul 11, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "fredrikpersson",
+ "email": "fredrik6.persson@sonymobile.com",
+ "name": "Fredrik Persson"
+ },
+ {
+ "developerId": "joakimahle",
+ "email": "joakim.ahle@sonymobile.com",
+ "name": "Joakim Ahle"
+ },
+ {
+ "developerId": "rsandell",
+ "email": "robert.sandell@sonymobile.com",
+ "name": "Robert Sandell"
+ }
+ ],
+ "excerpt": "This plugin lets you put Jenkins in shutdown mode but still allow any downstream builds of those currently running to also complete. ",
+ "gav": "com.sonymobile.jenkins.plugins.lenientshutdown:lenientshutdown:1.0.0",
+ "labels": [
+ "cluster",
+ "slaves",
+ "misc",
+ "cli"
+ ],
+ "name": "lenientshutdown",
+ "releaseTimestamp": "2014-07-11T18:42:32.00Z",
+ "requiredCore": "1.554",
+ "scm": "github.com",
+ "sha1": "GzvNhb4Fz+iwjYQyRc52zC03uU8=",
+ "title": "Lenient shutdown plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lenientshutdown/1.0.0/lenientshutdown.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lenient+shutdown+plugin"
+ },
+ "libvirt-slave": {
+ "buildDate": "Apr 01, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.3"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "tastybug",
+ "email": "tastybug@tastybug.com",
+ "name": "Philipp Bartsch"
+ },
+ {
+ "developerId": "mmornati",
+ "email": "mmornati@byte-code.com",
+ "name": "Marco Mornati"
+ },
+ {
+ "developerId": "magnayn",
+ "email": "nigel.magnay@gmail.com",
+ "name": "Nigel Magnay"
+ }
+ ],
+ "excerpt": "Add Libvirt Hypervisor slave support to Jenkins ",
+ "gav": "org.jenkins-ci.plugins:libvirt-slave:1.8.5",
+ "labels": [
+ "slaves",
+ "cluster"
+ ],
+ "name": "libvirt-slave",
+ "previousTimestamp": "2014-04-13T09:34:10.00Z",
+ "previousVersion": "1.8.4",
+ "releaseTimestamp": "2015-04-01T22:30:08.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "KbZzQB9R+67zeps+LCqS8MXE6BQ=",
+ "title": "Jenkins Libvirt Slaves plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/libvirt-slave/1.8.5/libvirt-slave.hpi",
+ "version": "1.8.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Libvirt+Slaves+Plugin"
+ },
+ "lifx-notifier": {
+ "buildDate": "Jul 15, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "michaelneale"
+ }
+ ],
+ "excerpt": "Discover your smart <a href='http://lifx.co'>LIFX</a> lightbulbs on the network and use them as a build notifier. ",
+ "gav": "org.jenkins-ci.plugins:lifx-notifier:0.2",
+ "labels": [
+ "notifier"
+ ],
+ "name": "lifx-notifier",
+ "releaseTimestamp": "2014-07-15T09:29:30.00Z",
+ "requiredCore": "1.554.2",
+ "scm": "github.com",
+ "sha1": "q431QZ15qbwFWmM88mZx4K7scVA=",
+ "title": "LIFX notifier - smart lightbulbs build indicator",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lifx-notifier/0.2/lifx-notifier.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LIFX+notifier+plugin"
+ },
+ "linenumbers": {
+ "buildDate": "Jan 07, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vlatombe",
+ "name": "Vincent Latombe"
+ }
+ ],
+ "excerpt": "This decorates the console with line numbers and collapses build steps",
+ "gav": "org.jenkins-ci.plugins:linenumbers:1.1",
+ "labels": [],
+ "name": "linenumbers",
+ "previousTimestamp": "2014-06-02T14:53:50.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-01-07T18:52:46.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "Mm4vWHZ38rCqIBYfqjcNYatqsG8=",
+ "title": "Line Numbers plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/linenumbers/1.1/linenumbers.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Line+Numbers+Plugin"
+ },
+ "lingr-plugin": {
+ "buildDate": "Jul 03, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cactusman",
+ "email": "cactusman1980@gmail.com",
+ "name": "cactusman"
+ }
+ ],
+ "excerpt": "This plugin posts build results to Lingr.",
+ "gav": "org.jenkins-ci.plugins:lingr-plugin:0.1",
+ "labels": [],
+ "name": "lingr-plugin",
+ "releaseTimestamp": "2011-07-03T23:14:14.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "LO6eODnAR0TTzMunzjDmv9LZLk0=",
+ "title": "lingr plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lingr-plugin/0.1/lingr-plugin.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/lingr+plugin"
+ },
+ "liquibase-runner": {
+ "buildDate": "Aug 30, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "Keith",
+ "email": "keithc238@gmail.com",
+ "name": "Keith Collison"
+ }
+ ],
+ "excerpt": "Provides <a href='http://www.liquibase.org'>Liquibase</a> build steps that evaluate liquibase changesets.",
+ "gav": "org.jenkins-ci.plugins:liquibase-runner:1.1.0",
+ "labels": [
+ "builder"
+ ],
+ "name": "liquibase-runner",
+ "previousTimestamp": "2016-05-04T10:16:02.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2016-08-30T13:15:48.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "OnxYFlVAtchAdZyDxkiY4eajYjo=",
+ "title": "Liquibase Runner",
+ "url": "http://updates.jenkins-ci.org/download/plugins/liquibase-runner/1.1.0/liquibase-runner.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Liquibase+Runner"
+ },
+ "list-command": {
+ "buildDate": "Dec 13, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "wadatka",
+ "name": "Takahisa Wada"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:list-command:0.2",
+ "labels": [
+ "cli"
+ ],
+ "name": "list-command",
+ "releaseTimestamp": "2011-12-13T01:39:14.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "wsiA/aNli+2UOL7iYNN9pQqiFng=",
+ "title": "List Command Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/list-command/0.2/list-command.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/List+Command+Plugin"
+ },
+ "literate": {
+ "buildDate": "Dec 03, 2015",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "branch-api",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "The plugin provides support for the literate-style multi-branch project type. ",
+ "gav": "org.jenkins-ci.plugins:literate:1.0",
+ "labels": [],
+ "name": "literate",
+ "releaseTimestamp": "2015-12-03T15:32:10.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "+NGngPznQ1cUXZbATCHr2vzYXO8=",
+ "title": "Literate Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/literate/1.0/literate.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Literate+Plugin"
+ },
+ "livescreenshot": {
+ "buildDate": "Nov 28, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sttts",
+ "email": "sts@1stein.org",
+ "name": "Dr. Stefan Schimanski"
+ }
+ ],
+ "excerpt": "This plugin adds a column to the job list view to show a thumbnail of a screenshot. Moreover, an &quot;Screenshot&quot; action is added to each build which leads to a page with the fullsize screenshot. ",
+ "gav": "org.jenkins-ci.plugins:livescreenshot:1.4.5",
+ "labels": [
+ "buildwrapper",
+ "ui",
+ "listview-column"
+ ],
+ "name": "livescreenshot",
+ "previousTimestamp": "2013-02-05T09:02:38.00Z",
+ "previousVersion": "1.4.4",
+ "releaseTimestamp": "2013-11-28T18:00:18.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "DyB+3eHz9RilkEu9LDvTY2Z9j+U=",
+ "title": "Live Screenshot",
+ "url": "http://updates.jenkins-ci.org/download/plugins/livescreenshot/1.4.5/livescreenshot.hpi",
+ "version": "1.4.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LiveScreenshot+Plugin"
+ },
+ "loaderio-jenkins-plugin": {
+ "buildDate": "Jun 21, 2013",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "criskiev",
+ "name": "Sergii Boiko"
+ },
+ {
+ "developerId": "le0pard",
+ "name": "Alexey Vasiliev"
+ }
+ ],
+ "excerpt": "Simple cloud-based load testing for your web apps/apis with thousands of connections via the <a href='http://loader.io/'>loader.io</a> API - by <a href='http://labs.sendgrid.com'>SendGrid Labs</a>",
+ "gav": "io.loader:loaderio-jenkins-plugin:1.0.1",
+ "labels": [
+ "post-build",
+ "external"
+ ],
+ "name": "loaderio-jenkins-plugin",
+ "previousTimestamp": "2013-06-14T18:24:34.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-06-21T15:29:42.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "ctEH91RJaxbxOoj6bOdqX/9urxI=",
+ "title": "loader.io plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/loaderio-jenkins-plugin/1.0.1/loaderio-jenkins-plugin.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/loaderio"
+ },
+ "loadfocus-loadtest": {
+ "buildDate": "Feb 23, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.24"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "loadfocus",
+ "email": "contact@loadfocus.com",
+ "name": "LoadFocus Team"
+ }
+ ],
+ "excerpt": "Easy cloud load testing for your websites and APIs with thousands of concurrent users from multiple locations via <a href='https://loadfocus.com'>LoadFocus.com</a>'s APIs.",
+ "gav": "com.loadfocus:loadfocus-loadtest:1.0.1",
+ "labels": [
+ "external",
+ "post-build"
+ ],
+ "name": "loadfocus-loadtest",
+ "releaseTimestamp": "2016-02-23T10:56:36.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "iMZ6RMpZfDrNsdUZsFotYVw6AWE=",
+ "title": "Load Testing LoadFocus.com Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/loadfocus-loadtest/1.0.1/loadfocus-loadtest.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LoadFocus+Load+Testing+Plugin"
+ },
+ "loadimpact-plugin": {
+ "buildDate": "Aug 17, 2014",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ragnarlonn",
+ "email": "ragnar@loadimpact.com",
+ "name": "Ragnar Lonn"
+ }
+ ],
+ "excerpt": "This plugin allows you to execute <a href='http://loadimpact.com'>Load Impact</a> load tests from Jenkins, and mark a build as failed if it doesn't meet your performance criteria ",
+ "gav": "com.loadimpact:loadimpact-plugin:1.62",
+ "labels": [
+ "post-build",
+ "external",
+ "misc"
+ ],
+ "name": "loadimpact-plugin",
+ "previousTimestamp": "2014-07-08T19:53:18.00Z",
+ "previousVersion": "1.58",
+ "releaseTimestamp": "2014-08-17T21:14:44.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "WWl7nXgC2XSj1qcFNgSVvUR6bZE=",
+ "title": "Load Impact Jenkins plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/loadimpact-plugin/1.62/loadimpact-plugin.hpi",
+ "version": "1.62",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Load+Impact+Plugin"
+ },
+ "locale": {
+ "buildDate": "Feb 14, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin controls the language of Jenkins",
+ "gav": "org.jvnet.hudson.plugins:locale:1.2",
+ "labels": [
+ "ui"
+ ],
+ "name": "locale",
+ "previousTimestamp": "2009-12-30T15:34:04.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2011-02-14T10:32:34.00Z",
+ "requiredCore": "1.377",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "HmtbDDPNAYBO4A4OWzjUg4zzyQY=",
+ "title": "Locale plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/locale/1.2/locale.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Locale+Plugin"
+ },
+ "lockable-resources": {
+ "buildDate": "Jul 12, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.14"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "robin-jarry",
+ "email": "robin.jarry@6wind.com",
+ "name": "Robin Jarry"
+ },
+ {
+ "developerId": "amuniz",
+ "email": "amuniz@cloudbees.com",
+ "name": "Antonio Muñiz"
+ }
+ ],
+ "excerpt": "This plugin allows to define lockable resources (such as printers, phones, computers, etc.) that can be used by builds. If a build requires an resource which is already locked, it will wait for the resource to be free. One can define a lock-priority globally and on a per-job basis.",
+ "gav": "org.6wind.jenkins:lockable-resources:1.10",
+ "labels": [
+ "cluster",
+ "slaves"
+ ],
+ "name": "lockable-resources",
+ "previousTimestamp": "2016-06-01T17:59:24.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2016-07-12T09:29:36.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "GcwUwZRaLQawsPlpg8WNfV8IB1s=",
+ "title": "Lockable Resources plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lockable-resources/1.10/lockable-resources.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lockable+Resources+Plugin"
+ },
+ "locked-files-report": {
+ "buildDate": "Feb 03, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "redsolo",
+ "email": "eramfelt@gmail.com",
+ "name": "Erik Ramfelt"
+ }
+ ],
+ "excerpt": "This debug plugin fails a build if there are locked files in the workspace at the begining or end of a build.",
+ "gav": "org.jvnet.hudson.plugins:locked-files-report:1.6",
+ "labels": [
+ "misc"
+ ],
+ "name": "locked-files-report",
+ "previousTimestamp": "2011-11-16T23:11:50.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2012-02-03T11:37:10.00Z",
+ "requiredCore": "1.363",
+ "scm": "github.com",
+ "sha1": "RTRJ07yTXFfmfA5guhnhmIw2zig=",
+ "title": "Hudson Locked Files Report Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/locked-files-report/1.6/locked-files-report.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Locked+Files+Report+Plugin"
+ },
+ "locks-and-latches": {
+ "buildDate": "Apr 16, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "F276977"
+ }
+ ],
+ "excerpt": "This plugin allows you to control the parallel execution of jobs.",
+ "gav": "org.jvnet.hudson.plugins:locks-and-latches:0.6",
+ "labels": [
+ "trigger",
+ "buildwrapper"
+ ],
+ "name": "locks-and-latches",
+ "previousTimestamp": "2009-12-26T12:42:06.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2010-04-16T14:46:48.00Z",
+ "requiredCore": "1.318",
+ "scm": "svn.dev.java.net",
+ "sha1": "zbuMjM7kQDsLt4fkzLxcCZWAcEI=",
+ "title": "Hudson Locks and Latches plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/locks-and-latches/0.6/locks-and-latches.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Locks+and+Latches+plugin"
+ },
+ "log-command": {
+ "buildDate": "Nov 20, 2012",
+ "dependencies": [
+ {
+ "name": "instant-messaging",
+ "optional": true,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ialbors",
+ "name": "Ignacio Albors"
+ }
+ ],
+ "excerpt": "Adds a command for the CLI which shows a build's console log. If <a href='https://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin'>instant-messaging-plugin</a> is installed, it also provides a command for it (Jabber, IRC, ...).",
+ "gav": "org.jenkins-ci.plugins:log-command:1.0.1",
+ "labels": [
+ "cli"
+ ],
+ "name": "log-command",
+ "previousTimestamp": "2012-11-14T16:57:28.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2012-11-20T13:13:08.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "463jFhLMW7JM0p4leFcAdOnx8gM=",
+ "title": "Log Command Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/log-command/1.0.1/log-command.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Log+Command"
+ },
+ "log-parser": {
+ "buildDate": "Oct 20, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jborghi",
+ "email": "jborghi@java.net",
+ "name": "John Borghi"
+ }
+ ],
+ "excerpt": "Parse the console output and highlight error/warning/info lines.",
+ "gav": "org.jenkins-ci.plugins:log-parser:2.0",
+ "labels": [
+ "report"
+ ],
+ "name": "log-parser",
+ "previousTimestamp": "2010-12-14T18:30:40.00Z",
+ "previousVersion": "1.0.8",
+ "releaseTimestamp": "2015-10-20T09:34:02.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "3qyoAoMul4XY1bxBOTfNVS2Fymc=",
+ "title": "Log Parser Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/log-parser/2.0/log-parser.hpi",
+ "version": "2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Log+Parser+Plugin"
+ },
+ "logaction-plugin": {
+ "buildDate": "Dec 09, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tspengler",
+ "name": "Thomas Spengler"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Centralized configuration to restart jobs when a pattern occurs in the job console output.",
+ "gav": "de.fspengler.hudson.plugin:logaction-plugin:1.2",
+ "labels": [
+ "trigger"
+ ],
+ "name": "logaction-plugin",
+ "releaseTimestamp": "2011-12-09T15:10:58.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "h5n7nAMn1cTIE76p72JCU8Sdn/I=",
+ "title": "Centralized Job(Re)Action",
+ "url": "http://updates.jenkins-ci.org/download/plugins/logaction-plugin/1.2/logaction-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Centralized+Job%28Re%29Action+Plugin"
+ },
+ "logentries": {
+ "buildDate": "Aug 11, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stbutler11",
+ "name": "Stuart Butler"
+ }
+ ],
+ "excerpt": "This plugin forwards console output to Logentries.com. ",
+ "gav": "org.jenkins-ci.plugins:logentries:0.0.2",
+ "labels": [],
+ "name": "logentries",
+ "releaseTimestamp": "2013-08-11T10:56:58.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "EOq6ua5+uZqr0HIjapg9Ea53cC8=",
+ "title": "Logentries Forwarder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/logentries/0.0.2/logentries.hpi",
+ "version": "0.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Logentries+Plugin"
+ },
+ "logfilesizechecker": {
+ "buildDate": "Nov 06, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "kstutz",
+ "email": "kathi.stutz@1und1.de",
+ "name": "Kathi Stutz"
+ }
+ ],
+ "excerpt": "Aborts a build if its log file gets too big.",
+ "gav": "org.jenkins-ci.plugins:logfilesizechecker:1.2",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "logfilesizechecker",
+ "previousTimestamp": "2013-10-26T10:01:24.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2013-11-06T16:00:30.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "CoAwupW2dqJ3lWBxFPOQTCJFaDI=",
+ "title": "Jenkins build log file size checker plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/logfilesizechecker/1.2/logfilesizechecker.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Logfilesizechecker+Plugin"
+ },
+ "logging": {
+ "buildDate": "Oct 12, 2015",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.37"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "Advanced logging for Jenkins",
+ "gav": "net.praqma:logging:1.0.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "logging",
+ "previousTimestamp": "2013-04-19T14:11:14.00Z",
+ "previousVersion": "0.2.8",
+ "releaseTimestamp": "2015-10-12T16:54:04.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "mW/pfxVpDXn01lE56I+UdV+1AD8=",
+ "title": "Logging Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/logging/1.0.0/logging.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Logging+Plugin"
+ },
+ "logstash": {
+ "buildDate": "Apr 05, 2016",
+ "dependencies": [
+ {
+ "name": "mask-passwords",
+ "optional": true,
+ "version": "2.8"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jesusaurus",
+ "email": "jesusaurus@inbox.com",
+ "name": "K Jonathan Harker"
+ },
+ {
+ "developerId": "rgerard",
+ "email": "rusty.gerard@gmail.com",
+ "name": "Rusty Gerard"
+ }
+ ],
+ "excerpt": "This plugin pushes logs and build data to a Logstash indexer such as Redis or RabbitMQ.",
+ "gav": "org.jenkins-ci.plugins:logstash:1.2.0",
+ "labels": [
+ "external",
+ "buildwrapper",
+ "report",
+ "post-build"
+ ],
+ "name": "logstash",
+ "previousTimestamp": "2015-07-20T21:29:22.00Z",
+ "previousVersion": "1.1.1",
+ "releaseTimestamp": "2016-04-05T21:04:44.00Z",
+ "requiredCore": "1.599",
+ "scm": "github.com",
+ "sha1": "gxOysnq5hi0I5cQxgHhi3ErhE5Y=",
+ "title": "Logstash",
+ "url": "http://updates.jenkins-ci.org/download/plugins/logstash/1.2.0/logstash.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Logstash+Plugin"
+ },
+ "lotus-connections-plugin": {
+ "buildDate": "Jan 10, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "philrumble",
+ "email": "prumble@au1.ibm.com",
+ "name": "Phil Rumble"
+ }
+ ],
+ "excerpt": "This plugin posts build results to Lotus Connections. ",
+ "gav": "org.jenkins-ci.plugins:lotus-connections-plugin:1.25",
+ "labels": [
+ "notifier"
+ ],
+ "name": "lotus-connections-plugin",
+ "previousTimestamp": "2014-01-09T15:34:44.00Z",
+ "previousVersion": "1.24",
+ "releaseTimestamp": "2014-01-10T09:00:40.00Z",
+ "requiredCore": "1.425",
+ "scm": "github.com",
+ "sha1": "Ptp78oxPtUi4TIYkTiWibKEbsNs=",
+ "title": "Lotus Connections Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lotus-connections-plugin/1.25/lotus-connections-plugin.hpi",
+ "version": "1.25",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lotus+Connections+plugin"
+ },
+ "lsf-cloud": {
+ "buildDate": "Apr 09, 2015",
+ "dependencies": [
+ {
+ "name": "ssh-slaves",
+ "optional": false,
+ "version": "1.9"
+ },
+ {
+ "name": "copy-to-slave",
+ "optional": false,
+ "version": "1.4.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "laisvydas",
+ "email": "laisvydas.skurevicius@gmail.com",
+ "name": "Laisvydas Skurevicius"
+ }
+ ],
+ "excerpt": "This plugin allows submitting batch jobs to <a href='http://www-03.ibm.com/systems/platformcomputing/products/lsf/'>LSF</a> batch system. ",
+ "gav": "org.jenkins-ci.plugins:lsf-cloud:1.11",
+ "labels": [
+ "slaves",
+ "builder"
+ ],
+ "name": "lsf-cloud",
+ "previousTimestamp": "2015-03-30T17:49:16.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-04-09T16:06:06.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "MLvdBjFe41GOZzZuFvZhlwn3E6M=",
+ "title": "lsf-cloud",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lsf-cloud/1.11/lsf-cloud.hpi",
+ "version": "1.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/lsf-cloud+Plugin"
+ },
+ "lucene-search": {
+ "buildDate": "Mar 16, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "tobias-",
+ "email": "tobias@olsson.be",
+ "name": "Tobias Olsson"
+ },
+ {
+ "developerId": "hanabishi",
+ "email": "jenkins@hanabi.se",
+ "name": "Marcus Jacobsson"
+ }
+ ],
+ "excerpt": "Lucene-Search adds support to search for build data using the Jenkins search box (aka quick navigation). The plugin stores the data after each build in a search database.",
+ "gav": "org.jenkins-ci.plugins:lucene-search:4.4",
+ "labels": [],
+ "name": "lucene-search",
+ "previousTimestamp": "2015-12-20T23:00:32.00Z",
+ "previousVersion": "4.2",
+ "releaseTimestamp": "2016-03-16T08:29:32.00Z",
+ "requiredCore": "1.590",
+ "scm": "github.com",
+ "sha1": "C1RUyGqzPdjg5L+o2wJh+lZIk38=",
+ "title": "Lucene-Search",
+ "url": "http://updates.jenkins-ci.org/download/plugins/lucene-search/4.4/lucene-search.hpi",
+ "version": "4.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lucene-Search"
+ },
+ "m2-repo-reaper": {
+ "buildDate": "Oct 04, 2009",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.326"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bimargulies",
+ "email": "bimargulies@gmail.com",
+ "name": "Benson Margulies"
+ }
+ ],
+ "excerpt": "This plugin allows you to configure a maven2 job to clean some or all of the artifacts from the repository before it runs.",
+ "gav": "org.jvnet.hudson.plugins:m2-repo-reaper:1.0",
+ "labels": [
+ "maven"
+ ],
+ "name": "m2-repo-reaper",
+ "releaseTimestamp": "2009-10-04T18:36:20.00Z",
+ "requiredCore": "1.326",
+ "scm": "svn.dev.java.net",
+ "sha1": "OfP4GcPtlYX4tSKveYgBKar1/IU=",
+ "title": "M2 Repository Cleanup Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/m2-repo-reaper/1.0/m2-repo-reaper.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/M2+Repository+Cleanup+Plugin"
+ },
+ "m2release": {
+ "buildDate": "Mar 31, 2014",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.509.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "teilo",
+ "name": "James Nord"
+ },
+ {
+ "developerId": "m68k",
+ "name": "Christian Slama"
+ },
+ {
+ "developerId": "imod",
+ "name": "Dominik Bartholdi"
+ }
+ ],
+ "excerpt": "This plugin allows you to perform a release build using the <a href='http://maven.apache.org/plugins/maven-release-plugin/'>maven-release-plugin</a> from within Jenkins. ",
+ "gav": "org.jenkins-ci.plugins.m2release:m2release:0.14.0",
+ "labels": [
+ "buildwrapper",
+ "maven"
+ ],
+ "name": "m2release",
+ "previousTimestamp": "2013-12-23T16:57:34.00Z",
+ "previousVersion": "0.13.0",
+ "releaseTimestamp": "2014-03-31T19:12:18.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "McY6TvRujUUCWZ8uDCANN8dRUd8=",
+ "title": "Jenkins Maven Release Plug-in Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/m2release/0.14.0/m2release.hpi",
+ "version": "0.14.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/M2+Release+Plugin"
+ },
+ "mail-watcher-plugin": {
+ "buildDate": "Aug 23, 2016",
+ "dependencies": [
+ {
+ "name": "jobConfigHistory",
+ "optional": true,
+ "version": "2.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.11"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "This plugin notifies configured email recipients on various events.",
+ "gav": "org.jenkins-ci.plugins:mail-watcher-plugin:1.15",
+ "labels": [
+ "notifier"
+ ],
+ "name": "mail-watcher-plugin",
+ "previousTimestamp": "2015-08-31T18:18:32.00Z",
+ "previousVersion": "1.13",
+ "releaseTimestamp": "2016-08-23T19:51:20.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "IZ7+mlveHmAkUqE3B3ztBWnQ6ac=",
+ "title": "Mail Watcher Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mail-watcher-plugin/1.15/mail-watcher-plugin.hpi",
+ "version": "1.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mail+Watcher+Plugin"
+ },
+ "mailcommander": {
+ "buildDate": "Mar 29, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sikakura",
+ "email": "sikakura@gmail.com",
+ "name": "Naoto Shikakura"
+ }
+ ],
+ "excerpt": "This plugin is provide function that command with e-mail. Write CLI command to e-mail subject and send to pre setting address. Mail Commander recieve e-mail from pre setting address, and read e-mail subject as CLI command, execute it. ",
+ "gav": "org.jenkins-ci.plugins:mailcommander:1.0.0",
+ "labels": [
+ "misc",
+ "trigger"
+ ],
+ "name": "mailcommander",
+ "releaseTimestamp": "2011-03-29T18:40:10.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "VIMj7SMq0q1KjiWU3XV2LoKl4ck=",
+ "title": "Mail Commander Plugin for Jenkins-ci",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mailcommander/1.0.0/mailcommander.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mail+Commander+Plugin"
+ },
+ "mailer": {
+ "buildDate": "Sep 04, 2016",
+ "dependencies": [
+ {
+ "name": "display-url-api",
+ "optional": false,
+ "version": "0.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "andresrc"
+ }
+ ],
+ "excerpt": "This plugin allows you to configure email notifications for build results. This is a break-out of the original core based email component. ",
+ "gav": "org.jenkins-ci.plugins:mailer:1.18",
+ "labels": [],
+ "name": "mailer",
+ "previousTimestamp": "2016-04-20T08:46:22.00Z",
+ "previousVersion": "1.17",
+ "releaseTimestamp": "2016-09-04T09:14:16.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "poG1EauZFM5lZE5hCBx5mqr/mMA=",
+ "title": "Jenkins Mailer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mailer/1.18/mailer.hpi",
+ "version": "1.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mailer"
+ },
+ "mailmap-resolver": {
+ "buildDate": "Jan 16, 2014",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "slide",
+ "email": "slide.o.mix@gmail.com",
+ "name": "Alex Earl"
+ }
+ ],
+ "excerpt": "This plugin allows you to configure a mapping between usernames and email addresses. Then when plugins try to resolve a username to an email address, it will resolve using the provided address.",
+ "gav": "org.jenkins-ci.plugins:mailmap-resolver:0.2",
+ "labels": [],
+ "name": "mailmap-resolver",
+ "previousTimestamp": "2014-01-12T10:50:34.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2014-01-16T20:41:58.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "yQi/carARqHkLcpx8OPoTqIM+go=",
+ "title": "Mail Map Resolver",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mailmap-resolver/0.2/mailmap-resolver.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mail+Map+Resolver"
+ },
+ "maintenance-jobs-scheduler": {
+ "buildDate": "Dec 28, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "v1v",
+ "email": "VictorMartinezRubio@gmail.com",
+ "name": "Victor Martinez"
+ }
+ ],
+ "excerpt": "Perform deleting or disabling of old jobs based on some cron tasks. You can configure this plugin globally based on some specific scheduler, excluding jobs with some regex, add some description in each disabling job (for tracking purposes), apply that filter for those jobs older than X days. ",
+ "gav": "org.jenkins-ci.plugins:maintenance-jobs-scheduler:0.1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "maintenance-jobs-scheduler",
+ "releaseTimestamp": "2015-12-28T17:34:54.00Z",
+ "requiredCore": "1.590",
+ "scm": "github.com",
+ "sha1": "4YRafGcWp5gNuatUlUcHbgKHPsk=",
+ "title": "Maintenance Jobs Scheduler Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maintenance-jobs-scheduler/0.1.0/maintenance-jobs-scheduler.hpi",
+ "version": "0.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maintenance+Jobs+Scheduler+Plugin"
+ },
+ "managed-scripts": {
+ "buildDate": "Sep 10, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.12.1"
+ },
+ {
+ "name": "config-file-provider",
+ "optional": false,
+ "version": "2.13"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "imod",
+ "name": "Dominik Bartholdi"
+ }
+ ],
+ "excerpt": "Managed scripts are shell scripts which are managed centrally by an administrator and can be referenced as a build step within jobs. ",
+ "gav": "org.jenkinsci.plugins:managed-scripts:1.2.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "managed-scripts",
+ "previousTimestamp": "2015-05-18T17:47:32.00Z",
+ "previousVersion": "1.2.1",
+ "releaseTimestamp": "2016-09-10T14:54:40.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "6frdiYuUC48iPGH9GdWbO3ikuSE=",
+ "title": "Managed Scripts",
+ "url": "http://updates.jenkins-ci.org/download/plugins/managed-scripts/1.2.4/managed-scripts.hpi",
+ "version": "1.2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Managed+Script+Plugin"
+ },
+ "mansion-cloud": {
+ "buildDate": "Mar 31, 2016",
+ "dependencies": [
+ {
+ "name": "cloudbees-registration",
+ "optional": false,
+ "version": "3.14"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "ssh-slaves",
+ "optional": false,
+ "version": "1.9"
+ },
+ {
+ "name": "cloudbees-credentials",
+ "optional": false,
+ "version": "3.3"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dudu"
+ }
+ ],
+ "excerpt": "Run your build workloads in the cloud on Linux and OSX - using the CloudBees build service.",
+ "gav": "com.cloudbees.jenkins.plugins:mansion-cloud:1.31",
+ "labels": [
+ "cluster"
+ ],
+ "name": "mansion-cloud",
+ "previousTimestamp": "2016-01-12T21:12:04.00Z",
+ "previousVersion": "1.30",
+ "releaseTimestamp": "2016-03-31T10:54:26.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "n1YVYhijl48Rqphpmz1vRY49qaU=",
+ "title": "CloudBees Cloud Connector",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mansion-cloud/1.31/mansion-cloud.hpi",
+ "version": "1.31",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Cloud+Connector+Plugin"
+ },
+ "mantis": {
+ "buildDate": "Feb 16, 2015",
+ "dependencies": [
+ {
+ "name": "mercurial",
+ "optional": true,
+ "version": "1.38"
+ },
+ {
+ "name": "cvs",
+ "optional": true,
+ "version": "2.0"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "subversion",
+ "optional": true,
+ "version": "1.34"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.8"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "1.1.16"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.mantisbt.org/'>Mantis Bug Tracker</a> to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:mantis:0.26",
+ "labels": [
+ "external"
+ ],
+ "name": "mantis",
+ "previousTimestamp": "2013-06-01T16:21:20.00Z",
+ "previousVersion": "0.25",
+ "releaseTimestamp": "2015-02-16T23:29:24.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "Wm19x1m5UrVqd+Bh5+gcZL9h8tU=",
+ "title": "Jenkins Mantis plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mantis/0.26/mantis.hpi",
+ "version": "0.26",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mantis+Plugin"
+ },
+ "mapdb-api": {
+ "buildDate": "May 25, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenc",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a shared dependency on the <a href='http://www.mapdb.org'>MapDB</a> library so that other plugins can co-operate when using this library. ",
+ "gav": "org.jenkins-ci.plugins:mapdb-api:1.0.9.0",
+ "labels": [],
+ "name": "mapdb-api",
+ "previousTimestamp": "2014-10-24T16:52:36.00Z",
+ "previousVersion": "1.0.6.0",
+ "releaseTimestamp": "2016-05-25T11:22:22.00Z",
+ "requiredCore": "1.565",
+ "scm": "github.com",
+ "sha1": "G387cGHm0r6itKEuU5drSVeLbyU=",
+ "title": "MapDB API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mapdb-api/1.0.9.0/mapdb-api.hpi",
+ "version": "1.0.9.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MapDB+API+Plugin"
+ },
+ "marathon": {
+ "buildDate": "Aug 05, 2016",
+ "dependencies": [
+ {
+ "name": "plain-credentials",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.13"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aquamatthias",
+ "email": "matthias@mesosphere.io",
+ "name": "Matthias Veit"
+ },
+ {
+ "developerId": "colin-msphere",
+ "email": "colin@mesosphere.io",
+ "name": "Colin Creeden"
+ },
+ {
+ "developerId": "rji",
+ "email": "roger@mesosphere.io",
+ "name": "Roger Ignazio"
+ },
+ {
+ "developerId": "sschneid",
+ "email": "sschneider@mesosphere.io",
+ "name": "Scott Schneider"
+ },
+ {
+ "developerId": "ssk2",
+ "email": "sunil@mesosphere.io",
+ "name": "Sunil Shah"
+ },
+ {
+ "developerId": "titosand",
+ "email": "tsandoval@mesosphere.io",
+ "name": "Tito Sandoval"
+ }
+ ],
+ "excerpt": "Adds a Marathon Deployment post-build item that updates an application within a target Marathon instance.This can also be used within a workflow or pipeline plugin job. ",
+ "gav": "com.mesosphere.velocity:marathon:1.3.2",
+ "labels": [
+ "plugin-misc",
+ "pipeline",
+ "plugin-external",
+ "plugin-post-build"
+ ],
+ "name": "marathon",
+ "previousTimestamp": "2016-06-30T14:32:12.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2016-08-05T11:04:48.00Z",
+ "requiredCore": "1.642.1",
+ "scm": "github.com",
+ "sha1": "+izmcNMA359iaNTBq7OteiZ4CJU=",
+ "title": "Marathon Deployment",
+ "url": "http://updates.jenkins-ci.org/download/plugins/marathon/1.3.2/marathon.hpi",
+ "version": "1.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Marathon+Plugin"
+ },
+ "mashup-portlets-plugin": {
+ "buildDate": "Nov 05, 2015",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": false,
+ "version": "2.9.2"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ghenzler",
+ "email": "jenkins@ghenzler.de",
+ "name": "G.Henzler"
+ }
+ ],
+ "excerpt": "Additional portlets: 'Generic JS Portlet' flexibly displays any content from another source. 'Recent Changes' and 'Test Results'&amp;nbsp;show useful job information that would otherwise only available by drilling down into the job. The 'SonarQube Portlet' shows important issues from Sonar directly in Jenkins. ",
+ "gav": "javagh.jenkins:mashup-portlets-plugin:1.0.6",
+ "labels": [
+ "ui",
+ "external"
+ ],
+ "name": "mashup-portlets-plugin",
+ "previousTimestamp": "2015-01-24T14:45:06.00Z",
+ "previousVersion": "1.0.5",
+ "releaseTimestamp": "2015-11-05T00:41:06.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "ByYQDVzdNbI+Qk8929MtEsGx51o=",
+ "title": "Mashup Portlets",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mashup-portlets-plugin/1.0.6/mashup-portlets-plugin.hpi",
+ "version": "1.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mashup+Portlets"
+ },
+ "mask-passwords": {
+ "buildDate": "Oct 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rseguy",
+ "email": "romain.seguy@gmail.com",
+ "name": "Romain Seguy"
+ }
+ ],
+ "excerpt": "This plugin allows masking passwords that may appear in the console",
+ "gav": "org.jenkins-ci.plugins:mask-passwords:2.8",
+ "labels": [
+ "misc",
+ "buildwrapper"
+ ],
+ "name": "mask-passwords",
+ "previousTimestamp": "2015-07-30T01:40:40.00Z",
+ "previousVersion": "2.7.4",
+ "releaseTimestamp": "2015-10-18T22:33:32.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "qENWA4nLyVAMx7JZKXll/bI8WhU=",
+ "title": "Mask Passwords Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mask-passwords/2.8/mask-passwords.hpi",
+ "version": "2.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mask+Passwords+Plugin"
+ },
+ "matrix-auth": {
+ "buildDate": "May 24, 2016",
+ "dependencies": [
+ {
+ "name": "icon-shim",
+ "optional": false,
+ "version": "2.0.3"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": true,
+ "version": "5.2.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Offers matrix-based security authorization strategies (global and per-project).",
+ "gav": "org.jenkins-ci.plugins:matrix-auth:1.4",
+ "labels": [
+ "user"
+ ],
+ "name": "matrix-auth",
+ "previousTimestamp": "2016-02-25T17:03:32.00Z",
+ "previousVersion": "1.3.2",
+ "releaseTimestamp": "2016-05-24T11:54:28.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "umQNlcEeZtQ/HRxV87ZGY+ticb4=",
+ "title": "Matrix Authorization Strategy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/matrix-auth/1.4/matrix-auth.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Authorization+Strategy+Plugin"
+ },
+ "matrix-combinations-parameter": {
+ "buildDate": "Oct 01, 2016",
+ "dependencies": [
+ {
+ "name": "rebuild",
+ "optional": true,
+ "version": "1.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ikedam"
+ }
+ ],
+ "excerpt": "This plugin allows a user to choose which matrix combinations he wants to run, as opposed to the default behaviour where jenkins runs all combinations:",
+ "gav": "org.jenkins-ci.plugins:matrix-combinations-parameter:1.1.0",
+ "labels": [
+ "parameter",
+ "misc"
+ ],
+ "name": "matrix-combinations-parameter",
+ "previousTimestamp": "2015-07-11T12:10:44.00Z",
+ "previousVersion": "1.0.9",
+ "releaseTimestamp": "2016-10-01T09:53:48.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "rKogjmu6LH+lklfr4FAOiD8R9N0=",
+ "title": "Matrix Configuration Parameter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/matrix-combinations-parameter/1.1.0/matrix-combinations-parameter.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Combinations+Plugin"
+ },
+ "matrix-groovy-execution-strategy": {
+ "buildDate": "Jan 05, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "envinject",
+ "optional": true,
+ "version": "1.23"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jeremym",
+ "email": "jeremystuartmarshall@gmail.com",
+ "name": "Jeremy Marshall"
+ }
+ ],
+ "excerpt": "A plugin to decide the execution order and valid combinations of matrix projects. ",
+ "gav": "org.jenkins-ci.plugins:matrix-groovy-execution-strategy:1.0.4",
+ "labels": [
+ "groovy-related",
+ "misc"
+ ],
+ "name": "matrix-groovy-execution-strategy",
+ "previousTimestamp": "2015-11-15T07:36:14.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2016-01-05T11:53:10.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "KE83p81MmHTkeH/ftVOYVMd/kRQ=",
+ "title": "Matrix Groovy Execution Strategy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/matrix-groovy-execution-strategy/1.0.4/matrix-groovy-execution-strategy.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Groovy+Execution+Strategy+Plugin"
+ },
+ "matrix-project": {
+ "buildDate": "Jun 24, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.13"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "amuniz"
+ }
+ ],
+ "excerpt": "Multi-configuration (matrix) project type.",
+ "gav": "org.jenkins-ci.plugins:matrix-project:1.7.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "matrix-project",
+ "previousTimestamp": "2016-05-24T16:14:34.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2016-06-24T10:14:42.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "ULG4SYWlcjo9hfGCjtkhszdk8CM=",
+ "title": "Matrix Project Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/matrix-project/1.7.1/matrix-project.hpi",
+ "version": "1.7.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Project+Plugin"
+ },
+ "matrix-reloaded": {
+ "buildDate": "Jun 16, 2014",
+ "dependencies": [
+ {
+ "name": "downstream-ext",
+ "optional": true,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "wolfgarnet",
+ "email": "coolers@praqma.net",
+ "name": "Christian Wolfgang"
+ }
+ ],
+ "excerpt": "The Matrix Reloaded Plugin allows rebuilding parts of an already built Matrix build.",
+ "gav": "net.praqma:matrix-reloaded:1.1.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "matrix-reloaded",
+ "previousTimestamp": "2014-05-09T15:33:00.00Z",
+ "previousVersion": "1.1.2",
+ "releaseTimestamp": "2014-06-16T14:22:40.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "vtsRSbRCX2bbN/apFcI6EzA4/7o=",
+ "title": "Matrix Reloaded Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/matrix-reloaded/1.1.3/matrix-reloaded.hpi",
+ "version": "1.1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Reloaded+Plugin"
+ },
+ "matrixtieparent": {
+ "buildDate": "May 16, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kbertelson",
+ "name": "Ken Bertelson"
+ }
+ ],
+ "excerpt": "Ties the parent build of a multi-configuration project to a node.",
+ "gav": "org.jenkins-ci.plugins:matrixtieparent:1.2",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "matrixtieparent",
+ "previousTimestamp": "2010-08-23T16:51:26.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2013-05-16T12:49:48.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "tYNahGThSioBgSops6BAhw5eoDc=",
+ "title": "Matrix Tie Parent plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/matrixtieparent/1.2/matrixtieparent.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Tie+Parent+Plugin"
+ },
+ "mattermost": {
+ "buildDate": "Sep 24, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.18"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jovandeginste",
+ "email": "jo.vandeginste@gmail.com",
+ "name": "Jo Vandeginste"
+ },
+ {
+ "developerId": "eirikwang",
+ "email": "eirilwan@gmail.com",
+ "name": "Eirik Wang"
+ }
+ ],
+ "excerpt": "Allows users to send build notifications to a self-hosted <a href='http://www.mattermost.org/'>Mattermost</a> installation",
+ "gav": "org.jenkins-ci.plugins:mattermost:2.2.0",
+ "labels": [
+ "notifier"
+ ],
+ "name": "mattermost",
+ "previousTimestamp": "2016-09-24T12:43:20.00Z",
+ "previousVersion": "2.1.3",
+ "releaseTimestamp": "2016-09-24T12:49:58.00Z",
+ "requiredCore": "2.0",
+ "scm": "github.com",
+ "sha1": "RqccHpl3aAhbb/+yCDaKPeN5vA4=",
+ "title": "Mattermost Notification Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mattermost/2.2.0/mattermost.hpi",
+ "version": "2.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mattermost+Plugin"
+ },
+ "maven-dependency-update-trigger": {
+ "buildDate": "Apr 24, 2015",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olamy",
+ "email": "olamy@apache.org"
+ }
+ ],
+ "excerpt": "This plugin will check if any SNAPSHOT dependencies (or optionally plugins SNAPSHOT) have been updated during your project's dependencies resolution and trigger a build. You have to configure a cron expression.",
+ "gav": "org.jenkins-ci.plugins:maven-dependency-update-trigger:1.5",
+ "labels": [
+ "trigger"
+ ],
+ "name": "maven-dependency-update-trigger",
+ "previousTimestamp": "2011-12-30T16:15:14.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2015-04-24T17:05:54.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "/OXOIY2aFLM1rykV/Th5HVGMk4s=",
+ "title": "Maven Dependency Update Trigger",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maven-dependency-update-trigger/1.5/maven-dependency-update-trigger.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Dependency+Update+trigger"
+ },
+ "maven-deployment-linker": {
+ "buildDate": "Mar 15, 2013",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ },
+ {
+ "name": "async-http-client",
+ "optional": false,
+ "version": "1.7.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "lshatzer",
+ "email": "larrys@gmail.com",
+ "name": "Larry Shatzer, Jr."
+ },
+ {
+ "developerId": "vlatombe",
+ "email": "vincent.latombe@gmail.com",
+ "name": "Vincent Latombe"
+ },
+ {
+ "developerId": "aheritier",
+ "email": "aheritier@apache.org",
+ "name": "Arnaud H�ritier"
+ },
+ {
+ "developerId": "imod",
+ "name": "Dominik Bartholdi"
+ }
+ ],
+ "excerpt": "This plugin will add a summary on the build of the artifacts uploaded to your maven repository and a builder to download the uploaded artifacts to other projects. ",
+ "gav": "org.jvnet.hudson.plugins:maven-deployment-linker:1.5.1",
+ "labels": [
+ "maven",
+ "misc",
+ "post-build"
+ ],
+ "name": "maven-deployment-linker",
+ "previousTimestamp": "2012-05-11T06:12:24.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2013-03-15T19:19:08.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "VoEl8zYcyLFgUMbi3iVADV8ATw4=",
+ "title": "Maven Deployment Linker",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maven-deployment-linker/1.5.1/maven-deployment-linker.hpi",
+ "version": "1.5.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Deployment+Linker"
+ },
+ "maven-info": {
+ "buildDate": "Mar 06, 2014",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.7"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.500"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "tomfolga",
+ "email": "tomfolga@gmail.com",
+ "name": "Tom Folga"
+ },
+ {
+ "developerId": "olamy",
+ "email": "olamy@apache.org",
+ "name": "Olivier Lamy"
+ },
+ {
+ "developerId": "emenaceb",
+ "email": "emenaceb@gmail.com",
+ "name": "Emlio Jose Mena Cebrian"
+ }
+ ],
+ "excerpt": "This plugin add features related to Maven jobs info. Adds columns configurable in views (version, dependencies, modules, ...) and extract information from Maven jobs (update name and description from POM, ...) ",
+ "gav": "org.tomfolga:maven-info:0.2.0",
+ "labels": [
+ "maven",
+ "listview-column"
+ ],
+ "name": "maven-info",
+ "previousTimestamp": "2014-01-29T23:55:02.00Z",
+ "previousVersion": "0.1.3",
+ "releaseTimestamp": "2014-03-06T00:22:40.00Z",
+ "requiredCore": "1.500",
+ "scm": "github.com",
+ "sha1": "/g5mkixxOQ4M/PC+jKEIFSv+2W4=",
+ "title": "Jenkins Maven Info Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maven-info/0.2.0/maven-info.hpi",
+ "version": "0.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Info+Plugin"
+ },
+ "maven-invoker-plugin": {
+ "buildDate": "Sep 26, 2012",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.424"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olamy"
+ }
+ ],
+ "excerpt": "Display and store reports for Maven Invoker it tests (see&amp;nbsp;[http://maven.apache.org/plugins/maven-invoker-plugin/]&amp;nbsp;) This plugin is currently broken and the guy who started the work doesn't have enough time to fix issues \\:P )",
+ "gav": "org.jenkins-ci.plugins:maven-invoker-plugin:1.2",
+ "labels": [
+ "maven",
+ "external"
+ ],
+ "name": "maven-invoker-plugin",
+ "previousTimestamp": "2012-08-07T12:07:34.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2012-09-26T10:59:44.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "t+q8qhvZtYEhCP2h9ydHmsoW54o=",
+ "title": "Jenkins Maven Invoker plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maven-invoker-plugin/1.2/maven-invoker-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Invoker+Plugin"
+ },
+ "maven-metadata-plugin": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [
+ {
+ "name": "rebuild",
+ "optional": true,
+ "version": "1.25"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "markov",
+ "email": "gesh@markov.eu",
+ "name": "Georgi \"Gesh\" Markov"
+ },
+ {
+ "developerId": "marcrohlfs",
+ "email": "rohlfs@silpion.de",
+ "name": "Marc Rohlfs"
+ }
+ ],
+ "excerpt": "This plugin adds a new build parameter type for resolving artifact versions reading the repository <a href='http://docs.codehaus.org/display/MAVEN/Repository+Metadata'>maven-metadata.xml</a>. ",
+ "gav": "eu.markov.jenkins.plugin.mvnmeta:maven-metadata-plugin:1.5.0",
+ "labels": [
+ "maven",
+ "parameter"
+ ],
+ "name": "maven-metadata-plugin",
+ "previousTimestamp": "2016-03-14T15:00:56.00Z",
+ "previousVersion": "1.4.1",
+ "releaseTimestamp": "2016-06-01T00:03:46.00Z",
+ "requiredCore": "1.481",
+ "scm": "github.com",
+ "sha1": "1GXXJ8Tv44B+ll5HasBp6gMSsEg=",
+ "title": "Maven Metadata Plugin for Jenkins CI server",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maven-metadata-plugin/1.5.0/maven-metadata-plugin.hpi",
+ "version": "1.5.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Metadata+Plugin"
+ },
+ "maven-plugin": {
+ "buildDate": "May 19, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.1"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olamy"
+ }
+ ],
+ "excerpt": "This plugin provides an advanced integration for Maven 2/3 projects.",
+ "gav": "org.jenkins-ci.main:maven-plugin:2.13",
+ "labels": [
+ "builder"
+ ],
+ "name": "maven-plugin",
+ "previousTimestamp": "2015-10-01T13:56:24.00Z",
+ "previousVersion": "2.12.1",
+ "releaseTimestamp": "2016-05-19T16:59:08.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "5jHXjpqPAm16g34lWmIVXXv77f8=",
+ "title": "Maven Integration plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maven-plugin/2.13/maven-plugin.hpi",
+ "version": "2.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Project+Plugin"
+ },
+ "maven-release-cascade": {
+ "buildDate": "Apr 01, 2013",
+ "dependencies": [
+ {
+ "name": "git-client",
+ "optional": false,
+ "version": "1.0.4"
+ },
+ {
+ "name": "depgraph-view",
+ "optional": false,
+ "version": "0.11"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "m2release",
+ "optional": false,
+ "version": "0.9.1"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "1.3.0"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "jquery-ui",
+ "optional": false,
+ "version": "1.0.2"
+ },
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.45"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.503"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "Andrei-Pozolotin",
+ "email": "Andrei.Pozolotin@gmail.com",
+ "name": "Andrei Pozolotin"
+ }
+ ],
+ "excerpt": "Configure and perform maven release cascade",
+ "gav": "com.barchart.jenkins:maven-release-cascade:1.3.2",
+ "labels": [
+ "maven"
+ ],
+ "name": "maven-release-cascade",
+ "previousTimestamp": "2013-03-24T22:56:46.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2013-04-01T23:00:26.00Z",
+ "requiredCore": "1.503",
+ "scm": "github.com",
+ "sha1": "6AgOeKjN5lbFlVorB7s4rUTdL+g=",
+ "title": "Maven Cascade Release Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maven-release-cascade/1.3.2/maven-release-cascade.hpi",
+ "version": "1.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Cascade+Release+Plugin"
+ },
+ "maven-repo-cleaner": {
+ "buildDate": "Jan 08, 2013",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.468"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "abayer",
+ "email": "andrew.bayer@gmail.com",
+ "name": "Andrew Bayer"
+ },
+ {
+ "developerId": "olamy",
+ "name": "Olivier Lamy"
+ }
+ ],
+ "excerpt": "Clean your jobs maven repositories.",
+ "gav": "org.jenkins-ci.plugins:maven-repo-cleaner:1.2",
+ "labels": [
+ "maven",
+ "external"
+ ],
+ "name": "maven-repo-cleaner",
+ "previousTimestamp": "2012-04-24T13:37:56.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2013-01-08T14:03:10.00Z",
+ "requiredCore": "1.468",
+ "scm": "github.com",
+ "sha1": "AZrDlB5CA7b9DO5cZoQP7AK18Dg=",
+ "title": "Maven Repository Scheduled Cleanup Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/maven-repo-cleaner/1.2/maven-repo-cleaner.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Repo+Cleaner+Plugin"
+ },
+ "mber": {
+ "buildDate": "Sep 02, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "onefrankguy",
+ "email": "fmitchell@mber.com",
+ "name": "Frank Mitchell"
+ }
+ ],
+ "excerpt": "Integrates with <a href='http://mber.com/'>Mber</a> to provide build notification and artifact storage.",
+ "gav": "org.jenkins-ci.plugins:mber:1.5.0",
+ "labels": [
+ "external"
+ ],
+ "name": "mber",
+ "previousTimestamp": "2015-06-12T11:52:24.00Z",
+ "previousVersion": "1.4.0",
+ "releaseTimestamp": "2015-09-02T10:43:10.00Z",
+ "requiredCore": "1.509.2",
+ "scm": "github.com",
+ "sha1": "iG6SvUKwswO+C5xVsrpuwnM3EyE=",
+ "title": "Mber Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mber/1.5.0/mber.hpi",
+ "version": "1.5.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mber+Plugin"
+ },
+ "mdt-deployment": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rgroult",
+ "email": "remi.groult@gmail.com",
+ "name": "Rémi Groult"
+ }
+ ],
+ "excerpt": "Enables Jenkins to upload Android (APK files) &amp;nbsp;and iOS (IPA files) apps to a <a href='https://github.com/rgroult/MobDistTool'>Mobile App Distribution Tool</a> server",
+ "gav": "org.jenkins-ci.plugins:mdt-deployment:1.0.4",
+ "labels": [],
+ "name": "mdt-deployment",
+ "previousTimestamp": "2016-05-26T14:25:08.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2016-06-01T16:32:04.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "RdA9v/p2bDaFtjnFv3/lgJVhXmc=",
+ "title": "MDT Deployment Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mdt-deployment/1.0.4/mdt-deployment.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mobile+App+Distribution+%28MDT%29++Plugin"
+ },
+ "mdtool": {
+ "buildDate": "Jun 17, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "fen_x",
+ "email": "fenix661@gmail.com",
+ "name": "Ivan Nikitin"
+ }
+ ],
+ "excerpt": "The plugin allows to use Xamarin Studio Tool Runner - mdtool.",
+ "gav": "org.jenkins-ci.plugins:mdtool:0.1.1",
+ "labels": [
+ "external",
+ "builder",
+ "ios",
+ "android"
+ ],
+ "name": "mdtool",
+ "previousTimestamp": "2014-06-16T16:39:20.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2014-06-17T03:19:22.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "nn+zR+GI8fsSB5kiUki7EEvy/ho=",
+ "title": "Xamarin Studio Tool Runner Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mdtool/0.1.1/mdtool.hpi",
+ "version": "0.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Xamarin+Studio+Tool+Runner+Plugin"
+ },
+ "measurement-plots": {
+ "buildDate": "Apr 07, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "krwalker",
+ "email": "krwalker@stellarscience.com",
+ "name": "K. R. Walker"
+ }
+ ],
+ "excerpt": "Plot measurements embedded into the standard output and error streams of tests.",
+ "gav": "org.jvnet.hudson.plugins:measurement-plots:0.1",
+ "labels": [
+ "report",
+ "ui"
+ ],
+ "name": "measurement-plots",
+ "releaseTimestamp": "2010-04-07T11:51:46.00Z",
+ "requiredCore": "1.353",
+ "scm": "svn.dev.java.net",
+ "sha1": "amNqnjOy0kALkROSNj7RlllqBes=",
+ "title": "Measurement Plots",
+ "url": "http://updates.jenkins-ci.org/download/plugins/measurement-plots/0.1/measurement-plots.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Measurement+Plots+Plugin"
+ },
+ "meliora-testlab": {
+ "buildDate": "Apr 22, 2016",
+ "dependencies": [
+ {
+ "name": "tap",
+ "optional": true,
+ "version": "1.23"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "meliora",
+ "email": "marko.kanala@meliora.fi",
+ "name": "Marko Kanala"
+ }
+ ],
+ "excerpt": "Publishes results of automated tests to <a href='https://www.melioratestlab.com'>Meliora Testlab</a>. ",
+ "gav": "org.jenkins-ci.plugins:meliora-testlab:1.9",
+ "labels": [
+ "notifier",
+ "post-build",
+ "external"
+ ],
+ "name": "meliora-testlab",
+ "previousTimestamp": "2015-10-23T14:51:12.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2016-04-22T14:54:52.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "W21wjaFkas5sjc8NT3OKC/2O+mw=",
+ "title": "Meliora Testlab Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/meliora-testlab/1.9/meliora-testlab.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Meliora+Testlab+Plugin"
+ },
+ "memegen": {
+ "buildDate": "Dec 09, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "joonty",
+ "email": "jon@joncairns.com",
+ "name": "Jon Cairns"
+ }
+ ],
+ "excerpt": "Generate Meme images when a build fails (and returns to stable), and post them on the project page.",
+ "gav": "hudson.plugins.memegen:memegen:0.5.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "memegen",
+ "previousTimestamp": "2012-08-18T14:27:52.00Z",
+ "previousVersion": "0.4.3",
+ "releaseTimestamp": "2015-12-09T11:22:32.00Z",
+ "requiredCore": "1.428",
+ "scm": "github.com",
+ "sha1": "FxnQ9BcrSbK+JOKkxFsFR0HzNzw=",
+ "title": "Meme Generator",
+ "url": "http://updates.jenkins-ci.org/download/plugins/memegen/0.5.1/memegen.hpi",
+ "version": "0.5.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Meme+Generator+Plugin"
+ },
+ "memory-map": {
+ "buildDate": "Nov 30, 2015",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.37"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "email": "josra@praqma.net",
+ "name": "Praqma Josra"
+ },
+ {
+ "developerId": "MadsNielsen",
+ "email": "man@praqma.net",
+ "name": "Mads Nielsen"
+ },
+ {
+ "developerId": "jes-struck",
+ "email": "jes@praqma.net",
+ "name": "Jes Struck"
+ },
+ {
+ "developerId": "buep",
+ "email": "bue@praqma.net",
+ "name": "Bue Petersen"
+ },
+ {
+ "developerId": "hleote",
+ "email": "hleote@praqma.net",
+ "name": "Hugo Leote"
+ },
+ {
+ "developerId": "mvgeorgiev",
+ "email": "mvgeorgiev@praqma.net",
+ "name": "Martin Georgiev"
+ }
+ ],
+ "excerpt": "Enables the parsing of memory map files and their linker scripts. Currently supports Gcc and TexasInstruments compilers",
+ "gav": "net.praqma:memory-map:2.1.2",
+ "labels": [
+ "notifier",
+ "report"
+ ],
+ "name": "memory-map",
+ "previousTimestamp": "2015-10-28T11:16:10.00Z",
+ "previousVersion": "2.1.1",
+ "releaseTimestamp": "2015-11-30T12:49:46.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "9m42CY5QJCdbUQuFNPTQEyB0IJM=",
+ "title": "Memory Map Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/memory-map/2.1.2/memory-map.hpi",
+ "version": "2.1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Memory+Map+Plugin"
+ },
+ "mentor-questa-vrm": {
+ "buildDate": "Aug 14, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.2"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "questa_vrm",
+ "email": "JenkinsQuesta_VRMPlugin@mentor.com",
+ "name": "JenkinsQuestaVRMPlugin"
+ }
+ ],
+ "excerpt": "Adds the ability for Jenkins to publish results from Mentor Graphics Questa Verification Run Manager (VRM). ",
+ "gav": "com.mentor.questa.vrm.jenkins:mentor-questa-vrm:1.2",
+ "labels": [
+ "post-build"
+ ],
+ "name": "mentor-questa-vrm",
+ "previousTimestamp": "2016-08-11T08:34:24.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-08-14T08:21:24.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "nu9XOLSIUF1JokicPotVhUOKFwI=",
+ "title": "Questa VRM",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mentor-questa-vrm/1.2/mentor-questa-vrm.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Questa+VRM+Plugin"
+ },
+ "mercurial": {
+ "buildDate": "Jul 13, 2016",
+ "dependencies": [
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.4-beta-1"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.4"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick",
+ "email": "jglick@cloudbees.com",
+ "name": "Jesse Glick"
+ },
+ {
+ "developerId": "mfriedenhagen",
+ "email": "mfriedenhagen@gmail.com",
+ "name": "Mirko Friedenhagen"
+ },
+ {
+ "developerId": "kohsuke",
+ "email": "kk@kohsuke.org",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "davidmc24",
+ "email": "david@carrclan.us",
+ "name": "David M. Carr"
+ },
+ {
+ "developerId": "willemv",
+ "email": "willem.verstraeten@gmail.com",
+ "name": "Willem Verstraeten"
+ }
+ ],
+ "excerpt": "This plugin integrates the <a href='http://selenic.com/mercurial/'>Mercurial version control system</a> with Jenkins.",
+ "gav": "org.jenkins-ci.plugins:mercurial:1.56",
+ "labels": [
+ "scm"
+ ],
+ "name": "mercurial",
+ "previousTimestamp": "2016-06-17T16:54:32.00Z",
+ "previousVersion": "1.55",
+ "releaseTimestamp": "2016-07-13T13:30:58.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "IH3cmIXU00a3vugWeRDBwnUYwUM=",
+ "title": "Jenkins Mercurial plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mercurial/1.56/mercurial.hpi",
+ "version": "1.56",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mercurial+Plugin"
+ },
+ "mesos": {
+ "buildDate": "Jul 27, 2016",
+ "dependencies": [
+ {
+ "name": "metrics",
+ "optional": true,
+ "version": "3.1.2.6"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "benh",
+ "email": "benh@berkeley.edu",
+ "name": "Benjamin Hindman"
+ },
+ {
+ "developerId": "bmahler",
+ "email": "benjamin.mahler@gmail.com",
+ "name": "Benjamin Mahler"
+ },
+ {
+ "developerId": "caniszczyk",
+ "email": "zx@twitter.com",
+ "name": "Chris Aniszczyk"
+ },
+ {
+ "developerId": "vinodkone",
+ "email": "vinodkone@gmail.com",
+ "name": "Vinod Kone"
+ },
+ {
+ "developerId": "mohitsoni",
+ "email": "mohitsoni1989@gmail.com",
+ "name": "Mohit Soni"
+ },
+ {
+ "developerId": "maselvaraj",
+ "email": "citizenmani@gmail.com",
+ "name": "Manivannan Selvaraj"
+ },
+ {
+ "developerId": "vlatombe",
+ "email": "vincent@latombe.net",
+ "name": "Vincent Latombe"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:mesos:0.13.1",
+ "labels": [
+ "cluster",
+ "slaves"
+ ],
+ "name": "mesos",
+ "previousTimestamp": "2016-07-11T14:33:02.00Z",
+ "previousVersion": "0.13.0",
+ "releaseTimestamp": "2016-07-27T11:16:08.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "CezMnUhKa0da4UcgZ+1boHyZlm4=",
+ "title": "Mesos Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mesos/0.13.1/mesos.hpi",
+ "version": "0.13.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mesos+Plugin"
+ },
+ "metadata": {
+ "buildDate": "Dec 16, 2013",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.509.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rsandell",
+ "email": "robert.sandell@sonymobile.com",
+ "name": "Robert Sandell"
+ },
+ {
+ "developerId": "t_westling",
+ "email": "tomas.westling@sonymobile.com",
+ "name": "Tomas Westling"
+ }
+ ],
+ "excerpt": "This plugin allows metadata to be added to projects, builds and slaves in Jenkins. Users can add metadata manually on a project or slave via the user interface. Metadata can also be added programmatically through a plugin. Currently, this can be done when a build starts or when a build ends. The Metadata can then be searched for.",
+ "gav": "com.sonyericsson.hudson.plugins.metadata:metadata:1.1.0b",
+ "labels": [
+ "misc",
+ "cli",
+ "library",
+ "ui"
+ ],
+ "name": "metadata",
+ "previousTimestamp": "2012-11-22T15:54:58.00Z",
+ "previousVersion": "1.0b",
+ "releaseTimestamp": "2013-12-16T17:09:40.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "Yn9yRsDQMh2ulAheNtS9e51UhL0=",
+ "title": "Metadata plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/metadata/1.1.0b/metadata.hpi",
+ "version": "1.1.0b",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Metadata+plugin"
+ },
+ "metrics": {
+ "buildDate": "Jul 27, 2016",
+ "dependencies": [
+ {
+ "name": "jackson2-api",
+ "optional": false,
+ "version": "2.5.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin exposes the Metrics API to Jenkins plugins.",
+ "gav": "org.jenkins-ci.plugins:metrics:3.1.2.9",
+ "labels": [],
+ "name": "metrics",
+ "previousTimestamp": "2016-06-17T09:31:52.00Z",
+ "previousVersion": "3.1.2.8",
+ "releaseTimestamp": "2016-07-27T09:37:30.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "C/lqfdbVjI3PEvVjy11xuKkpbQI=",
+ "title": "Metrics Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/metrics/3.1.2.9/metrics.hpi",
+ "version": "3.1.2.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Metrics+Plugin"
+ },
+ "metrics-diskusage": {
+ "buildDate": "Mar 19, 2014",
+ "dependencies": [
+ {
+ "name": "metrics",
+ "optional": false,
+ "version": "3.0.0"
+ },
+ {
+ "name": "disk-usage",
+ "optional": false,
+ "version": "0.23"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin adds metrics from the Disk Usage plugin to the Metrics.",
+ "gav": "org.jenkins-ci.plugins:metrics-diskusage:3.0.0",
+ "labels": [],
+ "name": "metrics-diskusage",
+ "releaseTimestamp": "2014-03-19T17:47:28.00Z",
+ "requiredCore": "1.520",
+ "scm": "github.com",
+ "sha1": "QK5p7AbRMPgsi6qnS6AcAIfErvQ=",
+ "title": "Metrics Disk Usage Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/metrics-diskusage/3.0.0/metrics-diskusage.hpi",
+ "version": "3.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Metrics+Disk+Usage+Plugin"
+ },
+ "metrics-ganglia": {
+ "buildDate": "Mar 19, 2014",
+ "dependencies": [
+ {
+ "name": "metrics",
+ "optional": false,
+ "version": "3.0.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin streams Metrics to a ganglia server.",
+ "gav": "org.jenkins-ci.plugins:metrics-ganglia:3.0.0",
+ "labels": [],
+ "name": "metrics-ganglia",
+ "releaseTimestamp": "2014-03-19T17:48:06.00Z",
+ "requiredCore": "1.520",
+ "scm": "github.com",
+ "sha1": "cB3Sz2oXvmiUQq76zBNvHCytldg=",
+ "title": "Metrics Ganglia Reporting Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/metrics-ganglia/3.0.0/metrics-ganglia.hpi",
+ "version": "3.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Metrics+Ganglia+Plugin"
+ },
+ "metrics-graphite": {
+ "buildDate": "Mar 19, 2014",
+ "dependencies": [
+ {
+ "name": "metrics",
+ "optional": false,
+ "version": "3.0.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin streams Metrics to a Graphite server.",
+ "gav": "org.jenkins-ci.plugins:metrics-graphite:3.0.0",
+ "labels": [],
+ "name": "metrics-graphite",
+ "releaseTimestamp": "2014-03-19T17:47:18.00Z",
+ "requiredCore": "1.520",
+ "scm": "github.com",
+ "sha1": "E8tDqAGu/Vp/rgCD9tQpw969SSI=",
+ "title": "Metrics Graphite Reporting Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/metrics-graphite/3.0.0/metrics-graphite.hpi",
+ "version": "3.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Metrics+Graphite+Plugin"
+ },
+ "microdocs-integration": {
+ "buildDate": "Aug 22, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "shermans",
+ "email": "s.hermans#maxxton.com",
+ "name": "Steven Hermans"
+ }
+ ],
+ "excerpt": "Integration with the MicroDocs server for publishing and detecting compatibility problems",
+ "gav": "com.maxxton:microdocs-integration:1.1",
+ "labels": [],
+ "name": "microdocs-integration",
+ "releaseTimestamp": "2016-08-22T16:25:40.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "wfhrBhgbGgc7ytcWd00ikwVMDpU=",
+ "title": "Integration with the MicroDocs server for publishing and detecting compatibility problems",
+ "url": "http://updates.jenkins-ci.org/download/plugins/microdocs-integration/1.1/microdocs-integration.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MICRODOCS+INTEGRATION+PLUGIN"
+ },
+ "mission-control-view": {
+ "buildDate": "Aug 12, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ashevtsov",
+ "email": "andy.shevtsov@gmail.com",
+ "name": "Andrey Shevtsov"
+ }
+ ],
+ "excerpt": "Full screen dashboard view featuring job history, build queue, and current status of jobs and nodes.",
+ "gav": "tech.andrey.jenkins:mission-control-view:0.9.2",
+ "labels": [
+ "ui"
+ ],
+ "name": "mission-control-view",
+ "previousTimestamp": "2016-05-03T01:54:46.00Z",
+ "previousVersion": "0.9.0",
+ "releaseTimestamp": "2016-08-12T00:04:20.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "zPuhi7lZzSKptKftbdZRrhHeYwk=",
+ "title": "Mission Control Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mission-control-view/0.9.2/mission-control-view.hpi",
+ "version": "0.9.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mission+Control+Plugin"
+ },
+ "mktmpio": {
+ "buildDate": "Aug 22, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rmgraham",
+ "email": "r.m.graham@gmail.com",
+ "name": "Ryan Graham"
+ }
+ ],
+ "excerpt": "Create a fully functional temporary database server (MySQL, PostgreSQL, MongoDB, Redis, etc.) for each build, powered by <a href='https://mktmp.io/'>mktmpio</a>. ",
+ "gav": "org.jenkins-ci.plugins:mktmpio:0.3.2",
+ "labels": [
+ "buildwrapper",
+ "external"
+ ],
+ "name": "mktmpio",
+ "previousTimestamp": "2015-08-09T14:49:16.00Z",
+ "previousVersion": "0.3.1",
+ "releaseTimestamp": "2015-08-22T16:00:42.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "9Zi93SpWptMOZe7fmVIJayixKUs=",
+ "title": "Jenkins mktmpio Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mktmpio/0.3.2/mktmpio.hpi",
+ "version": "0.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/mktmpio+Plugin"
+ },
+ "mock-load-builder": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "2.0"
+ },
+ {
+ "name": "workflow-job",
+ "optional": true,
+ "version": "2.0"
+ },
+ {
+ "name": "workflow-basic-steps",
+ "optional": true,
+ "version": "2.1"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.18"
+ },
+ {
+ "name": "credentials",
+ "optional": true,
+ "version": "2.1.4"
+ },
+ {
+ "name": "workflow-aggregator",
+ "optional": true,
+ "version": "2.1"
+ },
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.7.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a build step that generates mock load on the build node for use when testing&amp;nbsp;Jenkins scalability. ",
+ "gav": "org.jenkins-ci.plugins:mock-load-builder:1.1",
+ "labels": [],
+ "name": "mock-load-builder",
+ "previousTimestamp": "2014-04-09T16:56:14.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-09-23T14:39:24.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "+dcDx9pcPPp+FIQYibLdAaG36LE=",
+ "title": "Mock Load Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mock-load-builder/1.1/mock-load-builder.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mock+Load+Builder+Plugin"
+ },
+ "mock-security-realm": {
+ "buildDate": "Oct 16, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick",
+ "email": "jglick@cloudbees.com",
+ "name": "Jesse Glick"
+ }
+ ],
+ "excerpt": "Defines an insecure &ldquo;security realm&rdquo; only good for testing/demoing other parts of the system, such as authorization strategy.",
+ "gav": "org.jenkins-ci.plugins:mock-security-realm:1.3",
+ "labels": [
+ "user"
+ ],
+ "name": "mock-security-realm",
+ "previousTimestamp": "2014-11-18T11:15:54.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-10-16T15:43:52.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "5uLXxWZwHP/fFR7M4soxzjcUy40=",
+ "title": "Mock Security Realm",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mock-security-realm/1.3/mock-security-realm.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mock+Security+Realm+Plugin"
+ },
+ "mock-slave": {
+ "buildDate": "Sep 09, 2016",
+ "dependencies": [
+ {
+ "name": "durable-task",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Defines a dummy agent launcher and elastic cloud that really runs everything on localhost. Just for testing.",
+ "gav": "org.jenkins-ci.plugins:mock-slave:1.10",
+ "labels": [
+ "slaves"
+ ],
+ "name": "mock-slave",
+ "previousTimestamp": "2016-05-19T16:48:52.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2016-09-09T09:48:28.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "XAshK010OsF1sHc92Ij96leYnOU=",
+ "title": "Mock Agent Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mock-slave/1.10/mock-slave.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mock+Slave+Plugin"
+ },
+ "modernstatus": {
+ "buildDate": "Jan 30, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ovinn",
+ "email": "oliver@vinn.co.uk",
+ "name": "Oliver Vinn"
+ }
+ ],
+ "excerpt": "&amp;nbsp;This plugin provides an alternative set of status and action icons to provide a fresh look to Jenkins and to be friendly for all users i.e. iconic not just color indication.",
+ "gav": "org.jenkins-ci.plugins:modernstatus:1.2",
+ "labels": [
+ "ui"
+ ],
+ "name": "modernstatus",
+ "previousTimestamp": "2015-01-07T22:03:50.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-01-30T17:48:48.00Z",
+ "requiredCore": "1.440",
+ "scm": "github.com",
+ "sha1": "Fu+iP+k8/Sb9l2Pu1Mm0k/3derY=",
+ "title": "Modern Status",
+ "url": "http://updates.jenkins-ci.org/download/plugins/modernstatus/1.2/modernstatus.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Modern+Status+Plugin"
+ },
+ "momentjs": {
+ "buildDate": "Mar 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tfennelly"
+ }
+ ],
+ "excerpt": "Moment.js&amp;nbsp;Plugin",
+ "gav": "org.jenkins-ci.ui:momentjs:1.1.1",
+ "labels": [],
+ "name": "momentjs",
+ "previousTimestamp": "2015-12-15T15:17:28.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-03-03T12:08:36.00Z",
+ "requiredCore": "1.580.1",
+ "sha1": "lfq5+i/w0FRdlIGq0x2ez1peDLY=",
+ "title": "JavaScript GUI Lib: Moment.js bundle plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/momentjs/1.1.1/momentjs.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Moment.js"
+ },
+ "mongodb": {
+ "buildDate": "Feb 20, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kiy0taka",
+ "name": "Kiyotaka Oku"
+ }
+ ],
+ "excerpt": "This plugin provides <a href='http://www.mongodb.org/'>MongoDB</a> integration capabilities.",
+ "gav": "org.jenkins-ci.plugins:mongodb:1.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "mongodb",
+ "previousTimestamp": "2013-01-11T07:02:24.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2013-02-20T12:44:30.00Z",
+ "requiredCore": "1.425",
+ "scm": "github.com",
+ "sha1": "sCwvztYTKvPUYxcpz+WnOWbvcjY=",
+ "title": "Jenkins MongoDB Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mongodb/1.3/mongodb.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MongoDB+Plugin"
+ },
+ "mongodb-document-upload": {
+ "buildDate": "May 18, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "aluetjen",
+ "email": "luetjen@gmail.com",
+ "name": "Alexander Luetjen"
+ }
+ ],
+ "excerpt": "Adds a Post-Build step to upload JSON documents into MongoDb.",
+ "gav": "org.jenkins-ci.plugins:mongodb-document-upload:1.0",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "mongodb-document-upload",
+ "releaseTimestamp": "2013-05-18T16:42:00.00Z",
+ "requiredCore": "1.498",
+ "scm": "github.com",
+ "sha1": "Eh3cmNWzG3EPM3uAauuDugICWro=",
+ "title": "MongoDB Document Upload Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mongodb-document-upload/1.0/mongodb-document-upload.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MongoDB+Document+Upload+Plugin"
+ },
+ "monitoring": {
+ "buildDate": "Oct 01, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "evernat",
+ "email": "evernat@free.fr",
+ "name": "Emeric Vernat"
+ }
+ ],
+ "excerpt": "Monitoring plugin: Monitoring of Jenkins itself with <a href='https://github.com/javamelody/javamelody/wiki'>JavaMelody</a>. Open the <a href='http://localhost:8080/monitoring'>report</a> (or [http://yourhost/monitoring]) after installation. ",
+ "gav": "org.jvnet.hudson.plugins:monitoring:1.62.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "monitoring",
+ "previousTimestamp": "2016-09-12T01:19:08.00Z",
+ "previousVersion": "1.61.0",
+ "releaseTimestamp": "2016-10-01T21:38:10.00Z",
+ "requiredCore": "2.0",
+ "scm": "github.com",
+ "sha1": "BXHbKnIfriIr7N3X4olUVuS+m20=",
+ "title": "Monitoring",
+ "url": "http://updates.jenkins-ci.org/download/plugins/monitoring/1.62.0/monitoring.hpi",
+ "version": "1.62.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Monitoring"
+ },
+ "monkit-plugin": {
+ "buildDate": "Oct 22, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "*The MonKit plugin is used to display charts of data delivered in XML compliant with* *<a href='http://code.praqma.net/schemas/monkit/1.0.1/monkit.xsd'>monkit.xsd</a>**. Monkit also has a small Java API you can use to produce the XML.* ",
+ "gav": "net.praqma:monkit-plugin:1.0.0",
+ "labels": [],
+ "name": "monkit-plugin",
+ "previousTimestamp": "2012-06-08T13:57:40.00Z",
+ "previousVersion": "0.2.6",
+ "releaseTimestamp": "2015-10-22T16:42:14.00Z",
+ "requiredCore": "1.426",
+ "scm": "github.com",
+ "sha1": "dvGeBd+veg14jNTzNRiX90RqBdw=",
+ "title": "MonKit Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/monkit-plugin/1.0.0/monkit-plugin.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MonKit+Plugin"
+ },
+ "mozmill": {
+ "buildDate": "Mar 03, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "admc",
+ "name": "Adam Christian"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='https://developer.mozilla.org/en/Mozmill'>Mozmill</a> for automated tests in Gecko based applications such as Firefox and Thunderbird.",
+ "gav": "org.jvnet.hudson.plugins:mozmill:1.3",
+ "labels": [
+ "report"
+ ],
+ "name": "mozmill",
+ "previousTimestamp": "2009-09-25T21:08:04.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2010-03-03T09:53:58.00Z",
+ "requiredCore": "1.319",
+ "scm": "svn.dev.java.net",
+ "sha1": "KAMwwP+6nH6enzbIhbHqf3UXhHU=",
+ "title": "Mozmill Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mozmill/1.3/mozmill.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mozmill+Plugin"
+ },
+ "mq-notifier": {
+ "buildDate": "May 18, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "orjanpercy",
+ "email": "orjan.percy@sonymobile.com",
+ "name": "Örjan Percy"
+ },
+ {
+ "developerId": "t_westling",
+ "email": "tomas.westling@sonymobile.com",
+ "name": "Tomas Westling"
+ }
+ ],
+ "excerpt": "This plugin sends messages to an MQ, e.g. RabbitMQ whenever a build is started and finished. It also sends a message when a build enters and leaves the queue. By extending this plugin, developers can add events for when to send messages to MQ. ",
+ "gav": "com.sonymobile.jenkins.plugins.mq:mq-notifier:1.0",
+ "labels": [
+ "notifier"
+ ],
+ "name": "mq-notifier",
+ "releaseTimestamp": "2016-05-18T10:23:46.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "MPhghisJcw5UVsgYzTPtFjREOlM=",
+ "title": "MQ Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mq-notifier/1.0/mq-notifier.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MQ+Notifier+Plugin"
+ },
+ "mqtt-notification-plugin": {
+ "buildDate": "Jan 09, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.7.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gareth_western",
+ "email": "gareth@garethwestern.com",
+ "name": "Gareth Western"
+ }
+ ],
+ "excerpt": "A simple notifier that can publish build notifications to a topic on a&amp;nbsp;<a href='http://mqtt.org'>MQTT</a>&amp;nbsp;broker. ",
+ "gav": "jenkins.plugins:mqtt-notification-plugin:1.3",
+ "labels": [
+ "notifier"
+ ],
+ "name": "mqtt-notification-plugin",
+ "previousTimestamp": "2016-01-06T16:36:08.00Z",
+ "previousVersion": "1.2.1",
+ "releaseTimestamp": "2016-01-09T23:32:24.00Z",
+ "requiredCore": "1.600",
+ "scm": "github.com",
+ "sha1": "41On0MxkvfkXVDgP/shMONe7Zek=",
+ "title": "MQTT Notification Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mqtt-notification-plugin/1.3/mqtt-notification-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MQTT+Notification+Plugin"
+ },
+ "msbuild": {
+ "buildDate": "Jul 19, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ },
+ {
+ "developerId": "kdsweeney",
+ "email": "kyle.sweeney@valtech.com",
+ "name": "Kyle Sweeney"
+ },
+ {
+ "developerId": "marshall777",
+ "email": "marshall777@gmail.com",
+ "name": "Lionel Cabasson"
+ }
+ ],
+ "excerpt": "This plugin allows you to use MSBuild to build .NET projects. ",
+ "gav": "org.jenkins-ci.plugins:msbuild:1.26",
+ "labels": [
+ "builder",
+ "dotnet"
+ ],
+ "name": "msbuild",
+ "previousTimestamp": "2016-01-17T12:11:08.00Z",
+ "previousVersion": "1.25",
+ "releaseTimestamp": "2016-07-19T23:16:14.00Z",
+ "requiredCore": "1.625",
+ "scm": "github.com",
+ "sha1": "wwo2hD/+WpOM/QVofJHkF8cvh2E=",
+ "title": "Jenkins MSBuild Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/msbuild/1.26/msbuild.hpi",
+ "version": "1.26",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MSBuild+Plugin"
+ },
+ "mstest": {
+ "buildDate": "Sep 01, 2015",
+ "dependencies": [
+ {
+ "name": "emma",
+ "optional": false,
+ "version": "1.29"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nilleb",
+ "email": "me@nilleb.com",
+ "name": "Ivo Bellin Salarin"
+ }
+ ],
+ "excerpt": "This plugin converts <a href='http://msdn.microsoft.com/en-us/library/ms182486.aspx'>MSTest</a> TRX test reports into JUnit XML reports so it can be integrated with Jenkin's JUnit features. This plugin converts the .coveragexml files found in the project workspace to the EMMA format. You can use <a href='https://wiki.jenkins-ci.org/display/JENKINS/MSTestRunner+Plugin'>MSTestRunner plugin</a>&amp;nbsp;or <a href='https://wiki.jenkins-ci.org/display/JENKINS/VsTestRunner+Plugin'>VsTestRunner plugin</a>&amp;nbsp;to run the test and use this plugin to process the results.",
+ "gav": "org.jvnet.hudson.plugins:mstest:0.19",
+ "labels": [
+ "report",
+ "dotnet"
+ ],
+ "name": "mstest",
+ "previousTimestamp": "2015-05-12T22:33:52.00Z",
+ "previousVersion": "0.18",
+ "releaseTimestamp": "2015-09-01T06:55:52.00Z",
+ "requiredCore": "1.579",
+ "scm": "github.com",
+ "sha1": "1/q8NciA249mI8PkaK7EtPxhFVM=",
+ "title": "MSTest plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mstest/0.19/mstest.hpi",
+ "version": "0.19",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MSTest+Plugin"
+ },
+ "mstestrunner": {
+ "buildDate": "Aug 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ido_ran",
+ "email": "ido.ran@gmail.com",
+ "name": "Ido Ran"
+ }
+ ],
+ "excerpt": "This plugin allow you to execute test using MSTest command line tool. ",
+ "gav": "org.jenkins-ci.plugins:mstestrunner:1.3.0",
+ "labels": [
+ "builder",
+ "dotnet"
+ ],
+ "name": "mstestrunner",
+ "previousTimestamp": "2015-09-12T22:10:14.00Z",
+ "previousVersion": "1.2.0",
+ "releaseTimestamp": "2016-08-17T16:49:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "kX8OsalAze4g91as92UeKCoa37s=",
+ "title": "Jenkins MSTestRunner plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mstestrunner/1.3.0/mstestrunner.hpi",
+ "version": "1.3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MSTestRunner+Plugin"
+ },
+ "mttr": {
+ "buildDate": "Jan 31, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "zhaozhiming",
+ "email": "kingzzm1982@sina.com",
+ "name": "Zhao zhiming"
+ }
+ ],
+ "excerpt": "This plugin statistics job builds mean time to repair. ",
+ "gav": "org.jenkins-ci.plugins:mttr:1.1",
+ "labels": [
+ "report",
+ "ui"
+ ],
+ "name": "mttr",
+ "releaseTimestamp": "2013-01-31T21:22:30.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "/AnGwcRKQYoeOKtx4KoWXEpM1hY=",
+ "title": "mean time to repair plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mttr/1.1/mttr.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MTTR+Plugin"
+ },
+ "multi-branch-project-plugin": {
+ "buildDate": "Jul 08, 2016",
+ "compatibleSinceVersion": "0.5",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.12.1"
+ },
+ {
+ "name": "ivy",
+ "optional": true,
+ "version": "1.22"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": false,
+ "version": "5.7"
+ },
+ {
+ "name": "branch-api",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mjdetullio",
+ "email": "mjdetullio@gmail.com",
+ "name": "Matthew DeTullio"
+ }
+ ],
+ "excerpt": "This plugin adds additional project types that create sub-projects for each branch using a shared configuration.",
+ "gav": "com.github.mjdetullio.jenkins.plugins:multi-branch-project-plugin:0.5.1",
+ "labels": [
+ "scm-related",
+ "misc"
+ ],
+ "name": "multi-branch-project-plugin",
+ "previousTimestamp": "2016-07-01T18:51:18.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2016-07-08T16:00:12.00Z",
+ "requiredCore": "1.625.1",
+ "scm": "github.com",
+ "sha1": "HiMRvS3hv66Wm+LdaYd4B3UuDaE=",
+ "title": "Multi-Branch Project Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/multi-branch-project-plugin/0.5.1/multi-branch-project-plugin.hpi",
+ "version": "0.5.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multi-Branch+Project+Plugin"
+ },
+ "multi-module-tests-publisher": {
+ "buildDate": "May 18, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vimil",
+ "email": "vimilsaju@yahoo.com",
+ "name": "Vimil Saju"
+ }
+ ],
+ "excerpt": "This plugin stores junit results into an embedded derby database and groups testcases by module,package,class and case ",
+ "gav": "org.jenkins-ci.plugins:multi-module-tests-publisher:1.44",
+ "labels": [
+ "post-build"
+ ],
+ "name": "multi-module-tests-publisher",
+ "previousTimestamp": "2016-01-11T12:42:50.00Z",
+ "previousVersion": "1.42",
+ "releaseTimestamp": "2016-05-18T06:46:18.00Z",
+ "requiredCore": "1.587",
+ "scm": "github.com",
+ "sha1": "TLRK9DIKCLEIW0q40B8VpGByucc=",
+ "title": "Multi Module Tests Publisher",
+ "url": "http://updates.jenkins-ci.org/download/plugins/multi-module-tests-publisher/1.44/multi-module-tests-publisher.hpi",
+ "version": "1.44",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multi+Module+Tests+Publisher"
+ },
+ "multi-slave-config-plugin": {
+ "buildDate": "Aug 15, 2014",
+ "dependencies": [
+ {
+ "name": "lenientshutdown",
+ "optional": true,
+ "version": "1.0.0"
+ },
+ {
+ "name": "windows-slaves",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nilsi",
+ "email": "nicklas3.nilsson@sonymobile.com",
+ "name": "Nicklas Nilsson"
+ },
+ {
+ "developerId": "fredrikpersson",
+ "email": "fredrik6.persson@sonymobile.com",
+ "name": "Fredrik Persson"
+ },
+ {
+ "developerId": "rsandell",
+ "email": "robert.sandell@sonymobile.com",
+ "name": "Robert Sandell"
+ },
+ {
+ "developerId": "joakim_ahle",
+ "email": "joakim.ahle@sonymobile.com",
+ "name": "Joakim Ahle"
+ }
+ ],
+ "excerpt": "This plugin allows administrators to configure, add and delete several dumb slaves at the same time. \\\\ ",
+ "gav": "com.sonyericsson.hudson.plugins.multi-slave-config-plugin:multi-slave-config-plugin:1.2.0",
+ "labels": [
+ "slaves",
+ "cluster"
+ ],
+ "name": "multi-slave-config-plugin",
+ "previousTimestamp": "2014-07-22T11:13:10.00Z",
+ "previousVersion": "1.1.1",
+ "releaseTimestamp": "2014-08-15T13:40:28.00Z",
+ "requiredCore": "1.554",
+ "scm": "github.com",
+ "sha1": "ZXOez/d74JwkAdvNCbQqFpgW18o=",
+ "title": "Multi slave config plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/multi-slave-config-plugin/1.2.0/multi-slave-config-plugin.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multi+slave+config+plugin"
+ },
+ "multiple-scms": {
+ "buildDate": "Apr 07, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kbell",
+ "email": "kbell6397@gmail.com",
+ "name": "Kevin Bell"
+ },
+ {
+ "developerId": "rodrigc",
+ "email": "rodrigc@FreeBSD.org",
+ "name": "Craig Rodrigues"
+ }
+ ],
+ "excerpt": "Allows a job to check out sources from multiple SCM providers.",
+ "gav": "org.jenkins-ci.plugins:multiple-scms:0.6",
+ "labels": [
+ "scm"
+ ],
+ "name": "multiple-scms",
+ "previousTimestamp": "2015-07-13T11:31:32.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2016-04-07T02:21:50.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "pwmSkxusXt5mttJk2tw/6kB4Z/I=",
+ "title": "Jenkins Multiple SCMs plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/multiple-scms/0.6/multiple-scms.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multiple+SCMs+Plugin"
+ },
+ "mysql-auth": {
+ "buildDate": "Apr 16, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "darkhonor",
+ "name": "Alex Ackerman"
+ }
+ ],
+ "excerpt": "This plugin allows users to authenticate to a Hudson instance using credentials stored in a MySQL database.",
+ "gav": "org.jvnet.hudson.plugins:mysql-auth:1.0",
+ "labels": [
+ "user"
+ ],
+ "name": "mysql-auth",
+ "releaseTimestamp": "2010-04-16T14:53:42.00Z",
+ "requiredCore": "1.324",
+ "scm": "svn.dev.java.net",
+ "sha1": "AGFSK1xi/4VhdiFRaLAEbPQielE=",
+ "title": "Hudson MySQL Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/mysql-auth/1.0/mysql-auth.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MySQL+Authentication+Plugin"
+ },
+ "myst-plugin": {
+ "buildDate": "May 21, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "fdouek-rxr",
+ "email": "fabio.douek@rubiconred.com",
+ "name": "Fabio Douek"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='http://www.rubiconred.com/myst'>MyST</a>, in order to&amp;nbsp;automate the installation, configuration, patching and deployment of Oracle Fusion Middleware and Applications, such as:&amp;nbsp;Oracle Weblogic Server;&amp;nbsp;Oracle SOA Suite;&amp;nbsp;Oracle Service Bus (OSB);&amp;nbsp;Oracle Business Process Manager (BPM);&amp;nbsp;Oracle Business Activity Monitoring (BAM);&amp;nbsp;Oracle Identity and Access Management;&amp;nbsp;Oracle Unified Directory (OUD);&amp;nbsp;Oracle Policy Automation (OPA);&amp;nbsp;Oracle OAM Webgate;&amp;nbsp;Oracle Enterprise Manager (OEM);&amp;nbsp;Oracle HTTP Server (OHS);&amp;nbsp;Oracle AIA Foundation Pack;&amp;nbsp;Oracle AIA Process Integration Pack;&amp;nbsp;Oracle Data Integrator (ODI);&amp;nbsp;Oracle WebCenter Portal and Content *Note:*&amp;nbsp;&amp;nbsp;MyST is a commercial product. ",
+ "gav": "com.rubiconred.jenkins:myst-plugin:2.5.0.0",
+ "labels": [
+ "misc",
+ "upload",
+ "buildwrapper"
+ ],
+ "name": "myst-plugin",
+ "previousTimestamp": "2014-05-11T22:51:18.00Z",
+ "previousVersion": "2.4.5.0",
+ "releaseTimestamp": "2014-05-21T00:26:10.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "/adzLteY4SLWnKuIYQPg9V1OWd8=",
+ "title": "MyST Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/myst-plugin/2.5.0.0/myst-plugin.hpi",
+ "version": "2.5.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MyST+Plugin"
+ },
+ "naginator": {
+ "buildDate": "Aug 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "abayer",
+ "email": "andrew.bayer@gmail.com",
+ "name": "Andrew Bayer"
+ },
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ },
+ {
+ "developerId": "galunto",
+ "email": "tomer4@gmail.com",
+ "name": "Tomer Galun"
+ }
+ ],
+ "excerpt": "This plugin allows you to automatically reschedule a build after a build failure.",
+ "gav": "org.jenkins-ci.plugins:naginator:1.17.2",
+ "labels": [
+ "trigger"
+ ],
+ "name": "naginator",
+ "previousTimestamp": "2016-06-05T11:14:54.00Z",
+ "previousVersion": "1.17.1",
+ "releaseTimestamp": "2016-08-14T10:32:18.00Z",
+ "requiredCore": "1.554",
+ "scm": "github.com",
+ "sha1": "KoTuHC6DJvWtcNxQcUxYymVIjWU=",
+ "title": "Naginator",
+ "url": "http://updates.jenkins-ci.org/download/plugins/naginator/1.17.2/naginator.hpi",
+ "version": "1.17.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Naginator+Plugin"
+ },
+ "nant": {
+ "buildDate": "Nov 01, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jholzer",
+ "email": "jsholzer@gmail.com",
+ "name": "Justin Holzer"
+ }
+ ],
+ "excerpt": "This plugin allows for the execution of a <a href='http://nant.sourceforge.net/'>NAnt</a> build as a build step.",
+ "gav": "org.jenkins-ci.plugins:nant:1.4.3",
+ "labels": [
+ "builder",
+ "dotnet"
+ ],
+ "name": "nant",
+ "previousTimestamp": "2011-08-05T23:10:18.00Z",
+ "previousVersion": "1.4.2",
+ "releaseTimestamp": "2012-11-01T15:09:26.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "Pfm4i25OeWGv2CozWtlYEeEpmf0=",
+ "title": "NAnt Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nant/1.4.3/nant.hpi",
+ "version": "1.4.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NAnt+Plugin"
+ },
+ "ncover": {
+ "buildDate": "Mar 03, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mcrooney",
+ "name": "Michael Rooney"
+ }
+ ],
+ "excerpt": "Archive and publish .NET code coverage HTML reports from <a href='http://www.ncover.com/'>NCover</a>.",
+ "gav": "org.jvnet.hudson.plugins:ncover:0.3",
+ "labels": [
+ "report",
+ "dotnet"
+ ],
+ "name": "ncover",
+ "previousTimestamp": "2009-07-28T11:03:22.00Z",
+ "previousVersion": "0.2.6",
+ "releaseTimestamp": "2010-03-03T10:19:58.00Z",
+ "requiredCore": "1.319",
+ "scm": "svn.dev.java.net",
+ "sha1": "a3ytPYkKW4fNuePM3moMw9L2atw=",
+ "title": "NCover plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ncover/0.3/ncover.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NCover+Plugin"
+ },
+ "neoload-jenkins-plugin": {
+ "buildDate": "Sep 22, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "NeotysPluginSupport",
+ "email": "plugin-support@neotys.com",
+ "name": "Neotys Plugin Support"
+ }
+ ],
+ "excerpt": "This plugin allows you to&amp;nbsp;monitor load tests performed by <a href='http://www.neotys.com/product/overview-neoload.html'>NeoLoad</a> from Jenkins. NeoLoad test results are combined with the other integration jobs in the Jenkins dashboard. Performance regression issues are raised quickly to make Jenkins integration projects more relevant.",
+ "gav": "org.jenkins-ci.plugins:neoload-jenkins-plugin:2.0.1",
+ "labels": [
+ "external",
+ "misc"
+ ],
+ "name": "neoload-jenkins-plugin",
+ "previousTimestamp": "2016-06-20T15:50:58.00Z",
+ "previousVersion": "2.0.0",
+ "releaseTimestamp": "2016-09-22T10:24:20.00Z",
+ "requiredCore": "1.427",
+ "scm": "github.com",
+ "sha1": "5iL6HFNbRObH21hyBX/Gj0TmDJ4=",
+ "title": "NeoLoad Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/neoload-jenkins-plugin/2.0.1/neoload-jenkins-plugin.hpi",
+ "version": "2.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NeoLoad+Plugin"
+ },
+ "nerrvana-plugin": {
+ "buildDate": "Sep 24, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vic",
+ "email": "contact@nerrvana.com",
+ "name": "Victor Orlov"
+ }
+ ],
+ "excerpt": "The Nerrvana Jenkins plugin allows you to automate functional and cross browser Selenium testing of your web applications in <a href='http://www.nerrvana.com/'>Nerrvana cloud</a>. ",
+ "gav": "org.jenkins-ci.plugins:nerrvana-plugin:1.02.06",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "nerrvana-plugin",
+ "previousTimestamp": "2013-01-09T16:18:00.00Z",
+ "previousVersion": "1.02.01",
+ "releaseTimestamp": "2013-09-24T12:59:40.00Z",
+ "requiredCore": "1.450",
+ "scm": "github.com",
+ "sha1": "pgh7zl57nOKcUGilOy26Lo17QnY=",
+ "title": "Nerrvana Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nerrvana-plugin/1.02.06/nerrvana-plugin.hpi",
+ "version": "1.02.06",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nerrvana+Plugin"
+ },
+ "nested-view": {
+ "buildDate": "Nov 23, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mindless",
+ "name": "Alan Harder"
+ }
+ ],
+ "excerpt": "View type to allow grouping job views into multiple levels instead of one big list of tabs.",
+ "gav": "org.jenkins-ci.plugins:nested-view:1.14",
+ "labels": [
+ "ui"
+ ],
+ "name": "nested-view",
+ "previousTimestamp": "2013-11-05T23:40:44.00Z",
+ "previousVersion": "1.13",
+ "releaseTimestamp": "2013-11-23T12:43:32.00Z",
+ "requiredCore": "1.526",
+ "scm": "github.com",
+ "sha1": "bT6FI1Piq35F4y/iqG6lw6zsmxs=",
+ "title": "Nested View Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nested-view/1.14/nested-view.hpi",
+ "version": "1.14",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nested+View+Plugin"
+ },
+ "newrelic-deployment-notifier": {
+ "buildDate": "Apr 28, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mmchr",
+ "email": "hr.mohr@gmail.com",
+ "name": "Mads Mohr Christensen"
+ }
+ ],
+ "excerpt": "Jenkins plugin to notify New Relic about <a href='https://docs.newrelic.com/docs/apm/applications-menu/events/deployments-dashboard'>deployments</a>. ",
+ "gav": "org.jenkins-ci.plugins:newrelic-deployment-notifier:1.3",
+ "labels": [
+ "notifier"
+ ],
+ "name": "newrelic-deployment-notifier",
+ "previousTimestamp": "2015-04-19T17:20:48.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-04-28T21:50:34.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "NFo+xhb+vLUMmyvp4uCAp42ZwOQ=",
+ "title": "New Relic Deployment Notifier Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/newrelic-deployment-notifier/1.3/newrelic-deployment-notifier.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/New+Relic+Deployment+Notifier+Plugin"
+ },
+ "next-build-number": {
+ "buildDate": "Jun 15, 2016",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.41"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "akom",
+ "name": "Akom"
+ }
+ ],
+ "excerpt": "This is a simple plugin that changes the next build number Jenkins will use for a job.",
+ "gav": "org.jenkins-ci.plugins:next-build-number:1.4",
+ "labels": [
+ "misc"
+ ],
+ "name": "next-build-number",
+ "previousTimestamp": "2016-01-29T14:16:22.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-06-15T10:06:36.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "YtAKTwuKgtwcOrmIubIgYbMa+Lc=",
+ "title": "Next Build Number Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/next-build-number/1.4/next-build-number.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Next+Build+Number+Plugin"
+ },
+ "next-executions": {
+ "buildDate": "Sep 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ialbors",
+ "name": "Ignacio Albors"
+ }
+ ],
+ "excerpt": "Adds a widget in the sidebar with the next _build_ date for all the scheduled projects. It also creates a column definition.",
+ "gav": "org.jenkins-ci.plugins:next-executions:1.0.12",
+ "labels": [
+ "ui",
+ "listview-column"
+ ],
+ "name": "next-executions",
+ "previousTimestamp": "2016-02-04T20:35:26.00Z",
+ "previousVersion": "1.0.11",
+ "releaseTimestamp": "2016-09-20T14:03:18.00Z",
+ "requiredCore": "1.580.2",
+ "scm": "github.com",
+ "sha1": "j7pzFJRabvO5ggiZpsCMexBPCIQ=",
+ "title": "Next Executions",
+ "url": "http://updates.jenkins-ci.org/download/plugins/next-executions/1.0.12/next-executions.hpi",
+ "version": "1.0.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Next+Executions"
+ },
+ "nexus-artifact-uploader": {
+ "buildDate": "Sep 30, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.41"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pskumar448",
+ "email": "pskumar448@gmail.com",
+ "name": "Suresh Kumar"
+ }
+ ],
+ "excerpt": "This plugin goal is to upload artifacts generated from non-maven projects to Nexus-2.x This plugin doesn't support Nexus-3.x, We are working to provide capability uploading artifacts to Nexus-3.x Use Jenkins credentials support, from next release entering username &amp; password fields will be removed. ",
+ "gav": "sp.sd:nexus-artifact-uploader:2.5",
+ "labels": [
+ "upload"
+ ],
+ "name": "nexus-artifact-uploader",
+ "previousTimestamp": "2016-08-20T08:59:52.00Z",
+ "previousVersion": "2.4",
+ "releaseTimestamp": "2016-09-30T19:56:38.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "4uo9cSANuz4B4ryOFAnvozqclUc=",
+ "title": "Nexus Artifact Uploader",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nexus-artifact-uploader/2.5/nexus-artifact-uploader.hpi",
+ "version": "2.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nexus+Artifact+Uploader"
+ },
+ "nexus-task-runner": {
+ "buildDate": "Nov 07, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "quramy",
+ "email": "yosuke.kurami@gmail.com",
+ "name": "Yosuke Kurami"
+ }
+ ],
+ "excerpt": "This plugin executes Sonatype Nexus scheduled tasks after your build. ",
+ "gav": "org.jenkins-ci.plugins:nexus-task-runner:0.9.2",
+ "labels": [
+ "external"
+ ],
+ "name": "nexus-task-runner",
+ "previousTimestamp": "2012-11-05T03:31:54.00Z",
+ "previousVersion": "0.9.1",
+ "releaseTimestamp": "2012-11-07T01:05:14.00Z",
+ "requiredCore": "1.431",
+ "scm": "github.com",
+ "sha1": "x8AE0OnWLgmcJ0EEpG9CZfw/7fA=",
+ "title": "Nexus Task Runner Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nexus-task-runner/0.9.2/nexus-task-runner.hpi",
+ "version": "0.9.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nexus+Task+Runner+Plugin"
+ },
+ "nis-notification-lamp": {
+ "buildDate": "Feb 14, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "name": "New Image Systems GmbH"
+ }
+ ],
+ "excerpt": "This plugin analyzes tasks (displayed on tabpanel) and sends string &quot;SUCCESS&quot; or &quot;FAILURE&quot; to target server via UDP. ",
+ "gav": "org.jenkins-ci.plugins:nis-notification-lamp:1.131",
+ "labels": [],
+ "name": "nis-notification-lamp",
+ "previousTimestamp": "2013-02-07T15:37:20.00Z",
+ "previousVersion": "1.130",
+ "releaseTimestamp": "2013-02-14T19:35:56.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "+wJpQzjvtuOS+wAHlif0Mm8uf3A=",
+ "title": "NIS notification lamp",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nis-notification-lamp/1.131/nis-notification-lamp.hpi",
+ "version": "1.131",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NIS-notification-lamp"
+ },
+ "node-iterator-api": {
+ "buildDate": "Jun 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides support for iterating through all the Node instances that are in use by Jenkins,&amp;nbsp;even those Node instances that are not traditionally attached to Jenkins. The API exposed by this&amp;nbsp;plugin can be used by cloud provider plugins to identify unused provisioned resource.",
+ "gav": "org.jenkins-ci.plugins:node-iterator-api:1.5.0",
+ "labels": [],
+ "name": "node-iterator-api",
+ "previousTimestamp": "2014-06-10T14:19:34.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-06-17T09:24:38.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "EyGb9liaot7HU5P1koKgyUTiM+g=",
+ "title": "Node Iterator API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/node-iterator-api/1.5.0/node-iterator-api.hpi",
+ "version": "1.5.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Node+Iterator+API+Plugin"
+ },
+ "nodejs": {
+ "buildDate": "Feb 10, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cliffano",
+ "email": "blah@cliffano.com",
+ "name": "Cliffano Subagio"
+ },
+ {
+ "developerId": "fcamblor",
+ "email": "fcamblor@gmail.com",
+ "name": "Frédéric Camblor"
+ }
+ ],
+ "excerpt": "Provides Jenkins integration for NodeJS &amp; npm packages.",
+ "gav": "org.jenkins-ci.plugins:nodejs:0.2.1",
+ "labels": [],
+ "name": "nodejs",
+ "previousTimestamp": "2013-08-24T21:12:38.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2014-02-10T09:47:52.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "TI+q5TAgxKMr6/kq5JbG4NQgu6o=",
+ "title": "NodeJS Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nodejs/0.2.1/nodejs.hpi",
+ "version": "0.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NodeJS+Plugin"
+ },
+ "nodelabelparameter": {
+ "buildDate": "Mar 30, 2016",
+ "dependencies": [
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": true,
+ "version": "2.22"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "imod",
+ "name": "Dominik Bartholdi"
+ }
+ ],
+ "excerpt": "This plugin adds two new parameter types to job configuration - node and label, this allows to dynamically select the node where a job/project should be executed.",
+ "gav": "org.jenkins-ci.plugins:nodelabelparameter:1.7.2",
+ "labels": [
+ "slaves",
+ "trigger",
+ "parameter"
+ ],
+ "name": "nodelabelparameter",
+ "previousTimestamp": "2016-01-04T15:07:06.00Z",
+ "previousVersion": "1.7.1",
+ "releaseTimestamp": "2016-03-30T08:16:34.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "24E6GfSaScTrTRHSc5Q1GpzD/7c=",
+ "title": "Node and Label parameter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nodelabelparameter/1.7.2/nodelabelparameter.hpi",
+ "version": "1.7.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NodeLabel+Parameter+Plugin"
+ },
+ "nodenamecolumn": {
+ "buildDate": "Oct 21, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kalpanab",
+ "email": "kalpanab_2006@yahoo.com",
+ "name": "Kalpana Nagireddy"
+ }
+ ],
+ "excerpt": "Adds column showing node name and can be configured in views.",
+ "gav": "org.jenkins-ci.plugins:nodenamecolumn:1.2",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "nodenamecolumn",
+ "previousTimestamp": "2010-04-17T00:59:30.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-10-21T15:47:28.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "VoP+791RfwpNTN+MB9utf2ldaZ8=",
+ "title": "Node Name Column",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nodenamecolumn/1.2/nodenamecolumn.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Node+Name+Column+Plugin"
+ },
+ "nomad": {
+ "buildDate": "Sep 25, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "iverberk",
+ "email": "ivo@verberk.nl",
+ "name": "Ivo Verberk"
+ }
+ ],
+ "excerpt": "The Nomad Jenkins&amp;nbsp;plugin allows Jenkins to dynamically launch build slaves on a Nomad cluster depending on the workload.",
+ "gav": "org.jenkins-ci.plugins:nomad:0.3.1",
+ "labels": [
+ "slaves"
+ ],
+ "name": "nomad",
+ "previousTimestamp": "2016-08-25T13:17:50.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2016-09-25T20:33:42.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "xPRcxwoaK7zDvUS9fILT1k+6URc=",
+ "title": "Nomad Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nomad/0.3.1/nomad.hpi",
+ "version": "0.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nomad+Plugin"
+ },
+ "nopmdcheck": {
+ "buildDate": "Oct 26, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "quramy",
+ "email": "yosuke.kurami@gmail.com",
+ "name": "Yosuke Kurami"
+ }
+ ],
+ "excerpt": "This plugin checks the keyword 'NOPMD' in your codes. ",
+ "gav": "org.jenkins-ci.plugins:nopmdcheck:0.9",
+ "labels": [
+ "misc"
+ ],
+ "name": "nopmdcheck",
+ "releaseTimestamp": "2012-10-26T00:22:38.00Z",
+ "requiredCore": "1.431",
+ "scm": "github.com",
+ "sha1": "xOSCCk+0dudR2JIXXJOR3C/Vblo=",
+ "title": "NOPMD check plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nopmdcheck/0.9/nopmdcheck.hpi",
+ "version": "0.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/nopmdcheck+Plugin"
+ },
+ "nopmdverifytrac": {
+ "buildDate": "Oct 26, 2012",
+ "dependencies": [
+ {
+ "name": "nopmdcheck",
+ "optional": false,
+ "version": "0.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "yosuke"
+ }
+ ],
+ "excerpt": "When you use Trac to tracking issues, this plugin makes a report about whether 'NOPMD' in your codes are right. ",
+ "gav": "org.jenkins-ci.plugins:nopmdverifytrac:0.9",
+ "labels": [
+ "external"
+ ],
+ "name": "nopmdverifytrac",
+ "releaseTimestamp": "2012-10-26T00:56:42.00Z",
+ "requiredCore": "1.431",
+ "scm": "github.com",
+ "sha1": "FxaTSxaqdp9mIgxcrDnNDht+zqs=",
+ "title": "NOPMD verify Trac plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nopmdverifytrac/0.9/nopmdverifytrac.hpi",
+ "version": "0.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/nopmdverifytrac+Plugin"
+ },
+ "notification": {
+ "buildDate": "Nov 12, 2015",
+ "dependencies": [
+ {
+ "name": "s3",
+ "optional": true,
+ "version": "0.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "markb",
+ "email": "markb@tikalk.com",
+ "name": "Mark Berner"
+ },
+ {
+ "developerId": "hagzag",
+ "email": "hagzag@tikalk.com",
+ "name": "Haggai Philip Zagury"
+ },
+ {
+ "developerId": "evgenyg",
+ "email": "evgenyg@gmail.com",
+ "name": "Evgeny Goldin"
+ }
+ ],
+ "excerpt": "Allows sending job status notifications via HTTP, TCP or UDP.",
+ "gav": "com.tikalk.hudson.plugins:notification:1.10",
+ "labels": [
+ "notifier"
+ ],
+ "name": "notification",
+ "previousTimestamp": "2015-02-26T15:05:06.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2015-11-12T16:39:44.00Z",
+ "requiredCore": "1.605",
+ "scm": "github.com",
+ "sha1": "Cxav0Qm5HtLHtYxsLZRUXYVXDE0=",
+ "title": "Jenkins Notification plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/notification/1.10/notification.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Notification+Plugin"
+ },
+ "nouvola-divecloud": {
+ "buildDate": "Aug 27, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "smacarthur",
+ "email": "shawn.macarthur@nouvola.com",
+ "name": "Shawn MacArthur"
+ }
+ ],
+ "excerpt": "Adds a build step to run a performance load test with&amp;nbsp;<a href='https://divecloud.nouvola.com/'>Nouvola DiveCloud</a>.",
+ "gav": "org.jenkins-ci.plugins:nouvola-divecloud:1.02",
+ "labels": [
+ "builder"
+ ],
+ "name": "nouvola-divecloud",
+ "previousTimestamp": "2015-08-26T22:19:06.00Z",
+ "previousVersion": "1.01",
+ "releaseTimestamp": "2015-08-27T07:08:40.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "sNO6yNZ7X4flNHQgcu2Td9lNvOU=",
+ "title": "Nouvola DiveCloud",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nouvola-divecloud/1.02/nouvola-divecloud.hpi",
+ "version": "1.02",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nouvola+DiveCloud+Plugin"
+ },
+ "nsiqcollector": {
+ "buildDate": "Aug 06, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "iceize",
+ "email": "iceize@nhn.com",
+ "name": "Oh, Young-eun"
+ },
+ {
+ "developerId": "junoyoon",
+ "email": "junoyoon@gmail.com",
+ "name": "JunHo Yoon"
+ }
+ ],
+ "excerpt": "This plugin shows the lines of code and cyclomatic complexity from from external metric tools named <a href='http://dev.naver.com/projects/nsiqcollector'>N'SIQ Collector</a>.",
+ "gav": "org.jvnet.hudson.plugins:nsiqcollector:1.3.3",
+ "labels": [
+ "report"
+ ],
+ "name": "nsiqcollector",
+ "previousTimestamp": "2010-10-21T11:30:16.00Z",
+ "previousVersion": "1.3.2",
+ "releaseTimestamp": "2011-08-06T08:25:34.00Z",
+ "requiredCore": "1.395",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "LifvvdE4okdqHY9o5QYG25QerC0=",
+ "title": "NSIQ Collector Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nsiqcollector/1.3.3/nsiqcollector.hpi",
+ "version": "1.3.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NSIQ+Collector+Plugin"
+ },
+ "nuget": {
+ "buildDate": "Aug 05, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "greybird",
+ "email": "arnaud.dev@gmail.com",
+ "name": "Arnaud TAMAILLON"
+ },
+ {
+ "developerId": "baritonehands",
+ "email": "biscuitalmighty@gmail.com",
+ "name": "Brian Gregg"
+ }
+ ],
+ "excerpt": "A Jenkins plugin allowing to: * trigger a job when a NuGet dependency is updated. * publish packages to NuGet repositories ",
+ "gav": "org.jenkins-ci.plugins:nuget:0.6",
+ "labels": [],
+ "name": "nuget",
+ "previousTimestamp": "2016-04-14T00:23:32.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2016-08-05T10:00:12.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "v6S/4rSW8ZksB3y88bYkc/HURNo=",
+ "title": "Jenkins Nuget Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nuget/0.6/nuget.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nuget+Plugin"
+ },
+ "numeraljs": {
+ "buildDate": "Mar 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tfennelly"
+ }
+ ],
+ "excerpt": "Numeral.js&amp;nbsp;Plugin",
+ "gav": "org.jenkins-ci.ui:numeraljs:1.1.1",
+ "labels": [],
+ "name": "numeraljs",
+ "previousTimestamp": "2015-12-15T15:28:48.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-03-03T12:09:58.00Z",
+ "requiredCore": "1.580.1",
+ "sha1": "6rEqG3FIN2RF/pyHpTIKK0iiuV0=",
+ "title": "JavaScript GUI Lib: Numeral.js bundle plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/numeraljs/1.1.1/numeraljs.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Numeral.js"
+ },
+ "nunit": {
+ "buildDate": "Aug 26, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.14"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "redsolo",
+ "email": "eramfelt@gmail.com",
+ "name": "Erik Ramfelt"
+ }
+ ],
+ "excerpt": "This plugin allows you to publish <a href='http://www.nunit.org/'>NUnit</a> test results.",
+ "gav": "org.jenkins-ci.plugins:nunit:0.18",
+ "labels": [
+ "report"
+ ],
+ "name": "nunit",
+ "previousTimestamp": "2015-06-06T12:14:34.00Z",
+ "previousVersion": "0.17",
+ "releaseTimestamp": "2016-08-26T16:23:50.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "FZ28hq8MPqGfYcLvMXEqbctlGDQ=",
+ "title": "Jenkins NUnit plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nunit/0.18/nunit.hpi",
+ "version": "0.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NUnit+Plugin"
+ },
+ "nvm-wrapper": {
+ "buildDate": "Aug 19, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "atoms",
+ "email": "atomsmail+jenkins@gmail.com",
+ "name": "Tomas Salazar"
+ }
+ ],
+ "excerpt": "Allows you to easily install, manage, and work with multiple Node.js enviroments ",
+ "gav": "org.jenkins-ci.plugins:nvm-wrapper:0.1.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "nvm-wrapper",
+ "previousTimestamp": "2016-08-19T18:52:00.00Z",
+ "previousVersion": "0.1.0",
+ "releaseTimestamp": "2016-08-19T18:57:24.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "9GgMeycyypx7dsMt2NkOYCzd198=",
+ "title": "nvm wrapper",
+ "url": "http://updates.jenkins-ci.org/download/plugins/nvm-wrapper/0.1.1/nvm-wrapper.hpi",
+ "version": "0.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nvm+Wrapper+Plugin"
+ },
+ "oauth-credentials": {
+ "buildDate": "Feb 13, 2014",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mattmoor",
+ "name": "Matt Moore"
+ }
+ ],
+ "excerpt": "This plugin library allows OAuth providers to surface OAuth credentials in Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:oauth-credentials:0.3",
+ "labels": [],
+ "name": "oauth-credentials",
+ "previousTimestamp": "2014-02-13T15:00:52.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2014-02-13T22:26:30.00Z",
+ "requiredCore": "1.521",
+ "scm": "github.com",
+ "sha1": "TDVbWzZEXvFXVMPp6h6IXJrK1+4=",
+ "title": "OAuth Credentials plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/oauth-credentials/0.3/oauth-credentials.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OAuth+Credentials"
+ },
+ "octoperf": {
+ "buildDate": "Jun 22, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jloisel",
+ "email": "jerome.loisel@octoperf.com",
+ "name": "Jerome Loisel"
+ },
+ {
+ "developerId": "geraldpereira",
+ "email": "gerald.pereira@octoperf.com",
+ "name": "Gerald Pereira"
+ }
+ ],
+ "excerpt": "This plugin allows you to run load tests on <a href='https://octoperf.com/'>OctoPerf</a>&amp;nbsp;from Jenkins. ",
+ "gav": "org.jenkinsci.plugins:octoperf:2.0.0",
+ "labels": [
+ "report",
+ "misc",
+ "devops"
+ ],
+ "name": "octoperf",
+ "previousTimestamp": "2016-03-03T14:22:50.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-06-22T14:12:50.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "x7ypdKKIvkSnKoZb5jGRnSVhIVc=",
+ "title": "OctoPerf Load Testing Plugin.",
+ "url": "http://updates.jenkins-ci.org/download/plugins/octoperf/2.0.0/octoperf.hpi",
+ "version": "2.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OctoPerf+Plugin"
+ },
+ "octopusdeploy": {
+ "buildDate": "Jul 28, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "badriance",
+ "email": "badriance@vistaprint.com",
+ "name": "Brian Adriance"
+ },
+ {
+ "developerId": "jonlabroad",
+ "email": "jlabroad@vistaprint.com",
+ "name": "Jon LaBroad"
+ },
+ {
+ "developerId": "lteixeira",
+ "email": "lteixeira@vistaprint.com",
+ "name": "Luis Teixeira"
+ }
+ ],
+ "excerpt": "Allows users to create and deploy releases with&amp;nbsp;OctopusDeploy ",
+ "gav": "hudson.plugins.octopusdeploy:octopusdeploy:1.4.0",
+ "labels": [
+ "deployment"
+ ],
+ "name": "octopusdeploy",
+ "previousTimestamp": "2016-07-28T07:56:22.00Z",
+ "previousVersion": "1.3.2",
+ "releaseTimestamp": "2016-07-28T08:19:14.00Z",
+ "requiredCore": "1.612",
+ "scm": "github.com",
+ "sha1": "4DIGTqAAKHpDsHQbiNfGAft7FkM=",
+ "title": "OctopusDeploy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/octopusdeploy/1.4.0/octopusdeploy.hpi",
+ "version": "1.4.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OctopusDeploy+Plugin"
+ },
+ "offlineonfailure-plugin": {
+ "buildDate": "Jun 19, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "andreas.nilsson@atex.com",
+ "name": "Andreas Nilsson"
+ },
+ {
+ "developerId": "bitter",
+ "email": "sternevald@imap.cc",
+ "name": "Martin Sternevald"
+ }
+ ],
+ "excerpt": "Adds a post build configuration option to bring the executing node offline if the build fails. ",
+ "gav": "org.jenkins-ci.plugins:offlineonfailure-plugin:1.0",
+ "labels": [
+ "post-build"
+ ],
+ "name": "offlineonfailure-plugin",
+ "releaseTimestamp": "2011-06-19T15:29:00.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "b24ZX21Mz61by7jVNmGVC+AFs+4=",
+ "title": "OfflineOnFailure",
+ "url": "http://updates.jenkins-ci.org/download/plugins/offlineonfailure-plugin/1.0/offlineonfailure-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Offline+Node+On+Failure+Plugin"
+ },
+ "oic-auth": {
+ "buildDate": "Jul 14, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mbischoff",
+ "email": "m.bischoff@controplex.com",
+ "name": "michael bischoff"
+ }
+ ],
+ "excerpt": "Allows users to authenticate using self hosted or public openid connect providers",
+ "gav": "org.jenkins-ci.plugins:oic-auth:1.0",
+ "labels": [
+ "user"
+ ],
+ "name": "oic-auth",
+ "releaseTimestamp": "2016-07-14T01:16:08.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "24M4KqYhRkevj4fZhcsWIbCbgto=",
+ "title": "OpenId Connect Authentication Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/oic-auth/1.0/oic-auth.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Openid+Connect+Authentication+Plugin"
+ },
+ "one-shot-executor": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ },
+ {
+ "developerId": "ydubreuil",
+ "email": "yoann.dubreuil@gmail.com",
+ "name": "Yoann Dubreuil"
+ }
+ ],
+ "excerpt": "Infrastructure plugin for One-Shot executors",
+ "gav": "org.jenkins-ci.plugins:one-shot-executor:1.1",
+ "labels": [
+ "slaves"
+ ],
+ "name": "one-shot-executor",
+ "previousTimestamp": "2016-08-02T13:26:10.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-09-27T14:29:22.00Z",
+ "requiredCore": "2.9",
+ "scm": "github.com",
+ "sha1": "jB1cCRaaV5M+qYkrcSm47uZZ4XU=",
+ "title": "One-Shot Executor Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/one-shot-executor/1.1/one-shot-executor.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/One-Shot+Executor"
+ },
+ "ontrack": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.35"
+ },
+ {
+ "name": "envinject",
+ "optional": false,
+ "version": "1.92.1"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dcoraboeuf",
+ "email": "damien.coraboeuf@gmail.com",
+ "name": "Damien Coraboeuf"
+ }
+ ],
+ "excerpt": "This plug-in allows to connect to an <a href='http://nemerosa.github.io/ontrack/'>Ontrack</a> server in order to enable traceability and monitoring of your continuous delivery pipeline(s).",
+ "gav": "org.jenkins-ci.plugins:ontrack:2.25.1",
+ "labels": [
+ "notifier",
+ "builder"
+ ],
+ "name": "ontrack",
+ "previousTimestamp": "2016-09-15T08:02:48.00Z",
+ "previousVersion": "2.25.0",
+ "releaseTimestamp": "2016-09-23T08:36:26.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "JpiIwG1urJMn/AH/1POa0/MemFo=",
+ "title": "ontrack Jenkins plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ontrack/2.25.1/ontrack.hpi",
+ "version": "2.25.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ontrack+Plugin"
+ },
+ "open-stf": {
+ "buildDate": "Sep 09, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "android-emulator",
+ "optional": false,
+ "version": "2.15"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.11.2-0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "justice3120",
+ "email": "masayoshi.sakamoto@dena.jp",
+ "name": "Masayoshi Sakamoto"
+ }
+ ],
+ "excerpt": "Allows android developer to use android devices with&amp;nbsp;<a href='http://openstf.io/'>OpenSTF</a> ",
+ "gav": "org.jenkins-ci.plugins:open-stf:1.0.1",
+ "labels": [
+ "android"
+ ],
+ "name": "open-stf",
+ "previousTimestamp": "2016-07-22T14:10:46.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-09-09T15:23:34.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "+3aLZoLBdcHzpCOjyl0nwaQpG8A=",
+ "title": "Open STF Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/open-stf/1.0.1/open-stf.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Open+STF+Plugin"
+ },
+ "openJDK-native-plugin": {
+ "buildDate": "Jan 16, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ }
+ ],
+ "excerpt": "This plugin adds auto installer for OpenJDK from native RPM packages and provides switching between OpenJDK vesrions using Linux alternatives",
+ "gav": "org.jenkinsci.plugins.openjdk_native:openJDK-native-plugin:1.1",
+ "labels": [],
+ "name": "openJDK-native-plugin",
+ "previousTimestamp": "2012-03-01T10:08:22.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-01-16T23:23:06.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "fW2/7chr7uxA/ILbm2VHT7QdBMM=",
+ "title": "OpenJDK native installer plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openJDK-native-plugin/1.1/openJDK-native-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenJDK+native+installer+plugin"
+ },
+ "openid": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [
+ {
+ "name": "openid4java",
+ "optional": false,
+ "version": "0.9.8.0"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kkawaguchi@cloudbees.com",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin lets your Jenkins users login to Jenkins through external OpenID providers, without using password.",
+ "gav": "org.jenkins-ci.plugins:openid:2.2",
+ "labels": [
+ "user"
+ ],
+ "name": "openid",
+ "previousTimestamp": "2014-10-02T09:30:02.00Z",
+ "previousVersion": "2.1.1",
+ "releaseTimestamp": "2016-10-05T15:21:58.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "AxNg20EsrKctobddmPwjlns0jv4=",
+ "title": "OpenID plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openid/2.2/openid.hpi",
+ "version": "2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenID+plugin"
+ },
+ "openid4java": {
+ "buildDate": "May 14, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenc",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a shared dependency on the openid4java library so that other plugins can co-operate when using this library.",
+ "gav": "org.jenkins-ci.plugins:openid4java:0.9.8.0",
+ "labels": [],
+ "name": "openid4java",
+ "releaseTimestamp": "2014-05-14T16:44:30.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "EGxPFPeB4MXtflWT1c3/kMpOEpU=",
+ "title": "OpenID4Java API",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openid4java/0.9.8.0/openid4java.hpi",
+ "version": "0.9.8.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenID4Java+Plugin"
+ },
+ "openscada-jenkins-exporter": {
+ "buildDate": "Jun 03, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ctron",
+ "email": "ctron@dentrassi.de",
+ "name": "Jens Reimann"
+ }
+ ],
+ "excerpt": "This is a plugin which exports all kinds of information (like build job status) using the openSCADA DA protocol. The protocol is using an event &amp;nbsp;driven way instead of letting clients poll the recent status.",
+ "gav": "org.openscada.jenkins:openscada-jenkins-exporter:0.0.2",
+ "labels": [
+ "notifier",
+ "external"
+ ],
+ "name": "openscada-jenkins-exporter",
+ "previousTimestamp": "2013-05-29T14:49:52.00Z",
+ "previousVersion": "0.0.1",
+ "releaseTimestamp": "2013-06-03T09:33:54.00Z",
+ "requiredCore": "1.480",
+ "scm": "git.openscada.org",
+ "sha1": "qr0IxWRWRpsIZBAbVVZBhlYmh6A=",
+ "title": "openSCADA Exporter",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openscada-jenkins-exporter/0.0.2/openscada-jenkins-exporter.hpi",
+ "version": "0.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/openSCADA+Exporter"
+ },
+ "openshift-deployer": {
+ "buildDate": "Feb 26, 2015",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "siamaksade",
+ "email": "ssadeghi@redhat.com",
+ "name": "Siamak Sadeghianfar"
+ },
+ {
+ "developerId": "enham",
+ "email": "enham@redhat.com",
+ "name": "Evong Nham"
+ }
+ ],
+ "excerpt": "This plugin add the ability to create gears and deploy applications to <a href='https://www.openshift.com'>OpenShift</a>. ",
+ "gav": "org.jenkins-ci.plugins:openshift-deployer:1.2.0",
+ "labels": [
+ "upload",
+ "external",
+ "post-build"
+ ],
+ "name": "openshift-deployer",
+ "previousTimestamp": "2015-01-09T09:28:00.00Z",
+ "previousVersion": "1.1.1",
+ "releaseTimestamp": "2015-02-26T19:29:36.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "PCk4gOF0jVbN32fhiftNM4dZjB8=",
+ "title": "OpenShift Deployer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openshift-deployer/1.2.0/openshift-deployer.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenShift+Deployer+Plugin"
+ },
+ "openshift-login": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-auth",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "smarterclayton",
+ "email": "smarterclayton@gmail.com",
+ "name": "Clayton Coleman"
+ },
+ {
+ "developerId": "gabemontero",
+ "email": "gmontero@redhat.com",
+ "name": "Gabe Montero"
+ }
+ ],
+ "excerpt": "Allows users to manage logging into Jenkins via the embedded OpenShift OAuth server. ",
+ "gav": "org.openshift.jenkins:openshift-login:0.1",
+ "labels": [
+ "user",
+ "security"
+ ],
+ "name": "openshift-login",
+ "releaseTimestamp": "2016-10-03T11:06:10.00Z",
+ "requiredCore": "1.642.2",
+ "scm": "github.com",
+ "sha1": "1q4WxLnv9NF3VAxS++/WjwvOOSM=",
+ "title": "OpenShift Login Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openshift-login/0.1/openshift-login.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenShift+Login+Plugin"
+ },
+ "openshift-pipeline": {
+ "buildDate": "Aug 25, 2016",
+ "dependencies": [
+ {
+ "name": "openshift-sync",
+ "optional": false,
+ "version": "0.0.11"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gmontero",
+ "email": "gmontero@redhat.com",
+ "name": "Gabe Montero"
+ }
+ ],
+ "excerpt": "Allows users to create jobs, pipelines, and workflows that operate with a Kubernetes based OpenShift server. <a href='https://github.com/openshift/jenkins-plugin'>Source Code</a> {note}This plugin currently requires JDK 1.8 based on its maven dependencies requirement of 1.8.{note} ",
+ "gav": "com.openshift.jenkins:openshift-pipeline:1.0.22",
+ "labels": [
+ "pipeline",
+ "scm-related",
+ "post-build",
+ "builder",
+ "misc"
+ ],
+ "name": "openshift-pipeline",
+ "previousTimestamp": "2016-07-13T09:45:24.00Z",
+ "previousVersion": "1.0.21",
+ "releaseTimestamp": "2016-08-25T12:24:40.00Z",
+ "requiredCore": "1.651",
+ "scm": "github.com",
+ "sha1": "+shlQxzt2t5LP/cZcyQd1c4GU6o=",
+ "title": "OpenShift Pipeline Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openshift-pipeline/1.0.22/openshift-pipeline.hpi",
+ "version": "1.0.22",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenShift+Pipeline+Plugin"
+ },
+ "openshift-sync": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "pipeline-rest-api",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.2"
+ },
+ {
+ "name": "kubernetes",
+ "optional": false,
+ "version": "0.6"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jimmi",
+ "email": "jimmidyson@gmail.com",
+ "name": "Jimmi Dyson"
+ }
+ ],
+ "excerpt": "Sync your jobs with <a href='https://github.com/openshift/origin/'>OpenShift</a>.",
+ "gav": "io.fabric8.jenkins.plugins:openshift-sync:0.0.13",
+ "labels": [
+ "cluster",
+ "builder",
+ "scm-related",
+ "external"
+ ],
+ "name": "openshift-sync",
+ "previousTimestamp": "2016-08-12T19:11:44.00Z",
+ "previousVersion": "0.0.12",
+ "releaseTimestamp": "2016-09-23T15:38:48.00Z",
+ "requiredCore": "1.642.2",
+ "scm": "github.com",
+ "sha1": "UDFmwfb2x6X7Ody2LjydjYfEubU=",
+ "title": "OpenShift Sync",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openshift-sync/0.0.13/openshift-sync.hpi",
+ "version": "0.0.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenShift+Sync+Plugin"
+ },
+ "openstack-cloud": {
+ "buildDate": "Aug 22, 2016",
+ "dependencies": [
+ {
+ "name": "ssh-slaves",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "cloud-stats",
+ "optional": false,
+ "version": "0.3"
+ },
+ {
+ "name": "config-file-provider",
+ "optional": false,
+ "version": "2.7.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mavlyutov",
+ "email": "m.mavlyutov@gmail.com",
+ "name": "Marat Mavlyutov"
+ },
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Provision slaves from OpenStack on demand. ",
+ "gav": "org.jenkins-ci.plugins:openstack-cloud:2.11",
+ "labels": [
+ "cluster",
+ "slaves"
+ ],
+ "name": "openstack-cloud",
+ "previousTimestamp": "2016-07-11T12:29:30.00Z",
+ "previousVersion": "2.9",
+ "releaseTimestamp": "2016-08-22T20:16:56.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "Dl3oGTjZN3rF5Q7wXfit1OQ2i14=",
+ "title": "Openstack Cloud Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openstack-cloud/2.11/openstack-cloud.hpi",
+ "version": "2.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Openstack+Cloud+Plugin"
+ },
+ "openstack-heat": {
+ "buildDate": "Sep 15, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "draoullig",
+ "email": "frederic.gillouard@arkea.com",
+ "name": "Frederic Gillouard"
+ }
+ ],
+ "excerpt": "Openstack Heat Plugin allows to interact with OpenStack by using the Heat API in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:openstack-heat:1.0",
+ "labels": [
+ "builder"
+ ],
+ "name": "openstack-heat",
+ "releaseTimestamp": "2016-09-15T17:44:28.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "xv7HM2BER2Rz6BJnhwXIvb9m+PI=",
+ "title": "Openstack Heat Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/openstack-heat/1.0/openstack-heat.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Openstack+Heat+Plugin"
+ },
+ "oslc-cm": {
+ "buildDate": "Jul 22, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mdhar",
+ "email": "mdhar@free.fr",
+ "name": "Madhumita DHAR"
+ }
+ ],
+ "excerpt": "Connects to different remote bug trackers via the OSLC protocol ",
+ "gav": "org.jenkins-ci.plugins:oslc-cm:1.31",
+ "labels": [
+ "notifier"
+ ],
+ "name": "oslc-cm",
+ "previousTimestamp": "2011-07-21T00:24:58.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2011-07-22T10:36:36.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "NHEf02sMF+mss8oKDA+MPPQOlhM=",
+ "title": "OSLC CM Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/oslc-cm/1.31/oslc-cm.hpi",
+ "version": "1.31",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OSLC+CM+Plugin"
+ },
+ "ownership": {
+ "buildDate": "Sep 17, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.9"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": true,
+ "version": "5.1"
+ },
+ {
+ "name": "authorize-project",
+ "optional": true,
+ "version": "1.1.0"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "matrix-auth",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "script-security",
+ "optional": true,
+ "version": "1.20"
+ },
+ {
+ "name": "role-strategy",
+ "optional": true,
+ "version": "2.1.0"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.14"
+ },
+ {
+ "name": "job-restrictions",
+ "optional": true,
+ "version": "0.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "Plugin provides an ownership mechanism for jobs and slave nodes. ",
+ "gav": "com.synopsys.jenkinsci:ownership:0.9.0",
+ "labels": [
+ "user",
+ "slaves",
+ "misc",
+ "ui",
+ "buildwrapper"
+ ],
+ "name": "ownership",
+ "previousTimestamp": "2015-10-27T22:48:40.00Z",
+ "previousVersion": "0.8",
+ "releaseTimestamp": "2016-09-17T20:39:56.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "hIqeljYnN7cppUMAibD8abHrVkQ=",
+ "title": "Job and Node ownership plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ownership/0.9.0/ownership.hpi",
+ "version": "0.9.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ownership+Plugin"
+ },
+ "p4": {
+ "buildDate": "Oct 06, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-cps",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "workflow-aggregator",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "scm-api",
+ "optional": true,
+ "version": "0.1"
+ },
+ {
+ "name": "mailer",
+ "optional": true,
+ "version": "1.16"
+ },
+ {
+ "name": "workflow-job",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "workflow-basic-steps",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.4"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "p4paul",
+ "email": "pallen@perforce.com",
+ "name": "Paul Allen"
+ }
+ ],
+ "excerpt": "P4 Plugin - By <a href='http://perforce.com'>Perforce Software</a>. Jenkins plugin for a Perforce Helix Versioning Engine.",
+ "gav": "org.jenkins-ci.plugins:p4:1.4.8",
+ "labels": [
+ "scm"
+ ],
+ "name": "p4",
+ "previousTimestamp": "2016-09-30T13:25:10.00Z",
+ "previousVersion": "1.4.7",
+ "releaseTimestamp": "2016-10-06T16:25:54.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "W0N9nyF2MfwMgVdN8hoCFuUM7qQ=",
+ "title": "P4 Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/p4/1.4.8/p4.hpi",
+ "version": "1.4.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/P4+Plugin"
+ },
+ "paaslane-estimate": {
+ "buildDate": "Sep 03, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ctp_alan_zall",
+ "name": "Alan Zall"
+ },
+ {
+ "developerId": "ctp_alan_zaffetti",
+ "name": "Alan Zaffetti"
+ }
+ ],
+ "excerpt": "Provides a post build action for submitting artifacts to PaaSLane for scanning.",
+ "gav": "com.cloudtp.jenkins:paaslane-estimate:1.0.4",
+ "labels": [
+ "post-build"
+ ],
+ "name": "paaslane-estimate",
+ "previousTimestamp": "2015-02-03T22:16:48.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2015-09-03T15:17:46.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "VlFNYr2AwBaocxfDIZwANyWDMvY=",
+ "title": "Jenkins PaaSLane Estimate plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/paaslane-estimate/1.0.4/paaslane-estimate.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PaaSLane+Estimate+Plugin"
+ },
+ "package-drone": {
+ "buildDate": "Aug 29, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ctron",
+ "email": "ctron@dentrassi.de",
+ "name": "Jens Reimann"
+ },
+ {
+ "developerId": "nfalco79",
+ "email": "nfalco79@hotmail.com",
+ "name": "Nikolas Falco"
+ }
+ ],
+ "excerpt": "This plugin allow one to deploy build artifacts to a <a href='http://packagedrone.org'>Package Drone</a> drone instance of version 0.11.5\\+",
+ "gav": "de.dentrassi.pm.jenkins:package-drone:0.3.3",
+ "labels": [
+ "post-build",
+ "upload"
+ ],
+ "name": "package-drone",
+ "previousTimestamp": "2016-06-21T09:34:02.00Z",
+ "previousVersion": "0.3.1",
+ "releaseTimestamp": "2016-08-29T14:06:42.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "83V5CmF6mIP4X5uIlWLkmzH5nX0=",
+ "title": "Package Drone Deployer",
+ "url": "http://updates.jenkins-ci.org/download/plugins/package-drone/0.3.3/package-drone.hpi",
+ "version": "0.3.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Package+Drone+Plugin"
+ },
+ "package-parameter": {
+ "buildDate": "Nov 03, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "d3clan",
+ "email": "declan@declans.net",
+ "name": "Declan Newman"
+ },
+ {
+ "developerId": "toff63",
+ "email": "toff63@gmail.com",
+ "name": "Christophe Marchal"
+ }
+ ],
+ "excerpt": "A rather specific use-case. A Jenkins plugin that will look up a AWS S3 hosted Yum or Apt repo's database, and glean any information needed to populate a Jenkins parameter dropdown. The primary driver for me to develop this was the ability to look up the packages in the repo in order to call MCollective with a package that we know exists.",
+ "gav": "com.viviquity.jenkins:package-parameter:1.7",
+ "labels": [],
+ "name": "package-parameter",
+ "previousTimestamp": "2015-05-11T22:35:10.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2015-11-03T22:37:30.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "w1u1T3DvB6+jWa6JTbld5/FgyOo=",
+ "title": "S3 package parameter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/package-parameter/1.7/package-parameter.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Package+Parameter+Plugin"
+ },
+ "packagecloud": {
+ "buildDate": "Apr 11, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.14"
+ }
+ ],
+ "developers": [
+ {
+ "email": "joe@packagecloud.io",
+ "name": "Joe Damato"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:packagecloud:1.5",
+ "labels": [
+ "post-build"
+ ],
+ "name": "packagecloud",
+ "previousTimestamp": "2016-01-08T11:17:04.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-04-11T17:27:36.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "e2RcMS3NE6DtgVO9cGZlQo6WL8Y=",
+ "title": "Packagecloud Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/packagecloud/1.5/packagecloud.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Packagecloud+Plugin"
+ },
+ "packer": {
+ "buildDate": "Apr 22, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jdamick",
+ "name": "Jeffrey Damick"
+ }
+ ],
+ "excerpt": "This plugin allows for a job to publish an image generated <a href='http://packer.io'>Packer</a>",
+ "gav": "biz.neustar.jenkins.plugins:packer:1.4",
+ "labels": [
+ "post-build",
+ "upload"
+ ],
+ "name": "packer",
+ "previousTimestamp": "2016-03-18T16:31:06.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-04-22T09:22:04.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "eqYHwj4TFLrw5X+GBX7O8knh7bw=",
+ "title": "Packer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/packer/1.4/packer.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Packer+Plugin"
+ },
+ "pagerduty": {
+ "buildDate": "Mar 30, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "alexanderlz",
+ "email": "alexander@leibzon.com",
+ "name": "Alexander Leibzon"
+ }
+ ],
+ "excerpt": "Allows users to trigger postbuild incidents via <a href='https://www.pagerduty.com/'>PagerDuty</a> ",
+ "gav": "org.jenkins-ci.plugins:pagerduty:0.2.4",
+ "labels": [
+ "notifier"
+ ],
+ "name": "pagerduty",
+ "previousTimestamp": "2016-03-09T17:31:40.00Z",
+ "previousVersion": "0.2.3",
+ "releaseTimestamp": "2016-03-30T16:43:00.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "q/l9d7rbCL4lfQsJdm9Yae2sOfw=",
+ "title": "PagerDuty Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pagerduty/0.2.4/pagerduty.hpi",
+ "version": "0.2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PagerDuty+Plugin"
+ },
+ "pam-auth": {
+ "buildDate": "Jun 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "recena"
+ }
+ ],
+ "excerpt": "Adds Unix Pluggable Authentication Module (PAM) support to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:pam-auth:1.3",
+ "labels": [
+ "security"
+ ],
+ "name": "pam-auth",
+ "previousTimestamp": "2014-08-12T12:15:30.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-06-17T12:48:48.00Z",
+ "requiredCore": "1.566",
+ "scm": "github.com",
+ "sha1": "rokcFkt9Vzt/wVwMo7CbsoIhGW4=",
+ "title": "PAM Authentication plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pam-auth/1.3/pam-auth.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PAM+Authentication+Plugin"
+ },
+ "parallel-test-executor": {
+ "buildDate": "Jul 29, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": false,
+ "version": "2.18"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "This plugin adds a tool that lets you easily execute tests in parallel.",
+ "gav": "org.jenkins-ci.plugins:parallel-test-executor:1.9",
+ "labels": [
+ "test",
+ "cluster"
+ ],
+ "name": "parallel-test-executor",
+ "previousTimestamp": "2016-02-03T15:42:46.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2016-07-29T11:12:00.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "Ly5X3OV6VqVXF8G/22M6vHipBRQ=",
+ "title": "Parallel Test Executor Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/parallel-test-executor/1.9/parallel-test-executor.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parallel+Test+Executor+Plugin"
+ },
+ "parallels-desktop": {
+ "buildDate": "Oct 05, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "romankulikov",
+ "email": "roman.kulikov@gmail.com",
+ "name": "Roman Kulikov"
+ }
+ ],
+ "excerpt": "Allows Jenkins to start slaves on <a href='http://www.parallels.com/products/desktop/'>Parallels Desktop</a> virtual machines on demand and suspend them during idle time,for high-density usage of resources.",
+ "gav": "com.parallels:parallels-desktop:0.3",
+ "labels": [
+ "cluster"
+ ],
+ "name": "parallels-desktop",
+ "releaseTimestamp": "2015-10-05T17:35:36.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "IzIT0SqRzzF9skjx0EY5KTjeDNU=",
+ "title": "Parallels Desktop Cloud",
+ "url": "http://updates.jenkins-ci.org/download/plugins/parallels-desktop/0.3/parallels-desktop.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parallels+Desktop+Cloud+Plugin"
+ },
+ "parameter-pool": {
+ "buildDate": "Oct 23, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "damienbiggs",
+ "email": "damien.biggs@gmail.com",
+ "name": "Damien Biggs"
+ }
+ ],
+ "excerpt": "Allows use of a unique parameter value per concurrent build",
+ "gav": "org.jenkins-ci.plugins:parameter-pool:1.0.2",
+ "labels": [
+ "scm"
+ ],
+ "name": "parameter-pool",
+ "previousTimestamp": "2015-10-22T17:15:32.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2015-10-23T11:40:26.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "czfJbIs12s7UHeBghznK7Q07AiA=",
+ "title": "Parameter Pool Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/parameter-pool/1.0.2/parameter-pool.hpi",
+ "version": "1.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parameter+Pool+Plugin"
+ },
+ "parameter-separator": {
+ "buildDate": "Jan 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olhado",
+ "email": "code@mikec.123mail.org",
+ "name": "Mike Chmielewski"
+ }
+ ],
+ "excerpt": "This is a dead simple parameter plugin for Jenkins CI that allows one to clearly differentiate sets of parameters on a jenkins build page. This can be useful for builds with lots of parameters (builds that dynamically build different items pased on the job parameters set at build time, for instance).",
+ "gav": "org.jenkins-ci.plugins:parameter-separator:1.0",
+ "labels": [
+ "parameter",
+ "ui"
+ ],
+ "name": "parameter-separator",
+ "previousTimestamp": "2014-08-08T14:06:44.00Z",
+ "previousVersion": "0.8",
+ "releaseTimestamp": "2016-01-20T21:34:16.00Z",
+ "requiredCore": "1.532.2",
+ "scm": "github.com",
+ "sha1": "I398GPhuFedOc+McZ8Oi/FrdfMI=",
+ "title": "Parameter Separator Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/parameter-separator/1.0/parameter-separator.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parameter+Separator+Plugin"
+ },
+ "parameterized-scheduler": {
+ "buildDate": "Nov 19, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "batmat",
+ "email": "batmat@batmat.net",
+ "name": "Baptiste Mathus"
+ }
+ ],
+ "excerpt": "Lets you define many cron-like formatted entries, but with additional parameters for each definition. ",
+ "gav": "org.jenkins-ci.plugins:parameterized-scheduler:0.2",
+ "labels": [],
+ "name": "parameterized-scheduler",
+ "releaseTimestamp": "2015-11-19T10:01:08.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "iwiJGnzLiQLmRbdC06OHXrp09LE=",
+ "title": "Parameterized Scheduler",
+ "url": "http://updates.jenkins-ci.org/download/plugins/parameterized-scheduler/0.2/parameterized-scheduler.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Scheduler+Plugin"
+ },
+ "parameterized-trigger": {
+ "buildDate": "Jul 26, 2016",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": true,
+ "version": "2.5.7"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ },
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.25"
+ },
+ {
+ "name": "conditional-buildstep",
+ "optional": false,
+ "version": "1.3.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "huybrechts",
+ "name": "Tom Huybrechts"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin lets you trigger new builds when your build has completed, with various ways of specifying parameters for the new build.",
+ "gav": "org.jenkins-ci.plugins:parameterized-trigger:2.32",
+ "labels": [],
+ "name": "parameterized-trigger",
+ "previousTimestamp": "2016-06-16T18:03:24.00Z",
+ "previousVersion": "2.31",
+ "releaseTimestamp": "2016-07-26T14:46:42.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "xbBwL/iVO16T7UcU/55iDyh6JYI=",
+ "title": "Jenkins Parameterized Trigger plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/parameterized-trigger/2.32/parameterized-trigger.hpi",
+ "version": "2.32",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Trigger+Plugin"
+ },
+ "parasoft-findings": {
+ "buildDate": "Jul 19, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.77"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "xunit",
+ "optional": true,
+ "version": "1.102"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jacekmarzecparasoft",
+ "email": "jacek.marzec@parasoft.com",
+ "name": "Jacek Marzec"
+ }
+ ],
+ "excerpt": "Add a post-analysis step to collect findings from Parasoft Analyzers 10.x and visualize them as warnings in Jenkins. ",
+ "gav": "com.parasoft:parasoft-findings:10.2.3.1",
+ "labels": [
+ "report",
+ "maven"
+ ],
+ "name": "parasoft-findings",
+ "previousTimestamp": "2016-07-18T15:10:26.00Z",
+ "previousVersion": "10.2.3",
+ "releaseTimestamp": "2016-07-19T12:02:46.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "2LCISbd54l5ecOweBcLqfdSsS/0=",
+ "title": "Parasoft Findings",
+ "url": "http://updates.jenkins-ci.org/download/plugins/parasoft-findings/10.2.3.1/parasoft-findings.hpi",
+ "version": "10.2.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parasoft+Findings+Plugin"
+ },
+ "patch-parameter": {
+ "buildDate": "Jul 08, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin adds a new parameter type to a parameterized build, where the user can optionally submit a patch file.",
+ "gav": "org.jenkins-ci.plugins:patch-parameter:1.2",
+ "labels": [],
+ "name": "patch-parameter",
+ "previousTimestamp": "2013-08-16T14:22:54.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-07-08T09:02:22.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "2EL0xcTtNM2wmO1cXa8Uj+tLNCE=",
+ "title": "Patch Parameter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/patch-parameter/1.2/patch-parameter.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Patch+Parameter+Plugin"
+ },
+ "pathignore": {
+ "buildDate": "Nov 17, 2011",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jtjerno"
+ }
+ ],
+ "excerpt": "This plugin allows SCM-triggered jobs to ignore build requests if only certain paths have changed, or to build if and only if certain paths are changed.",
+ "gav": "org.jenkins-ci.ruby-plugins:pathignore:0.6",
+ "labels": [
+ "scm-related",
+ "buildwrapper"
+ ],
+ "name": "pathignore",
+ "previousTimestamp": "2011-11-14T15:24:52.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2011-11-17T22:22:06.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "7UG0Wxxa4QuKfSq5DVHlZFs+q/g=",
+ "title": "Pathignore Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pathignore/0.6/pathignore.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pathignore+Plugin"
+ },
+ "pegdown-formatter": {
+ "buildDate": "Apr 09, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Format descriptions using Markdown syntax. Use simple wiki-like markup instead of HTML. ",
+ "gav": "org.jenkins-ci.plugins:pegdown-formatter:1.3",
+ "labels": [
+ "ui"
+ ],
+ "name": "pegdown-formatter",
+ "previousTimestamp": "2011-08-04T21:41:10.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-04-09T21:20:14.00Z",
+ "requiredCore": "1.396",
+ "scm": "github.com",
+ "sha1": "VPm/aCS7FsNgr0KAu1QeijD7B5U=",
+ "title": "PegDown Formatter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pegdown-formatter/1.3/pegdown-formatter.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PegDown+Formatter+Plugin"
+ },
+ "pending-changes": {
+ "buildDate": "Feb 25, 2013",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.26"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "avogler",
+ "name": "Andreas Vogler"
+ }
+ ],
+ "excerpt": "A plugin to detect changes not part of the most recent build",
+ "gav": "org.jenkins-ci.plugins:pending-changes:0.3.0",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "pending-changes",
+ "previousTimestamp": "2013-01-29T14:19:38.00Z",
+ "previousVersion": "0.2.1",
+ "releaseTimestamp": "2013-02-25T16:44:44.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "0BKreTt92zW7Dfsh5IDw2YNWn+8=",
+ "title": "Pending Changes plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pending-changes/0.3.0/pending-changes.hpi",
+ "version": "0.3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pending+Changes+Plugin"
+ },
+ "people-redirector": {
+ "buildDate": "May 11, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "m2spring",
+ "email": "mspring@cisco.com",
+ "name": "Max Spring"
+ }
+ ],
+ "excerpt": "Allows you to integrate with an external user management system.",
+ "gav": "com.cisco.step.jenkins.plugins:people-redirector:1.3",
+ "labels": [
+ "external"
+ ],
+ "name": "people-redirector",
+ "previousTimestamp": "2011-10-12T14:36:08.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-05-11T17:17:20.00Z",
+ "requiredCore": "1.415",
+ "scm": "github.com",
+ "sha1": "+UdYkY/5biwQcPFJeGaPDoRFYHE=",
+ "title": "People Redirector Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/people-redirector/1.3/people-redirector.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/People+Redirector+Plugin"
+ },
+ "percentage-du-node-column": {
+ "buildDate": "Sep 26, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "v1v",
+ "email": "VictorMartinezRubio@gmail.com",
+ "name": "Victor Martinez"
+ }
+ ],
+ "excerpt": "&amp;nbsp; This plugin just shows the percentage of disk space usage column on &quot;Manage Nodes&quot; page.&amp;nbsp; ",
+ "gav": "org.jenkins-ci.plugins:percentage-du-node-column:0.1.0",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "percentage-du-node-column",
+ "releaseTimestamp": "2015-09-26T21:05:10.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "GoGDw2Vz7DsCDA8O1oY1+upUkoA=",
+ "title": "Percentage Disk Space Node Column plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/percentage-du-node-column/0.1.0/percentage-du-node-column.hpi",
+ "version": "0.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Percentage+Disk+Space+Node+Column+Plugin"
+ },
+ "perfectomobile": {
+ "buildDate": "Jun 07, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "perfectomobile",
+ "email": "jenkins.admin@perfectomobile.com",
+ "name": "Perfecto Mobile"
+ }
+ ],
+ "excerpt": "The MobileCloud for Jenkins plugin enables&amp;nbsp; mobile apps to automatically upload from within the Jenkins build &ldquo;job&rdquo; to the MobileCloud Platform, where the app is installed on real mobile devices. It then launches a pre-defined Perfecto Mobile script and generates a detailed report, allowing developers to get early warnings of bugs and correct them prior to the QA stage. By using the MobileCloud Jenkins plugin, organizations can streamline the release cycle by delivering more mature and robust mobile apps to QA for a full mobile application test cycle (functional, performance, UI&amp;nbsp; testing). ",
+ "gav": "org.jenkins-ci.plugins:perfectomobile:2.62.0.3",
+ "labels": [
+ "external",
+ "ios",
+ "android"
+ ],
+ "name": "perfectomobile",
+ "previousTimestamp": "2015-07-07T09:15:30.00Z",
+ "previousVersion": "2.41.0.1",
+ "releaseTimestamp": "2016-06-07T16:15:38.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "perfectomobile.git.beanstalkapp.com",
+ "sha1": "/YeZyL22k7aswYQPIkuJUga92ms=",
+ "title": "Perfecto Mobile Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/perfectomobile/2.62.0.3/perfectomobile.hpi",
+ "version": "2.62.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MobileCloud+for+Jenkins+Plugin"
+ },
+ "perforce": {
+ "buildDate": "Feb 11, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "javadude",
+ "email": "carl.quinn@gmail.com",
+ "name": "Carl Quinn"
+ },
+ {
+ "developerId": "rpetti",
+ "email": "rob.petti@gmail.com",
+ "name": "Rob Petti"
+ },
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o dot v dot nenashev at gmail dot com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with <a href='http://perforce.com'>Perforce</a> SCM Repositories. ",
+ "gav": "org.jvnet.hudson.plugins:perforce:1.3.36",
+ "labels": [
+ "scm"
+ ],
+ "name": "perforce",
+ "previousTimestamp": "2015-06-05T11:07:00.00Z",
+ "previousVersion": "1.3.35",
+ "releaseTimestamp": "2016-02-11T22:15:58.00Z",
+ "requiredCore": "1.346",
+ "scm": "github.com",
+ "sha1": "xc8SwF7w5TnsUBYbi6MA+psjz+Q=",
+ "title": "Perforce Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/perforce/1.3.36/perforce.hpi",
+ "version": "1.3.36",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Perforce+Plugin"
+ },
+ "performance": {
+ "buildDate": "Jul 07, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "manolo",
+ "email": "manolo@apache.org",
+ "name": "Manuel Carrasco Monino"
+ }
+ ],
+ "excerpt": "This plugin allows you to capture reports from <a href='http://jakarta.apache.org/jmeter/'>JMeter</a> and <a href='http://www.junit.org/'>JUnit</a> . Jenkins will generate graphic charts with the trend report of performance and robustness. It includes the feature of setting the final build status as good, unstable or failed, based on the reported error percentage. ",
+ "gav": "org.jenkins-ci.plugins:performance:1.14",
+ "labels": [
+ "report"
+ ],
+ "name": "performance",
+ "previousTimestamp": "2015-02-18T11:21:24.00Z",
+ "previousVersion": "1.13",
+ "releaseTimestamp": "2016-07-07T00:56:22.00Z",
+ "requiredCore": "1.576",
+ "scm": "github.com",
+ "sha1": "jtOqC2pvoQ/HPf1qhdQM3gy3olo=",
+ "title": "Performance plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/performance/1.14/performance.hpi",
+ "version": "1.14",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Performance+Plugin"
+ },
+ "performance-signature-dynatrace": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "junit",
+ "optional": true,
+ "version": "1.2-beta-4"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.0"
+ },
+ {
+ "name": "performance-signature-ui",
+ "optional": false,
+ "version": "2.3.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rpionke",
+ "email": "raphael.pionke@t-systems.com",
+ "name": "Raphael Pionke"
+ }
+ ],
+ "excerpt": "The Performance Signature Plugin collects performance values during a build and evaluates and compares the result with previous builds and non-functional requirements. Several software tests can be run and evaluated automatically, so that the most important key performance indicators (KPI) can be summarized and be available for all project participants very quickly.",
+ "gav": "de.tsystems.mms.apm:performance-signature-dynatrace:2.3.0",
+ "labels": [
+ "builder",
+ "report",
+ "post-build"
+ ],
+ "name": "performance-signature-dynatrace",
+ "previousTimestamp": "2016-09-02T10:02:46.00Z",
+ "previousVersion": "2.2.3",
+ "releaseTimestamp": "2016-09-23T15:01:48.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "ldiRRbI53k20ZZ6AcWLOVZCNshs=",
+ "title": "Performance Signature with Dynatrace",
+ "url": "http://updates.jenkins-ci.org/download/plugins/performance-signature-dynatrace/2.3.0/performance-signature-dynatrace.hpi",
+ "version": "2.3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Performance+Signature+with+Dynatrace+Plugin"
+ },
+ "performance-signature-ui": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2-beta-4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rpionke",
+ "email": "raphael.pionke@t-systems.com",
+ "name": "Raphael Pionke"
+ }
+ ],
+ "excerpt": "The Performance Signature Plugin collects performance values during a build and evaluates and compares the result with previous builds and non-functional requirements. Several software tests can be run and evaluated automatically, so that the most important key performance indicators (KPI) can be summarized and be available for all project participants very quickly.",
+ "gav": "de.tsystems.mms.apm:performance-signature-ui:2.3.0",
+ "labels": [
+ "builder",
+ "report",
+ "post-build"
+ ],
+ "name": "performance-signature-ui",
+ "previousTimestamp": "2016-09-02T10:01:40.00Z",
+ "previousVersion": "2.2.3",
+ "releaseTimestamp": "2016-09-23T15:00:32.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "BIVqjl17IANBSLZWN8rblsEHnI0=",
+ "title": "Performance Signature: UI",
+ "url": "http://updates.jenkins-ci.org/download/plugins/performance-signature-ui/2.3.0/performance-signature-ui.hpi",
+ "version": "2.3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Performance+Signature+with+Dynatrace+Plugin"
+ },
+ "performance-signature-viewer": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.0"
+ },
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "performance-signature-ui",
+ "optional": false,
+ "version": "2.3.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rpionke",
+ "email": "raphael.pionke@t-systems.com",
+ "name": "Raphael Pionke"
+ }
+ ],
+ "excerpt": "The Performance Signature Plugin collects performance values during a build and evaluates and compares the result with previous builds and non-functional requirements. Several software tests can be run and evaluated automatically, so that the most important key performance indicators (KPI) can be summarized and be available for all project participants very quickly.",
+ "gav": "de.tsystems.mms.apm:performance-signature-viewer:2.3.0",
+ "labels": [
+ "builder",
+ "report",
+ "post-build"
+ ],
+ "name": "performance-signature-viewer",
+ "previousTimestamp": "2016-09-02T10:03:28.00Z",
+ "previousVersion": "2.2.3",
+ "releaseTimestamp": "2016-09-23T15:02:42.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "bxZ7whwBm5mauEXkrS1bLZAjrpo=",
+ "title": "Performance Signature: Viewer",
+ "url": "http://updates.jenkins-ci.org/download/plugins/performance-signature-viewer/2.3.0/performance-signature-viewer.hpi",
+ "version": "2.3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Performance+Signature+with+Dynatrace+Plugin"
+ },
+ "perfpublisher": {
+ "buildDate": "May 31, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "gbossert@gmail.com",
+ "name": "Georges Bossert"
+ },
+ {
+ "email": "dmakarv@gmail.com",
+ "name": "Dmitri Makarov"
+ },
+ {
+ "developerId": "martinbaar",
+ "email": "martin.baar@gmail.com",
+ "name": "Martin Baar"
+ }
+ ],
+ "excerpt": "This plugin generates global and trend reports for tests results analysis. Based on an open XML tests results format, the plugin parses the generated files and publish statistics, reports and analysis on the current health of the project.",
+ "gav": "org.jenkins-ci.plugins:perfpublisher:8.04",
+ "labels": [
+ "report"
+ ],
+ "name": "perfpublisher",
+ "previousTimestamp": "2016-02-18T11:58:22.00Z",
+ "previousVersion": "8.03",
+ "releaseTimestamp": "2016-05-31T16:01:54.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "z/OQApYuu+SHZJYhYTVqcXr2HHQ=",
+ "title": "Jenkins Performance Publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/perfpublisher/8.04/perfpublisher.hpi",
+ "version": "8.04",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PerfPublisher+Plugin"
+ },
+ "periodic-reincarnation": {
+ "buildDate": "Jul 18, 2014",
+ "dependencies": [
+ {
+ "name": "jobConfigHistory",
+ "optional": true,
+ "version": "2.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "boev",
+ "email": "iordan.boev@gmail.com",
+ "name": "Yordan Boev"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to periodically restart failed jobs according to a number of conditions. Its main purpose is to fix infrastructure failures. ",
+ "gav": "org.jenkins-ci.plugins:periodic-reincarnation:1.9",
+ "labels": [
+ "trigger"
+ ],
+ "name": "periodic-reincarnation",
+ "previousTimestamp": "2014-02-03T15:25:28.00Z",
+ "previousVersion": "1.8.1",
+ "releaseTimestamp": "2014-07-18T08:37:48.00Z",
+ "requiredCore": "1.554.3",
+ "scm": "github.com",
+ "sha1": "PoSMBZQLyHAOmyfk09hmmgI4GzM=",
+ "title": "Periodic Reincarnation Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/periodic-reincarnation/1.9/periodic-reincarnation.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Periodic+Reincarnation+Plugin"
+ },
+ "periodicbackup": {
+ "buildDate": "Jan 04, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "tomasz.blaszczynski@gmail.com",
+ "name": "Tomasz Blaszczynski"
+ },
+ {
+ "email": "emanuelez@gmail.com",
+ "name": "Emanuele Zattin"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:periodicbackup:1.3",
+ "labels": [],
+ "name": "periodicbackup",
+ "previousTimestamp": "2013-01-04T09:37:26.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2013-01-04T09:40:36.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "sEkFAeJozgL/tGr5VTRVxGLnyOc=",
+ "title": "Periodic Backup",
+ "url": "http://updates.jenkins-ci.org/download/plugins/periodicbackup/1.3/periodicbackup.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PeriodicBackup+Plugin"
+ },
+ "permissive-script-security": {
+ "buildDate": "May 24, 2016",
+ "dependencies": [
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.14"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ogondza"
+ }
+ ],
+ "excerpt": "Turn on permissive mode of Script Security Plugin. Problematic signatures will be logged but access will not be rejected.",
+ "gav": "org.jenkins-ci.plugins:permissive-script-security:0.1",
+ "labels": [],
+ "name": "permissive-script-security",
+ "releaseTimestamp": "2016-05-24T13:33:44.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "mCiTihYfIWNBFcVFlpi801UBBrA=",
+ "title": "Permissive Script Security Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/permissive-script-security/0.1/permissive-script-security.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Permissive+Script+Security+Plugin"
+ },
+ "persistent-build-queue-plugin": {
+ "buildDate": "Jun 02, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin preserves the build queue across Jenkins restart.",
+ "gav": "org.jenkins-ci.plugins:persistent-build-queue-plugin:0.1.1",
+ "labels": [],
+ "name": "persistent-build-queue-plugin",
+ "previousTimestamp": "2011-06-02T10:27:12.00Z",
+ "previousVersion": "0.1.0",
+ "releaseTimestamp": "2011-06-02T10:32:58.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "Eaj0JyWLvxa45lO9oxpJ8y8aziQ=",
+ "title": "Persistent Build Queue Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/persistent-build-queue-plugin/0.1.1/persistent-build-queue-plugin.hpi",
+ "version": "0.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Persistent+Build+Queue+Plugin"
+ },
+ "persistent-parameter": {
+ "buildDate": "Feb 20, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "greg2001",
+ "email": "gregory@atcsim.de",
+ "name": "Gregory E. Moltchadski"
+ }
+ ],
+ "excerpt": "String, text, boolean and choice parameters with default values taken from the previous build (if any). ",
+ "gav": "org.jenkins-ci.plugins:persistent-parameter:1.1",
+ "labels": [
+ "parameter"
+ ],
+ "name": "persistent-parameter",
+ "previousTimestamp": "2014-10-24T15:43:04.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-02-20T11:55:16.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "8ZcI6SbgnonsoVgMAHHhyU7HfmA=",
+ "title": "Persistent Parameter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/persistent-parameter/1.1/persistent-parameter.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Persistent+Parameter+Plugin"
+ },
+ "persona": {
+ "buildDate": "Oct 02, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kohsuke@infradna.com",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "ssogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin lets you define custom personalities like <a href='ChuckNorris Plugin'>Chuck Norris</a> or <a href='BruceSchneier Plugin'>Bruce Schneier</a> just by preparing an XML file and a few image files.",
+ "gav": "org.jenkins-ci.plugins:persona:2.4",
+ "labels": [],
+ "name": "persona",
+ "previousTimestamp": "2013-05-12T17:52:30.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2013-10-02T18:37:54.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "rIKtB/hWXQgEpADifYg30gJx2VU=",
+ "title": "Jenkins Persona Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/persona/2.4/persona.hpi",
+ "version": "2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Persona+Plugin"
+ },
+ "phabricator-plugin": {
+ "buildDate": "Aug 09, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "junit",
+ "optional": true,
+ "version": "1.6"
+ },
+ {
+ "name": "cobertura",
+ "optional": true,
+ "version": "1.9.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ai",
+ "email": "sc@ndella.com",
+ "name": "Aiden Scandella"
+ }
+ ],
+ "excerpt": "Integrates with <a href='http://phabricator.org/'>Phabricator's</a> <a href='http://phacility.com/phabricator/differential/'>Differential</a> and <a href='https://secure.phabricator.com/book/phabricator/article/harbormaster/'>Harbormaster</a> apps",
+ "gav": "org.jenkins-ci.plugins:phabricator-plugin:1.9.7",
+ "labels": [
+ "post-build",
+ "buildwrapper"
+ ],
+ "name": "phabricator-plugin",
+ "previousTimestamp": "2016-07-17T01:36:32.00Z",
+ "previousVersion": "1.9.6",
+ "releaseTimestamp": "2016-08-09T12:11:58.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "4AO7YJy3MJGS85I46VymUfVd2Q8=",
+ "title": "Phabricator Differential Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/phabricator-plugin/1.9.7/phabricator-plugin.hpi",
+ "version": "1.9.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Phabricator+Differential+Plugin"
+ },
+ "phing": {
+ "buildDate": "Mar 25, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='http://phing.info/trac/'>Phing</a> to build PHP projects.",
+ "gav": "org.jenkins-ci.plugins:phing:0.13.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "phing",
+ "previousTimestamp": "2015-03-22T20:52:08.00Z",
+ "previousVersion": "0.13.2",
+ "releaseTimestamp": "2015-03-25T21:27:10.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "bbuXv1JO47UX3voAFlW8uVMo5eQ=",
+ "title": "Jenkins Phing plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/phing/0.13.3/phing.hpi",
+ "version": "0.13.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Phing+Plugin"
+ },
+ "php": {
+ "buildDate": "Oct 11, 2012",
+ "dependencies": [
+ {
+ "name": "violations",
+ "optional": false,
+ "version": "0.7.11"
+ },
+ {
+ "name": "jdepend",
+ "optional": false,
+ "version": "1.2.3"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.424"
+ },
+ {
+ "name": "checkstyle",
+ "optional": false,
+ "version": "3.32"
+ },
+ {
+ "name": "xunit",
+ "optional": false,
+ "version": "1.48"
+ },
+ {
+ "name": "pmd",
+ "optional": false,
+ "version": "3.33"
+ },
+ {
+ "name": "cloverphp",
+ "optional": false,
+ "version": "0.3.2"
+ },
+ {
+ "name": "dry",
+ "optional": false,
+ "version": "2.33"
+ },
+ {
+ "name": "htmlpublisher",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.48"
+ },
+ {
+ "name": "plot",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nicolas"
+ }
+ ],
+ "excerpt": "This plugin installs jenkins plugins suggested by [http://jenkins-php.org/]&amp;nbsp;for PHP developers ",
+ "gav": "org.jenkins-ci.plugins:php:1.0",
+ "labels": [],
+ "name": "php",
+ "releaseTimestamp": "2012-10-11T16:17:50.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "2K9otH75c+GEvMbJ/ulmrJmeLEA=",
+ "title": "PHP Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/php/1.0/php.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PHP+Plugin"
+ },
+ "php-builtin-web-server": {
+ "buildDate": "Aug 07, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "fengtan",
+ "name": "Fengtan"
+ }
+ ],
+ "excerpt": "A plugin to run a <a href='http://php.net/manual/en/features.commandline.webserver.php'>PHP built-in web server</a> for each build. This is useful if you need to run tests on a local website and less overkill than making Apache point at the workspace root. ",
+ "gav": "org.jenkins-ci.plugins:php-builtin-web-server:0.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "php-builtin-web-server",
+ "releaseTimestamp": "2015-08-07T18:43:34.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "VOw3zB2LdYv0KJJtvvhFiMc6Iys=",
+ "title": "PHP Built-in Web Server",
+ "url": "http://updates.jenkins-ci.org/download/plugins/php-builtin-web-server/0.1/php-builtin-web-server.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PHP+Built-in+Web+Server+Plugin"
+ },
+ "piketec-tpt": {
+ "buildDate": "Aug 10, 2016",
+ "dependencies": [
+ {
+ "name": "parameterized-trigger",
+ "optional": false,
+ "version": "2.32"
+ },
+ {
+ "name": "copy-to-slave",
+ "optional": false,
+ "version": "1.4.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "PikeTec",
+ "email": "joachim.kuhnert@piketec.com",
+ "name": "Joachim Kuhnert"
+ }
+ ],
+ "excerpt": "TPT is a testing and verification tool for embedded control systems. TPT can test MATLAB Simulink or dSpace TargetLink models, ETAS ASCET models, C-Code or test via MiL, SiL, PiL and HiL. The PikeTec TPT Plugin allows users to execute tests modeled in <a href='http://www.piketec.com/en/2/tpt.html'>TPT (Time Partition Testing)</a> via Jenkins. An xml file can be generated in JUnit format for the reporting of test results.",
+ "gav": "com.piketec.jenkins.plugins:piketec-tpt:7.5",
+ "labels": [
+ "external",
+ "builder"
+ ],
+ "name": "piketec-tpt",
+ "previousTimestamp": "2016-07-15T11:31:02.00Z",
+ "previousVersion": "7.4",
+ "releaseTimestamp": "2016-08-10T08:42:34.00Z",
+ "requiredCore": "1.625.1",
+ "scm": "github.com",
+ "sha1": "Hr9ZF03LKibChcqu7k6ECdcR0yY=",
+ "title": "PikeTec TPT Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/piketec-tpt/7.5/piketec-tpt.hpi",
+ "version": "7.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PikeTec+TPT+Plugin"
+ },
+ "pipeline-aggregator-view": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "paul8620",
+ "email": "paul8620@gmail.com",
+ "name": "Paul Horvath"
+ }
+ ],
+ "excerpt": "Allows the users to view the history of their pipelines with stage information (failed/In Progress/Passed) and the changes monitored) !AggregatedPipeline.png|border=1! ",
+ "gav": "com.paul8620.jenkins.plugins:pipeline-aggregator-view:1.1",
+ "labels": [
+ "ui"
+ ],
+ "name": "pipeline-aggregator-view",
+ "previousTimestamp": "2016-10-04T15:28:58.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-10-05T09:58:54.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "f5QZEY6Je/+MQlWTzWA9t1pDehI=",
+ "title": "Pipeline Aggregator",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-aggregator-view/1.1/pipeline-aggregator-view.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Aggregator+View"
+ },
+ "pipeline-build-step": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Adds the Pipeline step &lsquo;build&rsquo; to trigger builds of other jobs.",
+ "gav": "org.jenkins-ci.plugins:pipeline-build-step:2.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "pipeline-build-step",
+ "previousTimestamp": "2016-07-11T16:38:30.00Z",
+ "previousVersion": "2.2",
+ "releaseTimestamp": "2016-09-23T15:33:34.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "glNPOka5wG/4Q3R66MvzbpqkBik=",
+ "title": "Pipeline: Build Step",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-build-step/2.3/pipeline-build-step.hpi",
+ "version": "2.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Build+Step+Plugin"
+ },
+ "pipeline-classpath": {
+ "buildDate": "Aug 08, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "cprice404",
+ "email": "chris@puppet.com",
+ "name": "Chris Price"
+ }
+ ],
+ "excerpt": "Pipeline DSL step to add path to the groovy classpath",
+ "gav": "cprice404:pipeline-classpath:0.1.0",
+ "labels": [
+ "groovy-related"
+ ],
+ "name": "pipeline-classpath",
+ "releaseTimestamp": "2016-08-08T16:23:42.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "qlq08Ze+gKOEkH72ubDKG/zLRx4=",
+ "title": "Pipeline: Classpath Steps",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-classpath/0.1.0/pipeline-classpath.hpi",
+ "version": "0.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Classpath+Step+Plugin"
+ },
+ "pipeline-graph-analysis": {
+ "buildDate": "Sep 30, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "pipeline-stage-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "pipeline-input-step",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "svanoort"
+ }
+ ],
+ "excerpt": "Plugin for analyzing Jenkins pipeline (formerly workflow) runs by inspecting the directed acyclic graph of FlowNodes that comprises them. Intended for where dependencies prevent it from being including in the workflow api plugin.",
+ "gav": "org.jenkins-ci.plugins:pipeline-graph-analysis:1.2",
+ "labels": [
+ "pipeline-graph-analysis"
+ ],
+ "name": "pipeline-graph-analysis",
+ "previousTimestamp": "2016-08-30T11:53:30.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-09-30T13:03:26.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "MBTHzsu2958sX7NE93Q0zXsgKpo=",
+ "title": "Pipeline Graph Analysis Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-graph-analysis/1.2/pipeline-graph-analysis.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Graph+Analysis+Plugin"
+ },
+ "pipeline-input-step": {
+ "buildDate": "Aug 08, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Adds the Pipeline step &lsquo;input&rsquo; to wait for human input or approval.",
+ "gav": "org.jenkins-ci.plugins:pipeline-input-step:2.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "pipeline-input-step",
+ "previousTimestamp": "2016-04-05T20:56:54.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-08-08T16:41:30.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "2mzhzo/T31mELu7dz6muC7zKOes=",
+ "title": "Pipeline: Input Step",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-input-step/2.1/pipeline-input-step.hpi",
+ "version": "2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Input+Step+Plugin"
+ },
+ "pipeline-maven": {
+ "buildDate": "Aug 25, 2016",
+ "dependencies": [
+ {
+ "name": "config-file-provider",
+ "optional": false,
+ "version": "2.11"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "alvarolobato",
+ "email": "alobato@cloudbees.com",
+ "name": "Alvaro Lobato"
+ }
+ ],
+ "excerpt": "Provides maven integration with <a href='https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin'>Pipeline Plugin</a> by using the withMaven step, which configures a maven environment to use within a pipeline job by calling sh mvn or bat mvn. ",
+ "gav": "org.jenkins-ci.plugins:pipeline-maven:0.2",
+ "labels": [
+ "maven",
+ "pipeline"
+ ],
+ "name": "pipeline-maven",
+ "releaseTimestamp": "2016-08-25T12:19:42.00Z",
+ "requiredCore": "1.642.4",
+ "scm": "github.com",
+ "sha1": "FQZ1MduFoHwsJAvWScSHQ2PKN0s=",
+ "title": "Pipeline Maven Integration Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-maven/0.2/pipeline-maven.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Maven+Plugin"
+ },
+ "pipeline-milestone-step": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.4"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "amuniz"
+ }
+ ],
+ "excerpt": "Provides the milestone step in Pipeline scripts.",
+ "gav": "org.jenkins-ci.plugins:pipeline-milestone-step:1.1",
+ "labels": [],
+ "name": "pipeline-milestone-step",
+ "previousTimestamp": "2016-09-20T15:08:22.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-10-05T19:26:00.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "H8EULXw6R8dayOCsQuZrc7YOZdo=",
+ "title": "Pipeline: Milestone Step",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-milestone-step/1.1/pipeline-milestone-step.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Milestone+Step+Plugin"
+ },
+ "pipeline-model-definition": {
+ "buildDate": "Sep 08, 2016",
+ "dependencies": [
+ {
+ "name": "docker-workflow",
+ "optional": false,
+ "version": "1.8"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.15"
+ },
+ {
+ "name": "workflow-basic-steps",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "workflow-durable-task-step",
+ "optional": false,
+ "version": "2.4"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-multibranch",
+ "optional": false,
+ "version": "2.8"
+ },
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "pipeline-stage-step",
+ "optional": false,
+ "version": "2.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "abayer",
+ "name": "Andrew Bayer"
+ }
+ ],
+ "excerpt": "Declarative Jenkins Pipelines",
+ "gav": "org.jenkinsci.plugins:pipeline-model-definition:0.2",
+ "labels": [
+ "pipeline",
+ "misc"
+ ],
+ "name": "pipeline-model-definition",
+ "previousTimestamp": "2016-08-30T09:52:50.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2016-09-08T09:51:26.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "dhgMgfoEYH18G8XcYTNDNSD4V2w=",
+ "title": "Pipeline: Model Definition",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-model-definition/0.2/pipeline-model-definition.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Model+Definition+Plugin"
+ },
+ "pipeline-rest-api": {
+ "buildDate": "Sep 30, 2016",
+ "dependencies": [
+ {
+ "name": "pipeline-input-step",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "pipeline-graph-analysis",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "pipeline-stage-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.4"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "svanoort"
+ }
+ ],
+ "excerpt": "Provides a REST API to access pipeline and pipeline run data",
+ "gav": "org.jenkins-ci.plugins.pipeline-stage-view:pipeline-rest-api:2.1",
+ "labels": [
+ "ui"
+ ],
+ "name": "pipeline-rest-api",
+ "previousTimestamp": "2016-08-30T12:01:34.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-09-30T18:12:32.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "72mfpt3O0HcDz3ivJoY/1eJ6Rwk=",
+ "title": "Pipeline: REST API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-rest-api/2.1/pipeline-rest-api.hpi",
+ "version": "2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Stage+View+Plugin"
+ },
+ "pipeline-stage-step": {
+ "buildDate": "Aug 30, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "svanoort"
+ }
+ ],
+ "excerpt": "Adds the Pipeline step &lsquo;stage&rsquo; to delineate portions of a build.",
+ "gav": "org.jenkins-ci.plugins:pipeline-stage-step:2.2",
+ "labels": [
+ "pipeline",
+ "misc"
+ ],
+ "name": "pipeline-stage-step",
+ "previousTimestamp": "2016-05-03T14:54:04.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2016-08-30T11:48:22.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "SkaoVpfASMtf8iE23LiOWFJEAx4=",
+ "title": "Pipeline: Stage Step",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-stage-step/2.2/pipeline-stage-step.hpi",
+ "version": "2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Stage+Step+Plugin"
+ },
+ "pipeline-stage-view": {
+ "buildDate": "Sep 30, 2016",
+ "dependencies": [
+ {
+ "name": "handlebars",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "pipeline-rest-api",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "momentjs",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "jquery-detached",
+ "optional": false,
+ "version": "1.2.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "svanoort"
+ }
+ ],
+ "excerpt": "Provides a swimlane view of the different stages in a pipeline.",
+ "gav": "org.jenkins-ci.plugins.pipeline-stage-view:pipeline-stage-view:2.1",
+ "labels": [
+ "ui"
+ ],
+ "name": "pipeline-stage-view",
+ "previousTimestamp": "2016-08-30T12:02:40.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-09-30T18:13:32.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "yJcCeXRFL7Pe1wwGn5foYFg1u6U=",
+ "title": "Pipeline: Stage View Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-stage-view/2.1/pipeline-stage-view.hpi",
+ "version": "2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Stage+View+Plugin"
+ },
+ "pipeline-utility-steps": {
+ "buildDate": "Jun 21, 2016",
+ "dependencies": [
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.17"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rsandell",
+ "email": "rsandell@cloudbees.com",
+ "name": "Robert Sandell"
+ }
+ ],
+ "excerpt": "Small, miscellaneous, *cross platform* utility steps for <a href='Pipeline Plugin'>Pipeline Plugin</a> jobs",
+ "gav": "org.jenkins-ci.plugins:pipeline-utility-steps:1.1.6",
+ "labels": [
+ "builder",
+ "misc"
+ ],
+ "name": "pipeline-utility-steps",
+ "previousTimestamp": "2016-04-18T14:55:26.00Z",
+ "previousVersion": "1.1.5",
+ "releaseTimestamp": "2016-06-21T11:51:24.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "QbGhwIWqsnH2g0C/OrZf5zVHjDQ=",
+ "title": "Pipeline Utility Steps",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pipeline-utility-steps/1.1.6/pipeline-utility-steps.hpi",
+ "version": "1.1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Utility+Steps+Plugin"
+ },
+ "pitmutation": {
+ "buildDate": "Mar 01, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ekimber",
+ "email": "edward.kimber@gmail.com",
+ "name": "Edward Kimber"
+ }
+ ],
+ "excerpt": "This plugin displays pitmutation report statistics. ",
+ "gav": "org.jenkins-ci.plugins:pitmutation:1.0-13",
+ "labels": [
+ "report"
+ ],
+ "name": "pitmutation",
+ "previousTimestamp": "2013-09-18T22:53:24.00Z",
+ "previousVersion": "1.0-8",
+ "releaseTimestamp": "2014-03-01T00:11:00.00Z",
+ "requiredCore": "1.505",
+ "scm": "github.com",
+ "sha1": "SONTz2Ltwvpt/TZx2Yi53W7xKNU=",
+ "title": "Jenkins PIT Mutation Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pitmutation/1.0-13/pitmutation.hpi",
+ "version": "1.0-13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pitmutation"
+ },
+ "piwikanalytics": {
+ "buildDate": "May 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cfurmaniak",
+ "email": "christophe.furmaniak@gmail.com",
+ "name": "Christophe Furmaniak"
+ }
+ ],
+ "excerpt": "This plugin decorates all web pages with the Piwik Analytics tracking script. ",
+ "gav": "org.jenkins-ci.plugins:piwikanalytics:1.2.0",
+ "labels": [
+ "page-decorator"
+ ],
+ "name": "piwikanalytics",
+ "previousTimestamp": "2013-03-17T21:14:02.00Z",
+ "previousVersion": "1.1.0",
+ "releaseTimestamp": "2016-05-20T08:56:40.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "MrSQ7qc0UZXZIS+JDlQ7nllN8R8=",
+ "title": "Piwik Analytics Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/piwikanalytics/1.2.0/piwikanalytics.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Piwik+Analytics+Plugin"
+ },
+ "plain-credentials": {
+ "buildDate": "Sep 26, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenc"
+ }
+ ],
+ "excerpt": "Allows use of plain strings and files as credentials.",
+ "gav": "org.jenkins-ci.plugins:plain-credentials:1.3",
+ "labels": [],
+ "name": "plain-credentials",
+ "previousTimestamp": "2016-05-19T10:51:10.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-09-26T16:22:14.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "vaW9hBJgrZkDwf5tBr2+Rsiz84M=",
+ "title": "Plain Credentials Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/plain-credentials/1.3/plain-credentials.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Plain+Credentials+Plugin"
+ },
+ "plasticscm-plugin": {
+ "buildDate": "Jul 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ravelus",
+ "email": "lrodriguez@codicesoftware.com",
+ "name": "Luis Rodriguez"
+ },
+ {
+ "developerId": "mig42",
+ "email": "mgonzalez@codicesoftware.com",
+ "name": "Miguel Gonzalez"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='https://www.plasticscm.com'>Plastic SCM</a> to Jenkins. This way, users can automatise builds in Plastic SCM using Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:plasticscm-plugin:2.6",
+ "labels": [
+ "scm"
+ ],
+ "name": "plasticscm-plugin",
+ "previousTimestamp": "2016-04-25T11:36:26.00Z",
+ "previousVersion": "2.5",
+ "releaseTimestamp": "2016-07-26T12:19:38.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "13pqzHu46a6yCtjGHY573XhNhhM=",
+ "title": "PlasticSCM Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/plasticscm-plugin/2.6/plasticscm-plugin.hpi",
+ "version": "2.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PlasticSCM+Plugin"
+ },
+ "platformlabeler": {
+ "buildDate": "Dec 02, 2009",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "robertc"
+ }
+ ],
+ "excerpt": "This plugin adds node labels based on the OS and architecture of the node; they are updated each time the node connects.",
+ "gav": "org.jvnet.hudson.plugins:platformlabeler:1.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "platformlabeler",
+ "previousTimestamp": "2009-09-07T17:38:40.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2009-12-02T18:48:24.00Z",
+ "requiredCore": "1.323",
+ "scm": "svn.dev.java.net",
+ "sha1": "2Vms3n2RwOiV89sT3cBtgtiQbTM=",
+ "title": "Hudson platformlabeler plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/platformlabeler/1.1/platformlabeler.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PlatformLabeler+Plugin"
+ },
+ "plot": {
+ "buildDate": "Mar 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nidaley",
+ "name": "Nigel Daley"
+ },
+ {
+ "developerId": "ericbn",
+ "name": "Eric Nielsen"
+ }
+ ],
+ "excerpt": "This plugin provides generic plotting (or graphing) capabilities in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:plot:1.9",
+ "labels": [
+ "report",
+ "ui"
+ ],
+ "name": "plot",
+ "previousTimestamp": "2014-09-28T12:28:40.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2015-03-15T22:45:20.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "kQ/jj+z6ThwlGvlVhCS4RkShY5A=",
+ "title": "Plot plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/plot/1.9/plot.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Plot+Plugin"
+ },
+ "plugin-usage-plugin": {
+ "buildDate": "Jul 29, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "chrissy25",
+ "email": "chrissy25dev@gmail.com",
+ "name": "Christian Meyer"
+ }
+ ],
+ "excerpt": "This plugin gives you the possibility to analyze the usage of your installed plugins. ",
+ "gav": "org.jenkins-ci.plugins:plugin-usage-plugin:0.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "plugin-usage-plugin",
+ "previousTimestamp": "2014-07-11T23:47:28.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2014-07-29T22:11:02.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "dena62WaRelvigrkhPiyE/qAnF0=",
+ "title": "Plugin Usage - Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/plugin-usage-plugin/0.3/plugin-usage-plugin.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Plugin+Usage+Plugin+%28Community%29"
+ },
+ "pmd": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.77"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drulli",
+ "email": "ullrich.hafner@gmail.com",
+ "name": "Ulli Hafner"
+ }
+ ],
+ "excerpt": "This plugin generates the trend report for <a href='http://pmd.sourceforge.net/'>PMD</a>, an open source static code analysis program.&amp;nbsp; ",
+ "gav": "org.jvnet.hudson.plugins:pmd:3.45",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "pmd",
+ "previousTimestamp": "2016-02-27T23:56:04.00Z",
+ "previousVersion": "3.44",
+ "releaseTimestamp": "2016-06-01T14:42:18.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "DfvfFgZitbeXZUqI4agDxNNc+Sg=",
+ "title": "PMD Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pmd/3.45/pmd.hpi",
+ "version": "3.45",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PMD+Plugin"
+ },
+ "polarion": {
+ "buildDate": "Nov 03, 2011",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.0.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jwray",
+ "name": "Jonny Wray"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin integrates the <a href='http://www.polarion.com/products/svn/svn_webclient.php'>Polarion WebClient for SVN</a>, an open source, web based interface to Subversion.",
+ "gav": "org.jvnet.hudson.plugins:polarion:1.3",
+ "labels": [
+ "external"
+ ],
+ "name": "polarion",
+ "previousTimestamp": "2010-01-29T17:17:40.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2011-11-03T13:48:18.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "yqnoigUhQZdM/7CiGFtDJzekqOk=",
+ "title": "Polarion Webclient for SVN Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/polarion/1.3/polarion.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Polarion+Plugin"
+ },
+ "policycenter-gate-validator": {
+ "buildDate": "Aug 02, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mattloveparasoft",
+ "email": "matt.love@parasoft.com",
+ "name": "Matt Love"
+ },
+ {
+ "developerId": "sang_parasoft",
+ "email": "sang.seong@parasoft.com",
+ "name": "Sang Uk Seong"
+ }
+ ],
+ "excerpt": "The <a href='http://www.parasoft.com/'>Parasoft</a> Policy Center Gate Validator Plugin for Jenkins lets you add a build step to check a Police Center policy gate. This enables you to automatically stop a deployment if a policy gate is not successfully passed.",
+ "gav": "com.parasoft:policycenter-gate-validator:1.0.1",
+ "labels": [
+ "misc",
+ "builder"
+ ],
+ "name": "policycenter-gate-validator",
+ "previousTimestamp": "2016-08-01T11:50:48.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-08-02T15:57:50.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "PTnEDIRtiRXq3q9DnfP6XpHm3yI=",
+ "title": "Parasoft Policy Center Gate Check Validator",
+ "url": "http://updates.jenkins-ci.org/download/plugins/policycenter-gate-validator/1.0.1/policycenter-gate-validator.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PolicyCenter+Gate+Validator+Plugin"
+ },
+ "poll-mailbox-trigger-plugin": {
+ "buildDate": "Aug 05, 2016",
+ "compatibleSinceVersion": "1.424",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nickg",
+ "email": "nickgrealy@gmail.com",
+ "name": "Nick Grealy"
+ }
+ ],
+ "excerpt": "A Jenkins plugin, to poll an email inbox, and trigger jobs based on new emails. ",
+ "gav": "org.jenkins-ci.plugins:poll-mailbox-trigger-plugin:1.025",
+ "labels": [
+ "trigger"
+ ],
+ "name": "poll-mailbox-trigger-plugin",
+ "previousTimestamp": "2016-08-05T21:06:04.00Z",
+ "previousVersion": "1.024",
+ "releaseTimestamp": "2016-08-05T21:46:24.00Z",
+ "requiredCore": "2.7.1",
+ "scm": "github.com",
+ "sha1": "+tg6x3Bu7LuylmjERL0HD33Lgqs=",
+ "title": "Poll Mailbox Trigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/poll-mailbox-trigger-plugin/1.025/poll-mailbox-trigger-plugin.hpi",
+ "version": "1.025",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Poll+Mailbox+Trigger+Plugin"
+ },
+ "pollscm": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vlatombe",
+ "email": "vincent.latombe@gmail.com",
+ "name": "Vincent Latombe"
+ }
+ ],
+ "excerpt": "This plugin adds a Poll Now button to your job when Poll SCM option is enabled. ",
+ "gav": "org.jenkins-ci.plugins:pollscm:1.3",
+ "labels": [],
+ "name": "pollscm",
+ "previousTimestamp": "2013-01-15T11:13:42.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-06-01T16:11:52.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "LKfw5cNeccn6U8IFIlWNtcxp1dA=",
+ "title": "Jenkins Poll SCM plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pollscm/1.3/pollscm.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PollSCM+Plugin"
+ },
+ "pom2config": {
+ "buildDate": "Dec 11, 2013",
+ "dependencies": [
+ {
+ "name": "email-ext",
+ "optional": true,
+ "version": "2.25"
+ },
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.45"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "1.509.1"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "1.5.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kstutz",
+ "email": "kathi.stutz@1und1.de",
+ "name": "Kathi Stutz"
+ },
+ {
+ "developerId": "miklein",
+ "name": "Michael Klein"
+ }
+ ],
+ "excerpt": "Jenkins plugin which allows to transfer settings from a POM to a job configuration. \\\\ ",
+ "gav": "org.jenkins-ci.plugins:pom2config:1.2",
+ "labels": [
+ "misc",
+ "emailext"
+ ],
+ "name": "pom2config",
+ "releaseTimestamp": "2013-12-11T18:21:54.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "RCa8WBVCa3jtcGLUArTquSVvTog=",
+ "title": "Pom2Config Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pom2config/1.2/pom2config.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pom2Config+Plugin"
+ },
+ "port-allocator": {
+ "buildDate": "Jul 25, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ramapulavarthi",
+ "name": "Rama Pulavarthi"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "oldelvet",
+ "name": "Richard Mortimer"
+ },
+ {
+ "developerId": "pepov",
+ "name": "Peter Wilcsinszky"
+ }
+ ],
+ "excerpt": "Assigns unique TCP port addresses to jobs so that jobs executed concurrently won't collide with each other. Also performs clean ups to kill off daemons that are forked by jobs.",
+ "gav": "org.jenkins-ci.plugins:port-allocator:1.8",
+ "labels": [
+ "misc"
+ ],
+ "name": "port-allocator",
+ "previousTimestamp": "2013-07-24T23:15:28.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2013-07-25T23:43:34.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "y4QGw01FszL37qbQqr/0uw9cruY=",
+ "title": "Jenkins Port Allocator Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/port-allocator/1.8/port-allocator.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Port+Allocator+Plugin"
+ },
+ "post-completed-build-result": {
+ "buildDate": "Nov 07, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "anthonydahanne",
+ "email": "anthony.dahanne@gmail.com",
+ "name": "Anthony Dahanne"
+ }
+ ],
+ "excerpt": "Post to a given URL each build result url once completed. ",
+ "gav": "org.terracotta.jenkins.plugins:post-completed-build-result:1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "post-completed-build-result",
+ "previousTimestamp": "2013-11-07T17:01:16.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-11-07T17:36:50.00Z",
+ "requiredCore": "1.538",
+ "scm": "github.com",
+ "sha1": "ISip39RERDTpceNYM0+gJfcBQ5Y=",
+ "title": "Post Completed Build Result Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/post-completed-build-result/1.1/post-completed-build-result.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Post+Completed+Build+Result+Plugin"
+ },
+ "postbuild-task": {
+ "buildDate": "Jan 03, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "shinodkm",
+ "email": "shinodkm@gmail.com",
+ "name": "Shinod Mohandas"
+ },
+ {
+ "developerId": "castorpilot",
+ "email": "castorpilot@gmail.com",
+ "name": "Fred"
+ }
+ ],
+ "excerpt": "This plugin allows the user to execute a shell/batch task depending on the build log output. Java regular expression are allowed.",
+ "gav": "org.jvnet.hudson.plugins:postbuild-task:1.8",
+ "labels": [
+ "post-build",
+ "builder"
+ ],
+ "name": "postbuild-task",
+ "previousTimestamp": "2010-06-03T10:42:10.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2011-01-03T22:46:56.00Z",
+ "requiredCore": "1.357",
+ "scm": "svn.java.net",
+ "sha1": "BsfymNZesIFBvZtiIe01htpESHI=",
+ "title": "Hudson Post build task",
+ "url": "http://updates.jenkins-ci.org/download/plugins/postbuild-task/1.8/postbuild-task.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Post+build+task"
+ },
+ "postbuildscript": {
+ "buildDate": "Jan 06, 2015",
+ "dependencies": [
+ {
+ "name": "ivy",
+ "optional": true,
+ "version": "1.19"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.501"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "PostBuildScript makes it possible to execute a set of scripts at the end of the build. ",
+ "gav": "org.jenkins-ci.plugins:postbuildscript:0.17",
+ "labels": [
+ "post-build"
+ ],
+ "name": "postbuildscript",
+ "previousTimestamp": "2013-11-07T00:24:44.00Z",
+ "previousVersion": "0.16",
+ "releaseTimestamp": "2015-01-06T22:33:08.00Z",
+ "requiredCore": "1.501",
+ "scm": "github.com",
+ "sha1": "pSXbjkzF75EMHpXoRJpV2MnBdAA=",
+ "title": "Jenkins Post-Build Script Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/postbuildscript/0.17/postbuildscript.hpi",
+ "version": "0.17",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PostBuildScript+Plugin"
+ },
+ "powershell": {
+ "buildDate": "Sep 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "damienfinck",
+ "email": "damien.finck67+jenkins@gmail.com",
+ "name": "Damien Finck"
+ }
+ ],
+ "excerpt": "Integrates with Windows PowerShell",
+ "gav": "org.jenkins-ci.plugins:powershell:1.3",
+ "labels": [
+ "builder",
+ "dotnet"
+ ],
+ "name": "powershell",
+ "previousTimestamp": "2009-08-05T18:56:08.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-09-18T11:42:06.00Z",
+ "requiredCore": "1.450",
+ "scm": "github.com",
+ "sha1": "0U8ZSvrNGrnfUJIyYGBrNlBvYaI=",
+ "title": "Jenkins PowerShell plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/powershell/1.3/powershell.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PowerShell+Plugin"
+ },
+ "pragprog": {
+ "buildDate": "Jun 10, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "torsten",
+ "name": "Torsten Ehrhorn"
+ }
+ ],
+ "excerpt": "This plugin displays random chosen tips extracted from the book <a href='http://pragprog.com/the-pragmatic-programmer/'>The Pragmatic Programmer: From Journeyman to Master</a> by Andrew Hunt and David Thomas on the job page and each build page.",
+ "gav": "org.jenkins-ci.plugins:pragprog:2.0.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "pragprog",
+ "previousTimestamp": "2016-05-13T22:19:46.00Z",
+ "previousVersion": "1.0.5",
+ "releaseTimestamp": "2016-06-10T11:53:40.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "bitbucket.org",
+ "sha1": "kgC2Mb/R4l/aqC3Oy+IudEdQjQc=",
+ "title": "Pragprog Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pragprog/2.0.0/pragprog.hpi",
+ "version": "2.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pragprog+Plugin"
+ },
+ "preSCMbuildstep": {
+ "buildDate": "Sep 30, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cjo9900",
+ "name": "Chris Johnson"
+ }
+ ],
+ "excerpt": "This plugin allows build step to run before SCM checkouts ",
+ "gav": "org.jenkins-ci.plugins:preSCMbuildstep:0.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "preSCMbuildstep",
+ "previousTimestamp": "2012-02-19T18:29:22.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2014-09-30T00:00:18.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "/Q32EXi8VtXSNkVAsSFqv3djnxA=",
+ "title": "Pre SCM BuildStep Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/preSCMbuildstep/0.3/preSCMbuildstep.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/pre-scm-buildstep"
+ },
+ "prereq-buildstep": {
+ "buildDate": "Apr 01, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lynggaard",
+ "email": "henrik@hlyh.dk",
+ "name": "Henrik Lynggaard"
+ }
+ ],
+ "excerpt": "The Prerequisite build step plug in allows you to verify the state of other jobs and fail the build if needed.",
+ "gav": "org.jvnet.hudson.plugins:prereq-buildstep:1.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "prereq-buildstep",
+ "releaseTimestamp": "2011-04-01T15:37:06.00Z",
+ "requiredCore": "1.392",
+ "scm": "bitbucket.org",
+ "sha1": "lNPC2+55H0ogLNLYeqHjwKHJ2e4=",
+ "title": "Prerequisite build step plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/prereq-buildstep/1.1/prereq-buildstep.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Prerequisite+build+step+plugin"
+ },
+ "pretested-integration": {
+ "buildDate": "Jun 09, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "git-client",
+ "optional": false,
+ "version": "1.19.1"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.37"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.3"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "email": "josra@praqma.net",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "The Pretested Integration Plugin offers a branchy approach to pretested integration (also known as pre-tested commits), which upholds the invariant; that for a specific branch, known as the integration branch, all commits have been verified. ",
+ "gav": "org.jenkins-ci.plugins:pretested-integration:2.4.1",
+ "labels": [
+ "scm-related",
+ "post-build",
+ "buildwrapper"
+ ],
+ "name": "pretested-integration",
+ "previousTimestamp": "2016-01-05T11:12:56.00Z",
+ "previousVersion": "2.4.0",
+ "releaseTimestamp": "2016-06-09T09:58:28.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "n8w0vGTfOGn+iTLzVEl+cr/kZB0=",
+ "title": "Pretested Integration Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pretested-integration/2.4.1/pretested-integration.hpi",
+ "version": "2.4.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pretested+Integration+Plugin"
+ },
+ "proc-cleaner-plugin": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vjuranek"
+ }
+ ],
+ "excerpt": "Eliminate running processes before or after build.",
+ "gav": "org.jenkins-ci.plugins:proc-cleaner-plugin:1.5",
+ "labels": [],
+ "name": "proc-cleaner-plugin",
+ "previousTimestamp": "2016-09-02T11:51:38.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-09-27T15:57:20.00Z",
+ "requiredCore": "1.596.3",
+ "scm": "github.com",
+ "sha1": "QkALcvZShvFWPZBGNEl/Dy/rJnM=",
+ "title": "Process cleaner",
+ "url": "http://updates.jenkins-ci.org/download/plugins/proc-cleaner-plugin/1.5/proc-cleaner-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Process+Cleaner+Plugin"
+ },
+ "progress-bar-column-plugin": {
+ "buildDate": "Aug 08, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provide progress bar available for views.",
+ "gav": "org.jenkins-ci.plugins:progress-bar-column-plugin:1.0",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "progress-bar-column-plugin",
+ "releaseTimestamp": "2011-08-08T18:46:44.00Z",
+ "requiredCore": "1.421",
+ "scm": "github.com",
+ "sha1": "A6ddrtk90zctZbw5hRyEguLpY08=",
+ "title": "Progress Bar Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/progress-bar-column-plugin/1.0/progress-bar-column-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Progress+Bar+Column+Plugin"
+ },
+ "project-build-times": {
+ "buildDate": "May 19, 2014",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nrhine"
+ }
+ ],
+ "excerpt": "This plugin contributes a new view implementation that provides graphs to display cumulative and separate build times on the dashboard-view.",
+ "gav": "org.jenkins-ci.plugins:project-build-times:1.2.1",
+ "labels": [],
+ "name": "project-build-times",
+ "previousTimestamp": "2014-05-16T15:08:40.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2014-05-19T18:35:42.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "lpVfgIyCLlclVia+bzqfTmesYY8=",
+ "title": "Project Build Times",
+ "url": "http://updates.jenkins-ci.org/download/plugins/project-build-times/1.2.1/project-build-times.hpi",
+ "version": "1.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Project+Build+Times"
+ },
+ "project-description-setter": {
+ "buildDate": "Jun 12, 2012",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Set the project description from a file in the workspace (&agrave; la GitHub README.md) ",
+ "gav": "org.jenkins-ci.plugins:project-description-setter:1.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "project-description-setter",
+ "previousTimestamp": "2011-08-05T20:05:08.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2012-06-12T21:30:28.00Z",
+ "requiredCore": "1.399",
+ "scm": "github.com",
+ "sha1": "vtjFCsAOwGWxR3BjUxtY+i2daBQ=",
+ "title": "Project Description Setter",
+ "url": "http://updates.jenkins-ci.org/download/plugins/project-description-setter/1.1/project-description-setter.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Project+Description+Setter+Plugin"
+ },
+ "project-health-report": {
+ "buildDate": "May 23, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lynggaard",
+ "email": "henrik@hlyh.dk",
+ "name": "Henrik Lynggaard"
+ }
+ ],
+ "excerpt": "The project health report plugin&amp;nbsp; provides a report page on each project where the user can see how many builds failed/passed and which test cases most often break.",
+ "gav": "org.jvnet.hudson.plugins:project-health-report:1.2",
+ "labels": [],
+ "name": "project-health-report",
+ "previousTimestamp": "2011-04-18T14:37:26.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2011-05-23T18:50:10.00Z",
+ "requiredCore": "1.392",
+ "scm": "bitbucket.org",
+ "sha1": "za1n9Ck7O4G59psxfH9WF4ZSlU8=",
+ "title": "Project Health Report",
+ "url": "http://updates.jenkins-ci.org/download/plugins/project-health-report/1.2/project-health-report.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Project+Health+Report+Plugin"
+ },
+ "project-inheritance": {
+ "buildDate": "Jul 29, 2014",
+ "dependencies": [
+ {
+ "name": "rebuild",
+ "optional": true,
+ "version": "1.16"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mhschroe",
+ "email": "DL-SMT-WCM2-TC-Plugins@intel.com",
+ "name": "Martin Schroeder"
+ }
+ ],
+ "excerpt": "The purpose of this plugin is to bring true inheritance of properties between multiple job definitions to Jenkins. This allows you to define common properties only once and inherit them to multiple projects.",
+ "gav": "hudson.plugins:project-inheritance:1.5.3",
+ "labels": [],
+ "name": "project-inheritance",
+ "previousTimestamp": "2014-04-13T20:41:42.00Z",
+ "previousVersion": "1.5.1",
+ "releaseTimestamp": "2014-07-29T14:13:02.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "3MUVtLsQoC+PAccDFpDGSBt396g=",
+ "title": "inheritance-plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/project-inheritance/1.5.3/project-inheritance.hpi",
+ "version": "1.5.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/inheritance-plugin"
+ },
+ "project-stats-plugin": {
+ "buildDate": "Sep 22, 2012",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": false,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mambu",
+ "email": "marco.ambu+jenkins@gmail.com",
+ "name": "Marco Ambu"
+ }
+ ],
+ "excerpt": "This plugin provides new dashboard-view portlets and new columns for displaying project statistics for your Jenkins instance. ",
+ "gav": "org.jenkins-ci.plugins:project-stats-plugin:0.4",
+ "labels": [
+ "listview-column",
+ "ui"
+ ],
+ "name": "project-stats-plugin",
+ "previousTimestamp": "2011-09-25T11:13:00.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2012-09-22T13:18:04.00Z",
+ "requiredCore": "1.459",
+ "scm": "github.com",
+ "sha1": "mIkd2WtsZ/Qn11Pn/JPojLHd7As=",
+ "title": "Project statistics Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/project-stats-plugin/0.4/project-stats-plugin.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Project+Statistics+Plugin"
+ },
+ "prometheus": {
+ "buildDate": "Jun 14, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "1.8"
+ },
+ {
+ "name": "metrics",
+ "optional": false,
+ "version": "3.1.2.7"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "devguy",
+ "name": "Lars Sjostrom"
+ }
+ ],
+ "excerpt": "Exposes a <a href='https://prometheus.io/'>Prometheus</a> metrics endpoint.",
+ "gav": "org.jenkins-ci.plugins:prometheus:1.0.6",
+ "labels": [
+ "misc"
+ ],
+ "name": "prometheus",
+ "previousTimestamp": "2016-04-18T14:11:32.00Z",
+ "previousVersion": "1.0.5",
+ "releaseTimestamp": "2016-06-14T15:54:02.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "/lJwkZ7MEqFJVaecc2W2ULv6p4I=",
+ "title": "Prometheus metrics plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/prometheus/1.0.6/prometheus.hpi",
+ "version": "1.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Prometheus+Plugin"
+ },
+ "promoted-builds": {
+ "buildDate": "May 25, 2016",
+ "dependencies": [
+ {
+ "name": "rebuild",
+ "optional": true,
+ "version": "1.22"
+ },
+ {
+ "name": "job-dsl",
+ "optional": true,
+ "version": "1.44"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "project-inheritance",
+ "optional": true,
+ "version": "1.5.3"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.16"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "petehayes",
+ "name": "Peter Hayes"
+ },
+ {
+ "developerId": "oleg_nenashev",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "This plugin allows you to distinguish good builds from bad builds by introducing the notion of 'promotion'.",
+ "gav": "org.jenkins-ci.plugins:promoted-builds:2.27",
+ "labels": [
+ "misc",
+ "ui",
+ "builder"
+ ],
+ "name": "promoted-builds",
+ "previousTimestamp": "2016-05-09T13:15:36.00Z",
+ "previousVersion": "2.26",
+ "releaseTimestamp": "2016-05-25T14:01:24.00Z",
+ "requiredCore": "1.565",
+ "scm": "github.com",
+ "sha1": "ablq7pLC39NKjQGOiHG6BYq1aNU=",
+ "title": "Jenkins promoted builds plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/promoted-builds/2.27/promoted-builds.hpi",
+ "version": "2.27",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Plugin"
+ },
+ "promoted-builds-simple": {
+ "buildDate": "Mar 29, 2011",
+ "dependencies": [
+ {
+ "name": "copyartifact",
+ "optional": true,
+ "version": "1.14"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "1.398"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mindless",
+ "name": "Alan Harder"
+ }
+ ],
+ "excerpt": "Simpler version of <a href='https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Plugin'>Promoted Builds Plugin</a>, with only manual promotion of builds.",
+ "gav": "org.jenkins-ci.plugins:promoted-builds-simple:1.9",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "promoted-builds-simple",
+ "previousTimestamp": "2011-02-25T17:11:48.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2011-03-29T22:54:50.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "Q710UWrUUlaLRkSqOclH5RB9xN8=",
+ "title": "Promoted Builds (Simple)",
+ "url": "http://updates.jenkins-ci.org/download/plugins/promoted-builds-simple/1.9/promoted-builds-simple.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Simple+Plugin"
+ },
+ "protecode-sc": {
+ "buildDate": "Aug 12, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "alatalo",
+ "email": "alatalo@synopsys.com",
+ "name": "Ville Alatalo"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins builds to scan the resulting build artifacts with Synopsys Protecode SC static analysis tool. More information of Synopsys Protecode SC is available from http://www.synopsys.com/software/protecode/Pages/default.aspx ",
+ "gav": "com.synopsys:protecode-sc:0.10",
+ "labels": [
+ "report"
+ ],
+ "name": "protecode-sc",
+ "previousTimestamp": "2016-08-12T13:21:58.00Z",
+ "previousVersion": "0.9",
+ "releaseTimestamp": "2016-08-12T13:49:26.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "0of/DWBKR+9eypN/n0lXm2HjGpU=",
+ "title": "Protecode SC Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/protecode-sc/0.10/protecode-sc.hpi",
+ "version": "0.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Protecode+SC+Plugin"
+ },
+ "proxmox": {
+ "buildDate": "May 01, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "justnom",
+ "email": "harry.macey@gmail.com",
+ "name": "Harry Macey"
+ }
+ ],
+ "excerpt": "Use Proxmox virtual machines as slaves in Jenkins",
+ "gav": "org.jenkins-ci.plugins:proxmox:0.2.2",
+ "labels": [
+ "slaves",
+ "cluster"
+ ],
+ "name": "proxmox",
+ "previousTimestamp": "2013-09-11T14:24:50.00Z",
+ "previousVersion": "0.2.1",
+ "releaseTimestamp": "2016-05-01T19:07:36.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "SkqP3aW/xQDblmXijZpRki/DKHA=",
+ "title": "Jenkins Proxmox plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/proxmox/0.2.2/proxmox.hpi",
+ "version": "0.2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Proxmox+Plugin"
+ },
+ "prqa-plugin": {
+ "buildDate": "Sep 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "isanych",
+ "email": "igor_kostenko@programmingresearch.com",
+ "name": "Igor Kostenko"
+ }
+ ],
+ "excerpt": "A plugin for doing static code analysis using PRQA. ",
+ "gav": "com.programmingresearch:prqa-plugin:2.1.0",
+ "labels": [
+ "notifier",
+ "report"
+ ],
+ "name": "prqa-plugin",
+ "previousTimestamp": "2015-11-17T11:57:08.00Z",
+ "previousVersion": "2.0.12",
+ "releaseTimestamp": "2016-09-26T15:58:12.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "z4yAG/7ZgY+tZMO1LMNbX6g7G8g=",
+ "title": "PRQA plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/prqa-plugin/2.1.0/prqa-plugin.hpi",
+ "version": "2.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PRQA+Plugin"
+ },
+ "pry": {
+ "buildDate": "May 31, 2012",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin lets you remotely inspect/alter running Jenkins instance through <a href='http://pry.github.com/'>pry</a>. Think of it as the Ruby version of the Groovy shell console",
+ "gav": "org.jenkins-ci.plugins:pry:1.1",
+ "labels": [],
+ "name": "pry",
+ "previousTimestamp": "2012-05-10T06:43:40.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2012-05-31T09:23:00.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "13OpWLobyimk1qD6zwnhDHpglh8=",
+ "title": "Pry Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pry/1.1/pry.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pry+Plugin"
+ },
+ "publish-over-cifs": {
+ "buildDate": "Dec 29, 2013",
+ "compatibleSinceVersion": "0.2",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "slide_o_mix",
+ "email": "slide.o.mix@gmail.com",
+ "name": "slide"
+ },
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Send build artifacts to a windows share (CIFS/SMB/samba) ",
+ "gav": "org.jenkins-ci.plugins:publish-over-cifs:0.3",
+ "labels": [
+ "upload"
+ ],
+ "name": "publish-over-cifs",
+ "previousTimestamp": "2011-06-05T06:48:22.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2013-12-29T19:36:30.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "hur/7v0b0Jwk1ndM64fs+WW7dEM=",
+ "title": "Publish Over CIFS",
+ "url": "http://updates.jenkins-ci.org/download/plugins/publish-over-cifs/0.3/publish-over-cifs.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+CIFS+Plugin"
+ },
+ "publish-over-dropbox": {
+ "buildDate": "Nov 08, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rcgroot",
+ "email": "rcgroot@gmail.com",
+ "name": "René de Groot"
+ }
+ ],
+ "excerpt": "Allows users to directly publishes artifacts to their <a href='https://www.dropbox.com/'>Dropbox</a> folders without the need to run a sync client on their build servers.",
+ "gav": "org.jenkins-ci.plugins:publish-over-dropbox:1.0.5",
+ "labels": [
+ "upload"
+ ],
+ "name": "publish-over-dropbox",
+ "previousTimestamp": "2015-09-21T21:51:20.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2015-11-08T18:07:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "U+sjYroemASvc/kUr+3RenDvYVo=",
+ "title": "Publish Over Dropbox",
+ "url": "http://updates.jenkins-ci.org/download/plugins/publish-over-dropbox/1.0.5/publish-over-dropbox.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Publish+over+Dropbox+Plugin"
+ },
+ "publish-over-ftp": {
+ "buildDate": "Apr 15, 2016",
+ "compatibleSinceVersion": "0.2",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Publish files over FTP ",
+ "gav": "org.jenkins-ci.plugins:publish-over-ftp:1.12",
+ "labels": [
+ "upload"
+ ],
+ "name": "publish-over-ftp",
+ "previousTimestamp": "2014-05-07T22:55:48.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2016-04-15T04:31:28.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "lx37WykQ7WLJ8Qs62gptHzHTxy0=",
+ "title": "Publish Over FTP",
+ "url": "http://updates.jenkins-ci.org/download/plugins/publish-over-ftp/1.12/publish-over-ftp.hpi",
+ "version": "1.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+FTP+Plugin"
+ },
+ "publish-over-ssh": {
+ "buildDate": "Mar 24, 2016",
+ "compatibleSinceVersion": "0.3",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Publish files and/or execute commands over SSH (SCP using SFTP) ",
+ "gav": "org.jenkins-ci.plugins:publish-over-ssh:1.14",
+ "labels": [
+ "upload",
+ "builder"
+ ],
+ "name": "publish-over-ssh",
+ "previousTimestamp": "2015-05-19T20:51:46.00Z",
+ "previousVersion": "1.13",
+ "releaseTimestamp": "2016-03-24T22:48:26.00Z",
+ "requiredCore": "1.554.3",
+ "scm": "github.com",
+ "sha1": "XG249OojGRYTN6EVz77wjR2lydw=",
+ "title": "Publish Over SSH",
+ "url": "http://updates.jenkins-ci.org/download/plugins/publish-over-ssh/1.14/publish-over-ssh.hpi",
+ "version": "1.14",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+SSH+Plugin"
+ },
+ "puppet": {
+ "buildDate": "Dec 21, 2015",
+ "dependencies": [
+ {
+ "name": "deployment-notification",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "fbelzunc"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:puppet:1.1",
+ "labels": [],
+ "name": "puppet",
+ "previousTimestamp": "2014-02-17T07:21:14.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-12-21T13:20:36.00Z",
+ "requiredCore": "1.509.2",
+ "scm": "github.com",
+ "sha1": "aHbfnP2fFwGNffD+b5Hx+/lzpxA=",
+ "title": "Puppet Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/puppet/1.1/puppet.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Puppet+Plugin"
+ },
+ "purge-build-queue-plugin": {
+ "buildDate": "Aug 25, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provides an easy mechanism to purge the build queue.",
+ "gav": "org.jenkins-ci.plugins:purge-build-queue-plugin:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "purge-build-queue-plugin",
+ "releaseTimestamp": "2011-08-25T00:32:02.00Z",
+ "requiredCore": "1.425",
+ "scm": "github.com",
+ "sha1": "o1FGXRJoYPDa2gfqzNnXOW4e6Us=",
+ "title": "Purge Build Queue Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/purge-build-queue-plugin/1.0/purge-build-queue-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Purge+Build+Queue+Plugin"
+ },
+ "purge-job-history": {
+ "buildDate": "Aug 05, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides the ability to purge all the build records of a job either via a CLI command or via the UI. ",
+ "gav": "org.jenkins-ci.plugins:purge-job-history:1.1",
+ "labels": [],
+ "name": "purge-job-history",
+ "previousTimestamp": "2015-08-05T09:52:44.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-08-05T15:05:24.00Z",
+ "requiredCore": "1.565",
+ "scm": "github.com",
+ "sha1": "4K7PYLFcy62PwCrZRwU4jg1bYDE=",
+ "title": "Purge Job History Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/purge-job-history/1.1/purge-job-history.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Purge+Job+History+Plugin"
+ },
+ "pvcs_scm": {
+ "buildDate": "Jul 21, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "blalor",
+ "email": "blalor@bravo5.org",
+ "name": "Brian Lalor"
+ }
+ ],
+ "excerpt": "This plugin provides integration with Serena's PVCS Version Manager SCM.",
+ "gav": "org.jvnet.hudson.plugins:pvcs_scm:1.1",
+ "labels": [
+ "scm"
+ ],
+ "name": "pvcs_scm",
+ "previousTimestamp": "2008-11-05T07:36:58.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2010-07-21T11:57:40.00Z",
+ "requiredCore": "1.324",
+ "scm": "svn.dev.java.net",
+ "sha1": "rKiuRk88u5b03+foxUPssjWMils=",
+ "title": "PVCS SCM plugin for Hudson",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pvcs_scm/1.1/pvcs_scm.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PVCS+SCM"
+ },
+ "pwauth": {
+ "buildDate": "Dec 21, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mallox",
+ "email": "mallox@pyxzl.net",
+ "name": "Ravi Gairola"
+ }
+ ],
+ "excerpt": "This plug-in adds authentication via pwauth and supports both \\*nix system users and groups through PAM. ",
+ "gav": "org.jvnet.hudson.plugins:pwauth:0.4",
+ "labels": [
+ "user"
+ ],
+ "name": "pwauth",
+ "releaseTimestamp": "2010-12-21T09:18:28.00Z",
+ "requiredCore": "1.389",
+ "scm": "svn.java.net",
+ "sha1": "A/xofYwc8Wz8W3aWAQHubV5qmi8=",
+ "title": "PWauth Security Realm",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pwauth/0.4/pwauth.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/pwauth"
+ },
+ "pxe": {
+ "buildDate": "Feb 02, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin enhances Jenkins to support network-booting PCs for rapid, hands-free installations of various OSes, thereby making new slave installations easier.",
+ "gav": "org.jvnet.hudson.plugins:pxe:1.5",
+ "labels": [
+ "cluster"
+ ],
+ "name": "pxe",
+ "previousTimestamp": "2010-01-09T20:32:50.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2010-02-02T16:45:18.00Z",
+ "requiredCore": "1.322",
+ "scm": "svn.dev.java.net",
+ "sha1": "dE84kD7kmrxqG+I0jmDFXRevhv4=",
+ "title": "Hudson PXE netboot plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pxe/1.5/pxe.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PXE+Plugin"
+ },
+ "pyenv": {
+ "buildDate": "Aug 06, 2014",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "yamashita"
+ }
+ ],
+ "excerpt": "This plugin runs your jobs in the pyenv",
+ "gav": "org.jenkins-ci.ruby-plugins:pyenv:0.0.7",
+ "labels": [
+ "python"
+ ],
+ "name": "pyenv",
+ "previousTimestamp": "2013-08-05T12:39:54.00Z",
+ "previousVersion": "0.0.6",
+ "releaseTimestamp": "2014-08-06T19:18:14.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "HDrGh2u8NEPr80hDif4a4H0J3es=",
+ "title": "pyenv plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/pyenv/0.0.7/pyenv.hpi",
+ "version": "0.0.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/pyenv+plugin"
+ },
+ "python": {
+ "buildDate": "Oct 28, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rtyler",
+ "email": "tyler@slide.com",
+ "name": "R. Tyler Ballance"
+ }
+ ],
+ "excerpt": "Adds the ability to execute python scripts as build steps.",
+ "gav": "org.jenkins-ci.plugins:python:1.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "python",
+ "previousTimestamp": "2011-11-16T12:19:12.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-10-28T10:58:14.00Z",
+ "requiredCore": "1.565.1",
+ "scm": "github.com",
+ "sha1": "P08OgUrgQHTwSmqZK+Tb2WeJY98=",
+ "title": "Python Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/python/1.3/python.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Python+Plugin"
+ },
+ "python-wrapper": {
+ "buildDate": "May 22, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bambas",
+ "name": "Tomas Bambas"
+ }
+ ],
+ "excerpt": "This plugin provides the runtime library for plugins written in Python. ",
+ "gav": "org.jenkins-ci.plugins:python-wrapper:1.0.3",
+ "labels": [
+ "library"
+ ],
+ "name": "python-wrapper",
+ "previousTimestamp": "2014-03-31T00:46:20.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2014-05-22T17:29:10.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "r61CFNxzdNto0ik43GeNQD4YLj4=",
+ "title": "Python Wrapper Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/python-wrapper/1.0.3/python-wrapper.hpi",
+ "version": "1.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Python+Wrapper+Plugin"
+ },
+ "qc": {
+ "buildDate": "Jan 12, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tmaurel",
+ "name": "Thomas Maurel"
+ },
+ {
+ "developerId": "rseguy",
+ "name": "Romain Seguy"
+ }
+ ],
+ "excerpt": "This plugin allows Hudson to trigger HP Quality Center test sets.",
+ "gav": "org.jenkins-ci.plugins:qc:1.2.1",
+ "labels": [
+ "report",
+ "builder"
+ ],
+ "name": "qc",
+ "previousTimestamp": "2011-12-07T14:12:08.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-01-12T16:45:08.00Z",
+ "requiredCore": "1.409",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "hKLzEjb829TBh0EXSHss2qq7o3M=",
+ "title": "Quality Center Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/qc/1.2.1/qc.hpi",
+ "version": "1.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Quality+Center+Plugin"
+ },
+ "qftest": {
+ "buildDate": "Sep 06, 2016",
+ "dependencies": [
+ {
+ "name": "htmlpublisher",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "qfs",
+ "email": "thomas.max@qfs.de",
+ "name": "Thomas Max"
+ }
+ ],
+ "excerpt": "Allows users to run QF-Test suites as part of the build step",
+ "gav": "org.jenkins-ci.plugins:qftest:1.0.2",
+ "labels": [
+ "report",
+ "builder"
+ ],
+ "name": "qftest",
+ "previousTimestamp": "2015-07-28T11:02:02.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2016-09-06T17:44:32.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "iq4xdQHx8CN83rWI7nVFkgG9uYE=",
+ "title": "QF-Test Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/qftest/1.0.2/qftest.hpi",
+ "version": "1.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/QF-Test+Plugin"
+ },
+ "qtest": {
+ "buildDate": "Aug 30, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "qasymphony",
+ "email": "info@qasymphony.com",
+ "name": "QASymphony"
+ },
+ {
+ "developerId": "gunivan",
+ "email": "trongle@qasymphony.com",
+ "name": "Trong Le"
+ },
+ {
+ "developerId": "anpham",
+ "email": "anpham@qasymphony.com",
+ "name": "An Pham"
+ }
+ ],
+ "excerpt": "qTest by QASymphony now integrates seamlessly with Jenkins, helping make your Continuous Integration process more efficient. ",
+ "gav": "com.qasymphony.ci.jenkins:qtest:1.1.8",
+ "labels": [
+ "post-build",
+ "external"
+ ],
+ "name": "qtest",
+ "previousTimestamp": "2016-08-23T17:52:42.00Z",
+ "previousVersion": "1.1.7",
+ "releaseTimestamp": "2016-08-30T21:36:52.00Z",
+ "requiredCore": "2.2",
+ "scm": "github.com",
+ "sha1": "BspX44hvhhutB7ThrHYZ1uFzYgg=",
+ "title": "Jenkins qTest Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/qtest/1.1.8/qtest.hpi",
+ "version": "1.1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/qTest+for+Jenkins+by+QASymphony"
+ },
+ "quality-gates": {
+ "buildDate": "May 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ivanash",
+ "name": "Ivana Shekerova"
+ },
+ {
+ "developerId": "egrozdani",
+ "name": "Eleni Grozdani"
+ },
+ {
+ "developerId": "dpd90",
+ "name": "Dimitar Pop-Dimitrov"
+ }
+ ],
+ "excerpt": "Fails the build whenever the Quality Gates criteria in the Sonar analysis aren't met (the project Quality Gates status is different than \"Passed\")",
+ "gav": "org.jenkins-ci.plugins:quality-gates:2.5",
+ "labels": [],
+ "name": "quality-gates",
+ "previousTimestamp": "2016-04-19T12:33:58.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2016-05-17T14:12:46.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "wc9/VZURzbmbASaoeiFHVh7BKo4=",
+ "title": "Quality Gates Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/quality-gates/2.5/quality-gates.hpi",
+ "version": "2.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Quality+Gates+Plugin"
+ },
+ "quayio-trigger": {
+ "buildDate": "Jan 20, 2016",
+ "dependencies": [
+ {
+ "name": "buildtriggerbadge",
+ "optional": true,
+ "version": "2.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jcsirot",
+ "email": "sirot@chelonix.com",
+ "name": "Jean-Christophe Sirot"
+ }
+ ],
+ "excerpt": "This plugin provides integration between Jenkins and <a href='https://quay.io'>Quay.io</a> docker registry.",
+ "gav": "org.jenkins-ci.plugins:quayio-trigger:0.1",
+ "labels": [
+ "trigger"
+ ],
+ "name": "quayio-trigger",
+ "releaseTimestamp": "2016-01-20T10:36:24.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "nMH6bxvZHqoeCjjj8QkvYFlgcFk=",
+ "title": "Jenkins Quay.io trigger plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/quayio-trigger/0.1/quayio-trigger.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Quay.io+Trigger+Plugin"
+ },
+ "queue-cleanup": {
+ "buildDate": "Jul 21, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ }
+ ],
+ "excerpt": "Remove stalled items waiting in Jenkins queue. ",
+ "gav": "org.jenkins-ci.plugins:queue-cleanup:1.0",
+ "labels": [],
+ "name": "queue-cleanup",
+ "releaseTimestamp": "2014-07-21T14:50:24.00Z",
+ "requiredCore": "1.509.2",
+ "scm": "github.com",
+ "sha1": "Ij+k9i+FGgGoyTOAYhasKp3PwhM=",
+ "title": "Queue cleanup Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/queue-cleanup/1.0/queue-cleanup.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Queue+Cleanup+Plugin"
+ },
+ "r": {
+ "buildDate": "Jul 27, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kinow",
+ "email": "brunodepaulak@yahoo.com.br",
+ "name": "Bruno P. Kinoshita"
+ }
+ ],
+ "excerpt": "A simple plug-in to invoke <a href='http://www.r-project.org/'>R</a> interpreter and execute an R script. ",
+ "gav": "org.biouno.r:r:0.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "r",
+ "previousTimestamp": "2012-07-22T02:25:44.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2016-07-27T20:57:24.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "ARB4mZ0aUerLpUrz+EVlnIGVDeo=",
+ "title": "R Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/r/0.3/r.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/R+Plugin"
+ },
+ "rabbitmq-build-trigger": {
+ "buildDate": "Aug 19, 2014",
+ "dependencies": [
+ {
+ "name": "rabbitmq-consumer",
+ "optional": false,
+ "version": "2.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rin_ne",
+ "email": "rinrin.ne@gmail.com",
+ "name": "rinrinne"
+ }
+ ],
+ "excerpt": "This plugin triggers build using remote build message in RabbitMQ queue.",
+ "gav": "org.jenkins-ci.plugins:rabbitmq-build-trigger:2.3",
+ "labels": [
+ "trigger"
+ ],
+ "name": "rabbitmq-build-trigger",
+ "previousTimestamp": "2014-03-24T19:24:46.00Z",
+ "previousVersion": "2.2",
+ "releaseTimestamp": "2014-08-19T15:27:08.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "s2oS1dKWmF3/zFPZFx8uD865opg=",
+ "title": "RabbitMQ Build Trigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rabbitmq-build-trigger/2.3/rabbitmq-build-trigger.hpi",
+ "version": "2.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RabbitMQ+Build+Trigger+Plugin"
+ },
+ "rabbitmq-consumer": {
+ "buildDate": "Nov 06, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rin_ne",
+ "email": "rinrin.ne@gmail.com",
+ "name": "rinrinne"
+ }
+ ],
+ "excerpt": "This plugin connects to RabbitMQ, consumes messages in queue, then notifies it to listener.",
+ "gav": "org.jenkins-ci.plugins:rabbitmq-consumer:2.7",
+ "labels": [
+ "notifier"
+ ],
+ "name": "rabbitmq-consumer",
+ "previousTimestamp": "2014-11-06T14:49:48.00Z",
+ "previousVersion": "2.6",
+ "releaseTimestamp": "2014-11-06T14:53:42.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "UCW57q06px16wKDKm1Di142k+S8=",
+ "title": "RabbitMQ Consumer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rabbitmq-consumer/2.7/rabbitmq-consumer.hpi",
+ "version": "2.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RabbitMQ+Consumer+Plugin"
+ },
+ "rad-builder": {
+ "buildDate": "Mar 04, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rseguy",
+ "email": "romain.seguy@gmail.com",
+ "name": "Romain Seguy"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to invoke IBM Rational Application Developer as a build step. ",
+ "gav": "org.jvnet.hudson.plugins:rad-builder:1.1.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "rad-builder",
+ "previousTimestamp": "2011-02-21T11:14:36.00Z",
+ "previousVersion": "1.1.3",
+ "releaseTimestamp": "2011-03-04T10:37:50.00Z",
+ "requiredCore": "1.375",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "pM4htrn1zMf51bPf1CAZoIZFPrA=",
+ "title": "RAD Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rad-builder/1.1.4/rad-builder.hpi",
+ "version": "1.1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RAD+Builder+Plugin"
+ },
+ "radargun": {
+ "buildDate": "Jul 15, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ }
+ ],
+ "excerpt": "This plugin allows to run <a href='https://github.com/radargun/radargun'>RadarGun</a> benchmark as a Jenkins build step. ",
+ "gav": "org.jenkins-ci.plugins:radargun:1.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "radargun",
+ "previousTimestamp": "2016-02-12T17:02:08.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-07-15T13:47:32.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "ZZkeGXOoaWs+0NvBS3AAoDUFODQ=",
+ "title": "RadarGun",
+ "url": "http://updates.jenkins-ci.org/download/plugins/radargun/1.1/radargun.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RadarGun+plugin"
+ },
+ "radiatorviewplugin": {
+ "buildDate": "Feb 16, 2016",
+ "dependencies": [
+ {
+ "name": "claim",
+ "optional": true,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "batmat",
+ "email": "batmat@batmat.net",
+ "name": "Baptiste Mathus"
+ }
+ ],
+ "excerpt": "Provides a job view displaying project status in a highly visible manner. This is ideal for displaying on a screen on the office wall as a form of Extreme Feedback Device.",
+ "gav": "org.jenkins-ci.plugins:radiatorviewplugin:1.26",
+ "labels": [
+ "report",
+ "ui"
+ ],
+ "name": "radiatorviewplugin",
+ "previousTimestamp": "2016-01-22T15:10:42.00Z",
+ "previousVersion": "1.25",
+ "releaseTimestamp": "2016-02-16T23:34:56.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "pKV5tuTLn6rdmMM0gn9b5cFcceE=",
+ "title": "Radiator View Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/radiatorviewplugin/1.26/radiatorviewplugin.hpi",
+ "version": "1.26",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Radiator+View+Plugin"
+ },
+ "rake": {
+ "buildDate": "Mar 13, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "david_calavera",
+ "email": "calavera@apache.org",
+ "name": "David Calavera"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to invoke <a href='http://rake.rubyforge.org'>Rake</a> tasks as build steps.",
+ "gav": "org.jenkins-ci.plugins:rake:1.8.0",
+ "labels": [
+ "builder",
+ "ruby"
+ ],
+ "name": "rake",
+ "previousTimestamp": "2013-08-06T11:47:46.00Z",
+ "previousVersion": "1.7.8",
+ "releaseTimestamp": "2014-03-13T14:34:44.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "CY3XyEpEAo0I1fMsjcctzYzZtqs=",
+ "title": "Jenkins Rake plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rake/1.8.0/rake.hpi",
+ "version": "1.8.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Rake+plugin"
+ },
+ "rally-plugin": {
+ "buildDate": "Nov 24, 2015",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "tushar686",
+ "email": "tushar686@gmail.com",
+ "name": "Tushar Shinde"
+ },
+ {
+ "developerId": "mike-rogers",
+ "email": "r.m.rogers@gmail.com",
+ "name": "R. Michael Rogers"
+ }
+ ],
+ "excerpt": "This plugin allows pushing information to rally",
+ "gav": "org.jenkins-ci.plugins:rally-plugin:2.2.1",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "rally-plugin",
+ "previousTimestamp": "2015-10-12T09:10:20.00Z",
+ "previousVersion": "2.2",
+ "releaseTimestamp": "2015-11-24T07:42:42.00Z",
+ "requiredCore": "1.565.3",
+ "scm": "github.com",
+ "sha1": "3q51rlVjnoD2AuYKJ3j+0sHnnG4=",
+ "title": "Rally Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rally-plugin/2.2.1/rally-plugin.hpi",
+ "version": "2.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Rally+plugin"
+ },
+ "random-job-builder": {
+ "buildDate": "Apr 09, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin builds randomly selected jobs at a specified rate.",
+ "gav": "org.jenkins-ci.plugins:random-job-builder:1.0",
+ "labels": [],
+ "name": "random-job-builder",
+ "releaseTimestamp": "2014-04-09T14:58:36.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "iT2aaWS2dZR6ij7cxrP4giArqak=",
+ "title": "Random Job Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/random-job-builder/1.0/random-job-builder.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Random+Job+Builder+Plugin"
+ },
+ "random-string-parameter": {
+ "buildDate": "Aug 12, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "piotrskotnicki",
+ "email": "piotr.skotnicki@gmail.com",
+ "name": "Piotr Skotnicki"
+ }
+ ],
+ "excerpt": "Adds a new parameter type called Random String Parameter which inserts a random string that prevents Jenkins from merging multiple job runs into one. ",
+ "gav": "org.jenkins-ci.plugins:random-string-parameter:1.0",
+ "labels": [
+ "parameter"
+ ],
+ "name": "random-string-parameter",
+ "releaseTimestamp": "2012-08-12T19:18:58.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "SRTRxyIUjyum+CwnxEMCP9prebY=",
+ "title": "Random String Parameter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/random-string-parameter/1.0/random-string-parameter.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Random+String+Parameter+Plugin"
+ },
+ "rapiddeploy-jenkins": {
+ "buildDate": "Mar 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "MidVision",
+ "email": "support@midvision.com",
+ "name": "MidVision"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='http://www.midvision.com/products/rapiddeploy/'>RapidDeploy</a> from Jenkins. The plugin can be used with RapidDeploy 3.3.23+.",
+ "gav": "org.jenkins-ci.plugins:rapiddeploy-jenkins:3.7",
+ "labels": [
+ "external"
+ ],
+ "name": "rapiddeploy-jenkins",
+ "previousTimestamp": "2015-10-08T17:52:00.00Z",
+ "previousVersion": "3.6",
+ "releaseTimestamp": "2016-03-14T13:48:06.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "5qn7LO6tCHCtPxOHKs0/xx212hM=",
+ "title": "RapidDeploy plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rapiddeploy-jenkins/3.7/rapiddeploy-jenkins.hpi",
+ "version": "3.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RapidDeploy+plugin"
+ },
+ "rbenv": {
+ "buildDate": "Apr 18, 2016",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "usr0600238"
+ }
+ ],
+ "excerpt": "This plugin runs your jobs in the rbenv ",
+ "gav": "org.jenkins-ci.ruby-plugins:rbenv:0.0.17",
+ "labels": [
+ "ruby"
+ ],
+ "name": "rbenv",
+ "previousTimestamp": "2014-07-31T16:21:12.00Z",
+ "previousVersion": "0.0.16",
+ "releaseTimestamp": "2016-04-18T13:00:16.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "uhih3XqaZrseKNIW/a4x3wgkuJY=",
+ "title": "rbenv plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rbenv/0.0.17/rbenv.hpi",
+ "version": "0.0.17",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/rbenv+plugin"
+ },
+ "reactor-plugin": {
+ "buildDate": "Nov 04, 2015",
+ "dependencies": [
+ {
+ "name": "script-security",
+ "optional": true,
+ "version": "1.13"
+ },
+ {
+ "name": "groovy",
+ "optional": false,
+ "version": "1.27"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "magnayn",
+ "name": "Nigel Magnay"
+ }
+ ],
+ "excerpt": "This plugin allows jobs to programmatically trigger downstream jobs through the execution of groovy scripts. ",
+ "gav": "com.nirima:reactor-plugin:0.1.2",
+ "labels": [
+ "trigger"
+ ],
+ "name": "reactor-plugin",
+ "previousTimestamp": "2015-11-02T23:11:26.00Z",
+ "previousVersion": "0.1.1",
+ "releaseTimestamp": "2015-11-04T19:02:34.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "p+evzJu22viS1U1XgIFz+8J4TO8=",
+ "title": "Reactor plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/reactor-plugin/0.1.2/reactor-plugin.hpi",
+ "version": "0.1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Reactor+Plugin"
+ },
+ "read-only-configurations": {
+ "buildDate": "Aug 01, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plugin enables to show read-only configurations of job and global Jenkins configurations ",
+ "gav": "org.jenkins-ci.plugins:read-only-configurations:1.10",
+ "labels": [],
+ "name": "read-only-configurations",
+ "previousTimestamp": "2014-07-31T11:12:06.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2014-08-01T14:14:56.00Z",
+ "requiredCore": "1.532",
+ "scm": "github.com",
+ "sha1": "L4Q6ysWRYVqgXo1Y/pEyqA+z0hY=",
+ "title": "Read-only configurations",
+ "url": "http://updates.jenkins-ci.org/download/plugins/read-only-configurations/1.10/read-only-configurations.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Read-only+configurations+plugin"
+ },
+ "readonly-parameters": {
+ "buildDate": "Nov 26, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "wy-scm",
+ "name": "wy-scm"
+ }
+ ],
+ "excerpt": "This plugin adds support for Parameter. After the plugin is installed,in job configuration's page,you can see Readonly Parameter.",
+ "gav": "org.jenkins-ci.plugins:readonly-parameters:1.0.0",
+ "labels": [
+ "parameter"
+ ],
+ "name": "readonly-parameters",
+ "releaseTimestamp": "2015-11-26T04:49:24.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "S14tVsz/1DKq6qb1xKR9/pkE6mA=",
+ "title": "Readonly Parameter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/readonly-parameters/1.0.0/readonly-parameters.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Readonly+Parameter+Plugin"
+ },
+ "rebuild": {
+ "buildDate": "Jun 25, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ragesh_nair",
+ "email": "ragesh.x.nair@sonyericsson.com",
+ "name": "Ragesh Nair"
+ },
+ {
+ "developerId": "shemeersulaiman",
+ "email": "shemeer.x.sulaiman@sonyericsson.com",
+ "name": "Shemeer Sulaiman"
+ },
+ {
+ "developerId": "hagzag",
+ "email": "hagzag@tikalk.com",
+ "name": "Haggai Philip Zagury"
+ }
+ ],
+ "excerpt": "This plug-in allows the user to _rebuild_ a _parametrized build_ without entering the _parameters_ again.It will also allow the user to edit the parameters before rebuilding. ",
+ "gav": "com.sonyericsson.hudson.plugins.rebuild:rebuild:1.25",
+ "labels": [
+ "misc"
+ ],
+ "name": "rebuild",
+ "previousTimestamp": "2015-05-14T11:00:28.00Z",
+ "previousVersion": "1.24",
+ "releaseTimestamp": "2015-06-25T00:34:24.00Z",
+ "requiredCore": "1.481",
+ "scm": "github.com",
+ "sha1": "piu/VqzGu4UfYL6L4JNzNN0/vDU=",
+ "title": "Rebuilder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rebuild/1.25/rebuild.hpi",
+ "version": "1.25",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Rebuild+Plugin"
+ },
+ "recipe": {
+ "buildDate": "Jun 03, 2014",
+ "dependencies": [
+ {
+ "name": "chosen",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:recipe:1.2",
+ "labels": [],
+ "name": "recipe",
+ "previousTimestamp": "2013-11-22T10:25:00.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-06-03T10:43:16.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "dhKbs7HQACas4+7UWb9cbZn7HOc=",
+ "title": "Recipe Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/recipe/1.2/recipe.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Recipe+Plugin"
+ },
+ "redgate-sql-ci": {
+ "buildDate": "Jul 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "petergerrard",
+ "email": "peter.gerrard@red-gate.com",
+ "name": "Peter Gerrard"
+ }
+ ],
+ "excerpt": "Build, test, sync and publish your databases using Redgate DLM Automation.",
+ "gav": "com.redgate.plugins.redgatesqlci:redgate-sql-ci:1.0.14",
+ "labels": [
+ "builder"
+ ],
+ "name": "redgate-sql-ci",
+ "previousTimestamp": "2016-05-17T15:07:34.00Z",
+ "previousVersion": "1.0.13",
+ "releaseTimestamp": "2016-07-20T14:39:44.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "k0NANqiXUrmFb2y6XgiYfcoPMGY=",
+ "title": "Redgate DLM Automation",
+ "url": "http://updates.jenkins-ci.org/download/plugins/redgate-sql-ci/1.0.14/redgate-sql-ci.hpi",
+ "version": "1.0.14",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Redgate+DLM+Automation+Plugin"
+ },
+ "redmine": {
+ "buildDate": "Aug 31, 2013",
+ "compatibleSinceVersion": "0.14",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.0.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gaooh",
+ "name": "Akiko Asami"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.redmine.org/'>Redmine</a> into Jenkins (there's a <a href='http://d.hatena.ne.jp/couger/20090727'>plugin for Redmine</a> that integrates Jenkins from the Redmine side, too.)",
+ "gav": "org.jenkins-ci.plugins:redmine:0.15",
+ "labels": [
+ "external"
+ ],
+ "name": "redmine",
+ "previousTimestamp": "2013-04-30T18:35:30.00Z",
+ "previousVersion": "0.13",
+ "releaseTimestamp": "2013-08-31T12:46:42.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "WgHAFZYjosB7qhm7+uxAx4br90U=",
+ "title": "Jenkins Redmine plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/redmine/0.15/redmine.hpi",
+ "version": "0.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Redmine+Plugin"
+ },
+ "refit": {
+ "buildDate": "Jul 14, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "hwellmann",
+ "email": "harald.wellmann@gmx.de",
+ "name": "Harald Wellmann"
+ }
+ ],
+ "excerpt": "A plugin for publishing Fit test reports created by <a href='http://refit.googlecode.com'>reFit</a>, an implementation of the Framework for Integrated Test (Fit). ",
+ "gav": "com.googlecode.refit.jenkins:refit:0.3.1",
+ "labels": [
+ "report"
+ ],
+ "name": "refit",
+ "previousTimestamp": "2011-04-05T22:08:44.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2011-07-14T21:00:36.00Z",
+ "requiredCore": "1.403",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "IbilFMeyYoX5oHRQE7y39/yu60E=",
+ "title": "reFit Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/refit/0.3.1/refit.hpi",
+ "version": "0.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/reFit+Plugin"
+ },
+ "regexemail": {
+ "buildDate": "Jan 31, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "justinedelson",
+ "name": "Justin Edelson"
+ }
+ ],
+ "excerpt": "This plugin allows you to generate user email addresses from usernames.",
+ "gav": "com.mtvi.plateng.hudson:regexemail:0.3",
+ "labels": [
+ "user"
+ ],
+ "name": "regexemail",
+ "previousTimestamp": "2008-06-30T16:38:16.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2010-01-31T15:41:44.00Z",
+ "requiredCore": "1.318",
+ "scm": "svn.dev.java.net",
+ "sha1": "J9gFriK5ue+NWM3WF3P5OG8Kf4U=",
+ "title": "Regex Email Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/regexemail/0.3/regexemail.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RegEx+Email+Plugin"
+ },
+ "regression-report-plugin": {
+ "buildDate": "Dec 12, 2015",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "eller86",
+ "name": "Kengo TODA"
+ }
+ ],
+ "excerpt": "This plugin sends a mail if your test cases find regression (new failure). ",
+ "gav": "org.jenkins-ci.plugins:regression-report-plugin:1.5",
+ "labels": [
+ "report"
+ ],
+ "name": "regression-report-plugin",
+ "previousTimestamp": "2015-09-09T01:21:56.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2015-12-12T18:01:06.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "Bz020pHEpvKHTAKYM/J+K0joEec=",
+ "title": "Regression Report Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/regression-report-plugin/1.5/regression-report-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Regression+Report+Plugin"
+ },
+ "release": {
+ "buildDate": "Sep 29, 2016",
+ "dependencies": [
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.13"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.0"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "petehayes",
+ "email": "petehayes@gmail.com",
+ "name": "Peter Hayes"
+ }
+ ],
+ "excerpt": "This plugin adds the ability to wrap your job with pre\\- and post\\- build steps which are only executed when a manual release build is triggered.",
+ "gav": "org.jenkins-ci.plugins:release:2.6",
+ "labels": [
+ "buildwrapper",
+ "listview-column"
+ ],
+ "name": "release",
+ "previousTimestamp": "2015-10-26T15:08:30.00Z",
+ "previousVersion": "2.5.4",
+ "releaseTimestamp": "2016-09-29T09:30:34.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "kZJ0ceD/9vBQmFdOfnZdD+cT/Io=",
+ "title": "Jenkins Release Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/release/2.6/release.hpi",
+ "version": "2.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Release+Plugin"
+ },
+ "release-helper": {
+ "buildDate": "Aug 16, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.21"
+ },
+ {
+ "name": "github",
+ "optional": false,
+ "version": "1.14.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "novatec",
+ "email": "info.inspectit@novatec-gmbh.de",
+ "name": "Novatec GmbH"
+ }
+ ],
+ "excerpt": "This plugin allows the automation of several release tasks regarding Atlassian JIRA, Confluence, InfluxDB and Twitter. It offers the following features: * update / create JIRA Tickets * update / create JIRA Releases * publish release notes and artifacts on GitHub * publish release notes on Confluence * publish status updates on Twitter * publish measurement points in an InfluxDB ",
+ "gav": "org.jenkins-ci.plugins:release-helper:1.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "release-helper",
+ "releaseTimestamp": "2016-08-16T12:11:56.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "tAW64ANg+dBkMIuBj4jZIEtYaBg=",
+ "title": "Jenkins Release Helper Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/release-helper/1.3/release-helper.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Release+Helper+Plugin"
+ },
+ "relution-publisher": {
+ "buildDate": "Jul 12, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mwaylabs",
+ "email": "jenkins.ios.bot@mwaysolutions.com",
+ "name": "M-Way Solutions"
+ }
+ ],
+ "excerpt": "This Plugin may be used to deploy build artefacts like iOS and Android apps to a <a href='http://www.relution.io'>Relution Enterprise Appstore</a>. ",
+ "gav": "org.jenkins-ci.plugins:relution-publisher:1.24",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "relution-publisher",
+ "previousTimestamp": "2016-06-30T13:15:06.00Z",
+ "previousVersion": "1.23",
+ "releaseTimestamp": "2016-07-12T17:29:28.00Z",
+ "requiredCore": "1.626",
+ "scm": "github.com",
+ "sha1": "ETKwYIMtMOvS5tDN9IXLuyHh0Z4=",
+ "title": "Relution Enterprise Appstore Publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/relution-publisher/1.24/relution-publisher.hpi",
+ "version": "1.24",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Relution-Publisher"
+ },
+ "remote-jobs-view-plugin": {
+ "buildDate": "Oct 02, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "doergn",
+ "email": "dirk.lehmann@sap.com",
+ "name": "Dirk Lehmann"
+ }
+ ],
+ "excerpt": "View jobs executed on remote (master) Jenkins CI servers",
+ "gav": "com.sap.jenkinsci:remote-jobs-view-plugin:0.0.3",
+ "labels": [
+ "ui"
+ ],
+ "name": "remote-jobs-view-plugin",
+ "releaseTimestamp": "2015-10-02T18:38:02.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "75Zv81yLHDSsA0TLqyOY6m55UQo=",
+ "title": "remote-jobs-view-plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/remote-jobs-view-plugin/0.0.3/remote-jobs-view-plugin.hpi",
+ "version": "0.0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Remote+Jobs+View+Plugin"
+ },
+ "remote-terminal-access": {
+ "buildDate": "Aug 03, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "wolfs"
+ }
+ ],
+ "excerpt": "This plugin enables users to open an interactive terminal session against on-going builds on Jenkins.",
+ "gav": "org.jenkins-ci.plugins:remote-terminal-access:1.6",
+ "labels": [
+ "ui"
+ ],
+ "name": "remote-terminal-access",
+ "previousTimestamp": "2013-08-02T23:23:40.00Z",
+ "previousVersion": "1.5.2",
+ "releaseTimestamp": "2013-08-03T20:12:46.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "0DYrXzTuGdBrN7zxRehWCct3mj0=",
+ "title": "Remote Terminal Access plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/remote-terminal-access/1.6/remote-terminal-access.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Remote+Terminal+Access+Plugin"
+ },
+ "repo": {
+ "buildDate": "Aug 18, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rsandell",
+ "email": "rsandell@cloudbees.com",
+ "name": "Robert Sandell"
+ },
+ {
+ "developerId": "aep",
+ "email": "aep-jenkins@exys.org",
+ "name": "Arvid E. Picciani"
+ },
+ {
+ "developerId": "bjarkef",
+ "email": "bjarkefh@gmail.com",
+ "name": "Bjarke Freund-Hansen"
+ },
+ {
+ "developerId": "bklarson",
+ "email": "bklarson@gmail.com",
+ "name": "Brad Larson"
+ }
+ ],
+ "excerpt": "This plugin adds <a href='http://code.google.com/p/git-repo/'>Repo</a> as an SCM provider in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:repo:1.10.3",
+ "labels": [
+ "scm"
+ ],
+ "name": "repo",
+ "previousTimestamp": "2016-07-13T11:16:06.00Z",
+ "previousVersion": "1.10.2",
+ "releaseTimestamp": "2016-08-18T13:13:24.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "GXmnAUoIFCzAow3Bj+NiTD6uj0A=",
+ "title": "Jenkins REPO plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/repo/1.10.3/repo.hpi",
+ "version": "1.10.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Repo+Plugin"
+ },
+ "repository": {
+ "buildDate": "Dec 15, 2015",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "1.1.29"
+ },
+ {
+ "name": "branch-api",
+ "optional": true,
+ "version": "0.2-beta-4"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.7"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "magnayn",
+ "email": "nigel.magnay@gmail.com",
+ "name": "Nigel Magnay"
+ },
+ {
+ "developerId": "bjwschaap",
+ "email": "bastiaan.schaap@gmail.com",
+ "name": "Bastiaan Schaap"
+ }
+ ],
+ "excerpt": "This plug-in exposes project builds as a maven repository so the artifacts can be picked up by downstream builds or other systems.",
+ "gav": "jenkins:repository:1.3",
+ "labels": [
+ "maven",
+ "misc"
+ ],
+ "name": "repository",
+ "previousTimestamp": "2014-01-12T10:36:34.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-12-15T10:25:18.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "jkRV038oPCkd41f2Dju90HC8FmQ=",
+ "title": "Jenkins Maven Repository Server Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/repository/1.3/repository.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Maven+Repository+Server"
+ },
+ "repository-connector": {
+ "buildDate": "Mar 29, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "imod",
+ "email": "-",
+ "name": "Dominik Bartholdi"
+ },
+ {
+ "developerId": "mrumpf",
+ "email": "michael@rumpfonline.de",
+ "name": "Michael Rumpf"
+ }
+ ],
+ "excerpt": "Repository Connector adds features for resolving artifacts from a Maven repository like Nexus or Artifactory. ",
+ "gav": "org.jenkins-ci.plugins:repository-connector:1.1.3",
+ "labels": [
+ "external",
+ "maven"
+ ],
+ "name": "repository-connector",
+ "previousTimestamp": "2015-09-10T11:28:52.00Z",
+ "previousVersion": "1.1.2",
+ "releaseTimestamp": "2016-03-29T20:09:12.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "VnaOPDxNJW+FMMFIU2StuzOkNq4=",
+ "title": "Repository Connector",
+ "url": "http://updates.jenkins-ci.org/download/plugins/repository-connector/1.1.3/repository-connector.hpi",
+ "version": "1.1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Repository+Connector+Plugin"
+ },
+ "restricted-register": {
+ "buildDate": "Jun 20, 2016",
+ "dependencies": [
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.0.2"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.17"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "AdamKobus",
+ "email": "adam.kobus@infullmobile.com",
+ "name": "Adam Kobus"
+ }
+ ],
+ "excerpt": "Adds registration form with configurable restrictions.",
+ "gav": "com.infullmobile.jenkins.plugin:restricted-register:0.1.7",
+ "labels": [
+ "security"
+ ],
+ "name": "restricted-register",
+ "releaseTimestamp": "2016-06-20T11:18:24.00Z",
+ "requiredCore": "1.610",
+ "scm": "github.com",
+ "sha1": "93mihTGWfYO2fkAk2QOuIqT4+zU=",
+ "title": "Restricted Registration Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/restricted-register/0.1.7/restricted-register.hpi",
+ "version": "0.1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Restricted+Registration+Plugin"
+ },
+ "reverse-proxy-auth-plugin": {
+ "buildDate": "Jan 22, 2016",
+ "dependencies": [
+ {
+ "name": "ldap",
+ "optional": false,
+ "version": "1.8"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kkawaguchi@cloudbees.com",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "wilderrodrigues",
+ "email": "wrodrigues@schubergphilis.com",
+ "name": "Wilder Rodrigues"
+ }
+ ],
+ "excerpt": "This plugin lets you delegate the authentication to the reverse proxy that you run in front of Jenkins. It also includes Authorisation, which is done via LDAP groups loaded from the HTTP header or LDAP search - based on the username. ",
+ "gav": "org.jenkins-ci.plugins:reverse-proxy-auth-plugin:1.5",
+ "labels": [
+ "user"
+ ],
+ "name": "reverse-proxy-auth-plugin",
+ "previousTimestamp": "2014-05-27T14:22:18.00Z",
+ "previousVersion": "1.4.0",
+ "releaseTimestamp": "2016-01-22T11:59:00.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "VNIueBUsidmKDt9oWfvIxIEKrOU=",
+ "title": "Jenkins Reverse Proxy Auth Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/reverse-proxy-auth-plugin/1.5/reverse-proxy-auth-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Reverse+Proxy+Auth+Plugin"
+ },
+ "reviewboard": {
+ "buildDate": "Feb 17, 2011",
+ "dependencies": [
+ {
+ "name": "perforce",
+ "optional": false,
+ "version": "1.0.28"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rshelley",
+ "email": "ryan@12gaugemedia.com",
+ "name": "Ryan Shelley"
+ }
+ ],
+ "excerpt": "This plugin connects to <a href='http://www.reviewboard.org'>Reviewboard</a> to create and update Review Requests. Reviewboard is a tool for conducting code reviews and this plugin will allow you to link your SCM updates, when they are pulled for a Jenkins build, to Reviewboard. Note that currently, only the <a href='Perforce Plugin'>Perforce SCM</a> is supported.",
+ "gav": "org.jvnet.hudson.plugins:reviewboard:1.0.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "reviewboard",
+ "previousTimestamp": "2010-05-04T13:38:06.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2011-02-17T13:47:32.00Z",
+ "requiredCore": "1.358",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "teByZj4VXUnhXdL7uEPTrSdqcLg=",
+ "title": "Reviewboard Publisher",
+ "url": "http://updates.jenkins-ci.org/download/plugins/reviewboard/1.0.1/reviewboard.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Reviewboard+Plugin"
+ },
+ "rhnpush-plugin": {
+ "buildDate": "Apr 05, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jimmidyson",
+ "email": "jimmidyson@gmail.com",
+ "name": "Jimmi Dyson"
+ },
+ {
+ "developerId": "elibus",
+ "email": "marco.tizzoni@gmail.com",
+ "name": "Marco Tizzoni"
+ }
+ ],
+ "excerpt": "This plugin adds a post build step to push RPMs to Spacewalk or RHN satelite servers. It requires _rhnpush_ to be installed on the slave.",
+ "gav": "org.jenkins-ci.plugins:rhnpush-plugin:0.4.1",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "rhnpush-plugin",
+ "previousTimestamp": "2014-04-01T19:09:26.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2014-04-05T11:40:50.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "oGbC204GusIjvn5cFiul78w+R5U=",
+ "title": "rhnpush Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rhnpush-plugin/0.4.1/rhnpush-plugin.hpi",
+ "version": "0.4.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/rhnpush+Plugin"
+ },
+ "rich-text-publisher-plugin": {
+ "buildDate": "Oct 14, 2013",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dkorotkov",
+ "email": "dmitry.v.korotkov@gmail.com",
+ "name": "Dmitry Korotkov"
+ }
+ ],
+ "excerpt": "This plugin puts custom rich text message to the Build pages and Job main page (for last build). Atlassian Confluence, WikiText and HTML notations are supported.",
+ "gav": "org.jenkins-ci.plugins:rich-text-publisher-plugin:1.3",
+ "labels": [
+ "post-build"
+ ],
+ "name": "rich-text-publisher-plugin",
+ "previousTimestamp": "2013-08-06T16:27:18.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2013-10-14T22:17:12.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "+bkwXoCJGLstOpRSZT1lPCNorMs=",
+ "title": "Rich Text Publisher Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rich-text-publisher-plugin/1.3/rich-text-publisher-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Rich+Text+Publisher+Plugin"
+ },
+ "rigor-optimization": {
+ "buildDate": "Sep 13, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mtisham",
+ "email": "mark.isham@rigor.com",
+ "name": "Mark Isham"
+ }
+ ],
+ "excerpt": "Test website performance as a Jenkins build step using <a href='http://rigor.com/features'>Rigor Optimization</a>&amp;nbsp;(Application <a href='https://optimization.rigor.com'>login</a>) ",
+ "gav": "org.jenkins-ci.plugins:rigor-optimization:1.02",
+ "labels": [
+ "builder",
+ "website",
+ "performance"
+ ],
+ "name": "rigor-optimization",
+ "releaseTimestamp": "2016-09-13T08:57:08.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "ZH2R6i8QEJgdPazy31bgfY9rolE=",
+ "title": "Rigor Optimization Website Performance Testing",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rigor-optimization/1.02/rigor-optimization.hpi",
+ "version": "1.02",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Rigor+Optimization+Plugin"
+ },
+ "robot": {
+ "buildDate": "Apr 01, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.4.1"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.5.1"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jpiironen",
+ "email": "janne.piironen@gmail.com",
+ "name": "Janne Piironen"
+ }
+ ],
+ "excerpt": "This plugin collects and publishes <a href='http://robotframework.org/'>Robot Framework</a> test results",
+ "gav": "org.jenkins-ci.plugins:robot:1.6.4",
+ "labels": [
+ "report"
+ ],
+ "name": "robot",
+ "previousTimestamp": "2015-10-08T15:56:14.00Z",
+ "previousVersion": "1.6.2",
+ "releaseTimestamp": "2016-04-01T13:12:56.00Z",
+ "requiredCore": "1.619",
+ "scm": "github.com",
+ "sha1": "vFgKkPRi9VPKywkwKbFydFvNsWA=",
+ "title": "Robot Framework plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/robot/1.6.4/robot.hpi",
+ "version": "1.6.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Robot+Framework+Plugin"
+ },
+ "role-strategy": {
+ "buildDate": "Jun 13, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tmaurel",
+ "name": "Thomas Maurel"
+ },
+ {
+ "developerId": "rseguy",
+ "name": "Romain Seguy"
+ },
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "Adds a new role-based strategy to manage users' permissions.",
+ "gav": "org.jenkins-ci.plugins:role-strategy:2.3.2",
+ "labels": [
+ "user",
+ "security"
+ ],
+ "name": "role-strategy",
+ "previousTimestamp": "2016-06-13T12:51:40.00Z",
+ "previousVersion": "2.3.1",
+ "releaseTimestamp": "2016-06-13T13:06:54.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "GKxCxOTnG2MLJgWaY0f17Bo6aAc=",
+ "title": "Role-based Authorization Strategy",
+ "url": "http://updates.jenkins-ci.org/download/plugins/role-strategy/2.3.2/role-strategy.hpi",
+ "version": "2.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Role+Strategy+Plugin"
+ },
+ "rpmsign-plugin": {
+ "buildDate": "Aug 13, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jimmidyson",
+ "email": "jimmidyson@gmail.com",
+ "name": "Jimmi Dyson"
+ },
+ {
+ "developerId": "elibus",
+ "email": "marco.tizzoni@gmail.com",
+ "name": "Marco Tizzoni"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:rpmsign-plugin:0.4.6",
+ "labels": [
+ "post-build"
+ ],
+ "name": "rpmsign-plugin",
+ "previousTimestamp": "2015-08-05T19:53:04.00Z",
+ "previousVersion": "0.4.5",
+ "releaseTimestamp": "2015-08-13T12:59:32.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "fpJyIvdT7N2WMsZyjHKiLl1we4Q=",
+ "title": "RPM Sign Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rpmsign-plugin/0.4.6/rpmsign-plugin.hpi",
+ "version": "0.4.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RPM+Sign+Plugin"
+ },
+ "rqm-plugin": {
+ "buildDate": "Nov 20, 2014",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.18"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "praqma_josra",
+ "name": "Praqma Josra"
+ }
+ ],
+ "excerpt": "This plugin integrates with Rational Quality Manager. It extracts automatic test cases from test suite execution records and reads input paramater information attached to the test cases test script as environment variables in your Jenkins jobs. This plugin requires RQM v4.X",
+ "gav": "net.praqma:rqm-plugin:2.8",
+ "labels": [
+ "misc",
+ "builder"
+ ],
+ "name": "rqm-plugin",
+ "previousTimestamp": "2014-09-11T16:21:46.00Z",
+ "previousVersion": "2.7",
+ "releaseTimestamp": "2014-11-20T08:36:42.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "6wV3OPzXDOOP1tVH58uW4LuGM40=",
+ "title": "RQM Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rqm-plugin/2.8/rqm-plugin.hpi",
+ "version": "2.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RQM+Plugin"
+ },
+ "rrod": {
+ "buildDate": "Mar 01, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "danielpetisme",
+ "email": "daniel.petisme@gmail.com",
+ "name": "Daniel Petisme"
+ }
+ ],
+ "excerpt": "This plugin adds new actions on jobs for users to request that their jobs are renamed or deleted",
+ "gav": "org.jenkins-ci.plugins:rrod:1.1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "rrod",
+ "previousTimestamp": "2011-10-17T17:19:04.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2012-03-01T15:41:30.00Z",
+ "requiredCore": "1.409",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "BHc6RyGkYHbOqmZpdTP/60k3XMo=",
+ "title": "Request Rename Or Delete Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rrod/1.1.0/rrod.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Request+Rename+Or+Delete+Plugin"
+ },
+ "ruby": {
+ "buildDate": "Jan 31, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vivekp",
+ "name": "Vivek Pandey"
+ }
+ ],
+ "excerpt": "This plugin will let users use <a href='http://www.ruby-lang.org/'>Ruby</a> in the build scripts. ",
+ "gav": "org.jvnet.hudson.plugins:ruby:1.2",
+ "labels": [
+ "builder",
+ "ruby"
+ ],
+ "name": "ruby",
+ "previousTimestamp": "2008-01-26T09:20:32.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2010-01-31T15:49:38.00Z",
+ "requiredCore": "1.318",
+ "scm": "svn.dev.java.net",
+ "sha1": "8Mvxy/p9VNOY8+LIlwMv5+/XhP8=",
+ "title": "Hudson Ruby Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ruby/1.2/ruby.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ruby+Plugin"
+ },
+ "ruby-runtime": {
+ "buildDate": "Aug 11, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "hsbt",
+ "email": "hsbt@ruby-lang.org",
+ "name": "SHIBATA Hiroshi"
+ },
+ {
+ "developerId": "yyuu",
+ "email": "yamashita@geishatokyo.com",
+ "name": "YAMASHITA Yuu"
+ }
+ ],
+ "excerpt": "Provides the Ruby runtime and bindings required to implement <a href='Jenkins plugin development in Ruby'>plugins in Ruby</a>.",
+ "gav": "org.jenkins-ci.plugins:ruby-runtime:0.13",
+ "labels": [],
+ "name": "ruby-runtime",
+ "previousTimestamp": "2013-07-05T18:53:46.00Z",
+ "previousVersion": "0.12",
+ "releaseTimestamp": "2016-08-11T09:13:24.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "xkRwZUf7TlB6WXoWAOMvwD0sHiM=",
+ "title": "Ruby Runtime Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ruby-runtime/0.13/ruby-runtime.hpi",
+ "version": "0.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ruby+Runtime+Plugin"
+ },
+ "rubyMetrics": {
+ "buildDate": "Sep 29, 2016",
+ "compatibleSinceVersion": "4.0",
+ "dependencies": [
+ {
+ "name": "rake",
+ "optional": false,
+ "version": "1.8.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pkuczynski",
+ "email": "piotr.kuczynski@gmail.com",
+ "name": "Piotr Kuczynski"
+ },
+ {
+ "developerId": "david_calavera",
+ "email": "calavera@apache.org",
+ "name": "David Calavera"
+ }
+ ],
+ "excerpt": "Ruby metric reports for Jenkins. <a href='http://eigenclass.org/hiki.rb?rcov'>Rcov</a>, Rails stats, Rails notes and <a href='http://ruby.sadi.st/Flog.html'>Flog</a>.",
+ "gav": "org.jenkins-ci.plugins:rubyMetrics:1.6.4",
+ "labels": [
+ "report",
+ "ruby"
+ ],
+ "name": "rubyMetrics",
+ "previousTimestamp": "2014-11-24T00:47:52.00Z",
+ "previousVersion": "1.6.3",
+ "releaseTimestamp": "2016-09-29T15:25:44.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "2fynKLwq8qlPRZVsAumn4YFIM80=",
+ "title": "RubyMetrics plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rubyMetrics/1.6.4/rubyMetrics.hpi",
+ "version": "1.6.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RubyMetrics+plugin"
+ },
+ "rubymotion": {
+ "buildDate": "Sep 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "watson1978",
+ "email": "watson1978@gmail.com",
+ "name": "Watson"
+ }
+ ],
+ "excerpt": "This plugin integrates RubyMotion with Jenkins.",
+ "gav": "org.jenkins-ci.ruby-plugins:rubymotion:1.17",
+ "labels": [
+ "builder"
+ ],
+ "name": "rubymotion",
+ "previousTimestamp": "2016-02-11T17:51:50.00Z",
+ "previousVersion": "1.16",
+ "releaseTimestamp": "2016-09-21T14:24:20.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "T1NL9vtHVS7go3yDCCzxv3umoKY=",
+ "title": "Jenkins RubyMotion Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rubymotion/1.17/rubymotion.hpi",
+ "version": "1.17",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+RubyMotion+Plugin"
+ },
+ "run-condition": {
+ "buildDate": "Oct 05, 2013",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bap",
+ "email": "bap-jenkins@BapIT.co.uk",
+ "name": "Bap"
+ }
+ ],
+ "excerpt": "Core conditions to select whether to execute a build step or publisher. Used by the [Flexible Publish Plugin] and the [Conditional BuildStep Plugin]. ",
+ "gav": "org.jenkins-ci.plugins:run-condition:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "run-condition",
+ "previousTimestamp": "2012-05-25T20:34:10.00Z",
+ "previousVersion": "0.10",
+ "releaseTimestamp": "2013-10-05T16:36:00.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "B2TKEO8x5hMApgJXePoF1im87pY=",
+ "title": "Run Condition Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/run-condition/1.0/run-condition.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Run+Condition+Plugin"
+ },
+ "run-condition-extras": {
+ "buildDate": "May 04, 2015",
+ "dependencies": [
+ {
+ "name": "build-timeout",
+ "optional": true,
+ "version": "1.12"
+ },
+ {
+ "name": "email-ext",
+ "optional": true,
+ "version": "2.38"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "This plugin provides additional run conditions and integrations for [JENKINS:Run Condition Plugin] ",
+ "gav": "com.synopsys.arc.jenkinsci.plugins:run-condition-extras:0.2",
+ "labels": [
+ "misc",
+ "runcondition",
+ "emailext"
+ ],
+ "name": "run-condition-extras",
+ "previousTimestamp": "2014-01-18T23:24:28.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2015-05-04T19:05:58.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "9LiAMHnnAcz4hhz4k9a2HGrjAes=",
+ "title": "Jenkins Run Condition Extras Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/run-condition-extras/0.2/run-condition-extras.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Run+Condition+Extras+Plugin"
+ },
+ "run-selector": {
+ "buildDate": "Aug 21, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-support",
+ "optional": true,
+ "version": "1.4.2"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.4.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "alexsomai",
+ "email": "somai.alexandru@gmail.com",
+ "name": "Alexandru Somai"
+ }
+ ],
+ "excerpt": "This plugin allows selecting a Run based on specific parameters. ",
+ "gav": "org.jenkins-ci.plugins:run-selector:1.0.0",
+ "labels": [
+ "parameter",
+ "pipeline"
+ ],
+ "name": "run-selector",
+ "releaseTimestamp": "2016-08-21T11:58:16.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "KTtN2FJUWAL6vFR0L+HiP4gJrfA=",
+ "title": "Run Selector Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/run-selector/1.0.0/run-selector.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Run+Selector+Plugin"
+ },
+ "rundeck": {
+ "buildDate": "May 19, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vbehar",
+ "name": "Vincent Behar"
+ },
+ {
+ "developerId": "gschueler",
+ "email": "greg@simplifyops.com",
+ "name": "Greg Schueler"
+ }
+ ],
+ "excerpt": "This plugin is a Notifier that will talk to a <a href='http://www.rundeck.org'>RunDeck</a> instance (via its HTTP API) to schedule a job execution on RunDeck after a successful build on Jenkins. It is also a Trigger that will schedule a build on Jenkins after a job execution on RunDeck (using RunDeck WebHook Notification). In addition, it turns Jenkins into an <a href='http://rundeck.org/docs/RunDeck-Guide.html#option-model-provider'>Option provider</a> for RunDeck, if you want to use your Jenkins build artifacts as an option to a RunDeck job. ",
+ "gav": "org.jenkins-ci.plugins:rundeck:3.5.4",
+ "labels": [
+ "notifier",
+ "external",
+ "trigger"
+ ],
+ "name": "rundeck",
+ "previousTimestamp": "2015-10-20T10:31:32.00Z",
+ "previousVersion": "3.5.1",
+ "releaseTimestamp": "2016-05-19T16:22:00.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "DdC8L6VgekzK1M21toKZIiCP6/c=",
+ "title": "Jenkins Rundeck plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rundeck/3.5.4/rundeck.hpi",
+ "version": "3.5.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RunDeck+Plugin"
+ },
+ "runscope": {
+ "buildDate": "Apr 25, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "frankstratton",
+ "email": "frank@runscope.com",
+ "name": "Frank Stratton"
+ }
+ ],
+ "excerpt": "This plugin allows you to add a <a href='https://www.runscope.com'>Runscope</a> API test as a build step into your Jenkins build pipeline. The plugin will trigger a specific API test (via <a href='https://www.runscope.com/docs/api-testing/integrations'>Trigger URL</a>) and wait for the test to complete. If the test passes, the build steps will continue. However, if it fails, the build will be marked as failed.",
+ "gav": "com.runscope.jenkins:runscope:1.47",
+ "labels": [
+ "builder",
+ "external"
+ ],
+ "name": "runscope",
+ "previousTimestamp": "2016-04-14T11:00:22.00Z",
+ "previousVersion": "1.46",
+ "releaseTimestamp": "2016-04-25T15:54:34.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "X3SkBsTL5FzK8ILFG176axxkIr8=",
+ "title": "Runscope plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/runscope/1.47/runscope.hpi",
+ "version": "1.47",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Runscope+Plugin"
+ },
+ "rusalad-plugin": {
+ "buildDate": "Jun 10, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dkorotkov",
+ "email": "dmitry.v.korotkov@gmail.com",
+ "name": "Dmitry Korotkov"
+ }
+ ],
+ "excerpt": "This plugin enables Jenkins to load test output from&amp;nbsp;<a href='https://code.google.com/p/russian-salad/'>Russian Salad</a>&amp;nbsp;test suite.",
+ "gav": "org.jenkins-ci.plugins:rusalad-plugin:1.0.8",
+ "labels": [
+ "report"
+ ],
+ "name": "rusalad-plugin",
+ "previousTimestamp": "2013-05-29T13:33:38.00Z",
+ "previousVersion": "1.0.7",
+ "releaseTimestamp": "2013-06-10T16:50:00.00Z",
+ "requiredCore": "1.514",
+ "scm": "github.com",
+ "sha1": "BSB7sMCFzprmJwrhjWtGNYPT5sY=",
+ "title": "Jenkins RuSalad plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rusalad-plugin/1.0.8/rusalad-plugin.hpi",
+ "version": "1.0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Russian+Salad+Test+Report+Plugin"
+ },
+ "rvm": {
+ "buildDate": "Aug 10, 2016",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.12"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "eito"
+ }
+ ],
+ "excerpt": "This plugin runs your jobs in the <a href='http://rvm.io/'>RVM</a> managed ruby+gemset of your choice",
+ "gav": "org.jenkins-ci.ruby-plugins:rvm:0.6",
+ "labels": [
+ "ruby"
+ ],
+ "name": "rvm",
+ "previousTimestamp": "2013-03-05T17:52:28.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2016-08-10T11:22:56.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "ieT7cT2RzCkDQHS5upym1BHPEPM=",
+ "title": "Rvm",
+ "url": "http://updates.jenkins-ci.org/download/plugins/rvm/0.6/rvm.hpi",
+ "version": "0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RVM+Plugin"
+ },
+ "s3": {
+ "buildDate": "Aug 31, 2016",
+ "dependencies": [
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.50"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "copyartifact",
+ "optional": false,
+ "version": "1.37"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dougm",
+ "name": "Doug MacEachern"
+ },
+ {
+ "developerId": "d6y",
+ "name": "Richard Dallaway"
+ },
+ {
+ "developerId": "longlho",
+ "name": "Long Ho"
+ },
+ {
+ "developerId": "mikewatt",
+ "name": "Michael Watt"
+ },
+ {
+ "developerId": "dmbeer",
+ "name": "David Beer"
+ },
+ {
+ "developerId": "mattias",
+ "name": "Mattias Appelgren"
+ },
+ {
+ "developerId": "Jimilian",
+ "name": "Alexander Akbashev"
+ }
+ ],
+ "excerpt": "Upload build artifacts to Amazon S3",
+ "gav": "org.jenkins-ci.plugins:s3:0.10.9",
+ "labels": [
+ "upload"
+ ],
+ "name": "s3",
+ "previousTimestamp": "2016-07-21T18:06:38.00Z",
+ "previousVersion": "0.10.7",
+ "releaseTimestamp": "2016-08-31T16:43:08.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "T7eU6pKgqOw0I02x8BQqNz/v4i8=",
+ "title": "Jenkins S3 publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/s3/0.10.9/s3.hpi",
+ "version": "0.10.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/S3+Plugin"
+ },
+ "saferestart": {
+ "buildDate": "Apr 22, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin allows you to restart Jenkins safely.",
+ "gav": "org.jenkins-ci.plugins:saferestart:0.3",
+ "labels": [
+ "misc"
+ ],
+ "name": "saferestart",
+ "previousTimestamp": "2011-09-07T22:47:20.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2013-04-22T08:27:46.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "YoajzoKXm+Ckyg9IW0I0n4lkn+M=",
+ "title": "Safe Restart Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/saferestart/0.3/saferestart.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SafeRestart+Plugin"
+ },
+ "sahagin": {
+ "buildDate": "Jul 28, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "nozomi.ito@trident-qa.com",
+ "name": "Nozomi Ito"
+ }
+ ],
+ "excerpt": "This plugin generates <a href='https://github.com/SahaginOrg/sahagin-java'>Sahagin</a> HTML report from <a href='https://github.com/SahaginOrg/sahagin-java'>Sahagin</a> test output data and attaches it to build. ",
+ "gav": "org.jenkins-ci.plugins:sahagin:0.9.2",
+ "labels": [
+ "report"
+ ],
+ "name": "sahagin",
+ "previousTimestamp": "2016-05-09T13:59:30.00Z",
+ "previousVersion": "0.9",
+ "releaseTimestamp": "2016-07-28T23:00:38.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "II8/VTnzAyJrVCz6F/eBOjmjpqw=",
+ "title": "Sahagin Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sahagin/0.9.2/sahagin.hpi",
+ "version": "0.9.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sahagin+Plugin"
+ },
+ "salesforce-migration-assistant-plugin": {
+ "buildDate": "Jul 26, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aesanch2",
+ "email": "senninha09@gmail.com",
+ "name": "Anthony Sanchez"
+ }
+ ],
+ "excerpt": "This plugin automatically deploys metadata changes (Apex Classes, Apex Triggers, Visualforce Pages, etc.) to a Salesforce organization based on differences between two commits in Git. See the github <a href='https://github.com/jenkinsci/salesforce-migration-assistant-plugin/wiki'>wiki</a>&amp;nbsp;for information on how to configure the plugin. ",
+ "gav": "org.jenkins-ci.plugins:salesforce-migration-assistant-plugin:2.2.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "salesforce-migration-assistant-plugin",
+ "previousTimestamp": "2016-07-12T07:20:16.00Z",
+ "previousVersion": "2.2.1",
+ "releaseTimestamp": "2016-07-26T23:43:26.00Z",
+ "requiredCore": "1.642.4",
+ "scm": "github.com",
+ "sha1": "Wwojpg+5r1mJV3E2Cz7GymhPK1g=",
+ "title": "Salesforce Migration Assistant",
+ "url": "http://updates.jenkins-ci.org/download/plugins/salesforce-migration-assistant-plugin/2.2.2/salesforce-migration-assistant-plugin.hpi",
+ "version": "2.2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Salesforce+Migration+Assistant+Plugin"
+ },
+ "saltstack": {
+ "buildDate": "May 06, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.23"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mchugh19",
+ "email": "mchugh19@hotmail.com",
+ "name": "Christian McHugh"
+ }
+ ],
+ "excerpt": "This plugin sends a SaltStack cherrypy API message as a build step",
+ "gav": "org.jenkins-ci.plugins:saltstack:1.7.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "saltstack",
+ "previousTimestamp": "2016-02-29T09:20:10.00Z",
+ "previousVersion": "1.7.0",
+ "releaseTimestamp": "2016-05-06T15:05:46.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "V8kTNNO2luoof0O9WEEyt5/CWEM=",
+ "title": "Jenkins SaltStack plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/saltstack/1.7.1/saltstack.hpi",
+ "version": "1.7.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/saltstack-plugin"
+ },
+ "sametime": {
+ "buildDate": "Mar 14, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='http://www.ibm.com/lotus/sametime'>SameTime</a> as build notifier.",
+ "gav": "org.jenkins-ci.plugins:sametime:0.4",
+ "labels": [
+ "notifier"
+ ],
+ "name": "sametime",
+ "releaseTimestamp": "2013-03-14T10:18:38.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "DMXbUfb/70zxS/TnRV6VZ8VELbg=",
+ "title": "Jenkins Sametime Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sametime/0.4/sametime.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SameTime+Plugin"
+ },
+ "saml": {
+ "buildDate": "Oct 02, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "benmccann",
+ "name": "Ben McCann"
+ }
+ ],
+ "excerpt": "This plugin allows authentication to Jenkins via the SAML 2.0 protocol.",
+ "gav": "org.jenkins-ci.plugins:saml:0.12",
+ "labels": [
+ "user"
+ ],
+ "name": "saml",
+ "previousTimestamp": "2016-07-29T08:54:52.00Z",
+ "previousVersion": "0.6",
+ "releaseTimestamp": "2016-10-02T11:25:16.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "apLihXX1jFXYWnJyLcRZn1VMtNU=",
+ "title": "SAML Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/saml/0.12/saml.hpi",
+ "version": "0.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SAML+Plugin"
+ },
+ "sasunit-plugin": {
+ "buildDate": "Jul 14, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "HMSAnalyticalSoftware",
+ "email": "github@analytical-software.de",
+ "name": "HMSAnalyticalSoftware"
+ }
+ ],
+ "excerpt": "This plugin adds support for <a href='http://sourceforge.net/projects/sasunit/'>SASUnit</a>, the unit testing framework for SAS. ",
+ "gav": "org.jenkins-ci.plugins:sasunit-plugin:1.024",
+ "labels": [
+ "builder"
+ ],
+ "name": "sasunit-plugin",
+ "previousTimestamp": "2015-07-14T07:25:12.00Z",
+ "previousVersion": "1.023",
+ "releaseTimestamp": "2015-07-14T07:38:14.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "9tjqwp8mnF7wTSCryHkZXJVkZBU=",
+ "title": "SASUnit Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sasunit-plugin/1.024/sasunit-plugin.hpi",
+ "version": "1.024",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SASUnit+Plugin"
+ },
+ "sauce-ondemand": {
+ "buildDate": "Sep 30, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.25"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.9"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "workflow-basic-steps",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.11"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "halkeye",
+ "email": "gavin@saucelabs.com",
+ "name": "Gavin Mogan"
+ }
+ ],
+ "excerpt": "This plugin allows you to integrate <a href='https://saucelabs.com/selenium'>Sauce Selenium Testing</a> with Jenkins.",
+ "gav": "org.jenkins-ci.plugins:sauce-ondemand:1.156",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "sauce-ondemand",
+ "previousTimestamp": "2016-08-22T16:24:14.00Z",
+ "previousVersion": "1.155",
+ "releaseTimestamp": "2016-09-30T13:27:00.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "ADa1f5YJ4FuwMhXvjYm6mYeZd/8=",
+ "title": "Jenkins Sauce OnDemand plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sauce-ondemand/1.156/sauce-ondemand.hpi",
+ "version": "1.156",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sauce+OnDemand+Plugin"
+ },
+ "sbt": {
+ "buildDate": "Mar 05, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "uzilan",
+ "email": "uzi.landsmann@gmail.com",
+ "name": "Uzi Landsmann"
+ }
+ ],
+ "excerpt": "This plugin allows building Scala projects using <a href='http://code.google.com/p/simple-build-tool/'>sbt</a>. ",
+ "gav": "org.jenkins-ci.plugins:sbt:1.5",
+ "labels": [
+ "builder"
+ ],
+ "name": "sbt",
+ "previousTimestamp": "2012-07-17T16:24:34.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2015-03-05T09:53:00.00Z",
+ "requiredCore": "1.431",
+ "scm": "github.com",
+ "sha1": "euvJudV6rJE4ygHkuGMbxsa29sI=",
+ "title": "Jenkins sbt plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sbt/1.5/sbt.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/sbt+plugin"
+ },
+ "scala-junit-name-decoder": {
+ "buildDate": "May 23, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dnadolny",
+ "email": "donny.nadolny@garnercorp.com",
+ "name": "Donny Nadolny"
+ }
+ ],
+ "excerpt": "This plugin displays JUnit test names for Scala classes as they appear in source, eg &quot;some$u0020test&quot; becomes &quot;some test&quot;.",
+ "gav": "org.jenkins-ci.plugins:scala-junit-name-decoder:1.0",
+ "labels": [
+ "scala"
+ ],
+ "name": "scala-junit-name-decoder",
+ "releaseTimestamp": "2013-05-23T14:11:42.00Z",
+ "requiredCore": "1.515",
+ "scm": "github.com",
+ "sha1": "H5LNKu6HhMqPGZuA5bDH6CxvvP4=",
+ "title": "Scala JUnit Name Decoder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scala-junit-name-decoder/1.0/scala-junit-name-decoder.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Scala+JUnit+Name+Decoder+Plugin"
+ },
+ "scalable-amazon-ecs": {
+ "buildDate": "Jun 09, 2016",
+ "dependencies": [
+ {
+ "name": "aws-java-sdk",
+ "optional": false,
+ "version": "1.10.45"
+ },
+ {
+ "name": "aws-credentials",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "roehrijn",
+ "email": "jan@roehrich.info",
+ "name": "Jan Roehrich"
+ },
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ }
+ ],
+ "excerpt": "Use Amazon ECS Containers to setup (docker-based) elastic build executors. ",
+ "gav": "com.cloudbees.jenkins.plugins:scalable-amazon-ecs:1.0",
+ "labels": [
+ "cluster",
+ "slaves"
+ ],
+ "name": "scalable-amazon-ecs",
+ "releaseTimestamp": "2016-06-09T11:24:20.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "ZUggObp2MwRS7uwaeGidQ2VdbME=",
+ "title": "Amazon EC2 Container Service plugin with autoscaling capabilities",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scalable-amazon-ecs/1.0/scalable-amazon-ecs.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+EC2+Container+Service+Plugin"
+ },
+ "schedule-build": {
+ "buildDate": "Sep 16, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "anderl86",
+ "email": "anderl86@hotmail.com",
+ "name": "Andreas K"
+ }
+ ],
+ "excerpt": "Adds capability to schedule a build for a later point in time. Asks the user for a date and time and adds the build to the build queue with the respective quiet period. ",
+ "gav": "org.jenkins-ci.plugins:schedule-build:0.3.4",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "schedule-build",
+ "previousTimestamp": "2014-07-27T13:08:30.00Z",
+ "previousVersion": "0.3.3",
+ "releaseTimestamp": "2015-09-16T20:42:10.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "LGhrSWiAz+/utE8YTTMfOOVDfBo=",
+ "title": "Schedule Build Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/schedule-build/0.3.4/schedule-build.hpi",
+ "version": "0.3.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Schedule+Build+Plugin"
+ },
+ "scm-api": {
+ "buildDate": "Sep 07, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin provides a new enhanced API for interacting with SCM systems. ",
+ "gav": "org.jenkins-ci.plugins:scm-api:1.3",
+ "labels": [],
+ "name": "scm-api",
+ "previousTimestamp": "2016-04-11T21:10:20.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-09-07T13:59:32.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "GSoCVeUDmMHHd4hvIx6GHlvzA1g=",
+ "title": "SCM API Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scm-api/1.3/scm-api.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCM+API+Plugin"
+ },
+ "scm-sqs": {
+ "buildDate": "Jul 08, 2016",
+ "dependencies": [
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.5"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "2.4.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mwaylabs",
+ "email": "jenkins.ios.bot@mwaysolutions.com",
+ "name": "M-Way Solutions GmbH"
+ }
+ ],
+ "excerpt": "Jenkins plugin that triggers builds on events from CodeCommit that are published via Amazon Simple Queue Service (SQS)",
+ "gav": "io.relution.jenkins:scm-sqs:1.4",
+ "labels": [
+ "scm-related",
+ "external",
+ "trigger"
+ ],
+ "name": "scm-sqs",
+ "previousTimestamp": "2016-06-16T18:46:20.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-07-08T12:19:20.00Z",
+ "requiredCore": "1.626",
+ "scm": "github.com",
+ "sha1": "+G8hxQtXO6oYpUjsfCHHmwYhFVY=",
+ "title": "AWS SQS Build Trigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scm-sqs/1.4/scm-sqs.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCM+SQS+Plugin"
+ },
+ "scm-sync-configuration": {
+ "buildDate": "Aug 03, 2016",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.5.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "fcamblor",
+ "email": "fcamblor+jenkinswiki@gmail.com",
+ "name": "Frederic Camblor"
+ },
+ {
+ "developerId": "bpaquet",
+ "email": "bertrand.paquet@gmail.com",
+ "name": "Bertrand Paquet"
+ },
+ {
+ "developerId": "rodrigc",
+ "email": "rodrigc@FreeBSD.org",
+ "name": "Craig Rodrigues"
+ }
+ ],
+ "excerpt": "Syncs configuration files to a SCM repository and tracks changes done to them ",
+ "gav": "org.jenkins-ci.plugins:scm-sync-configuration:0.0.10",
+ "labels": [
+ "misc"
+ ],
+ "name": "scm-sync-configuration",
+ "previousTimestamp": "2015-12-11T20:17:58.00Z",
+ "previousVersion": "0.0.9",
+ "releaseTimestamp": "2016-08-03T18:16:28.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "NvDkIX8aawunxOhwVhM2xAHM7h4=",
+ "title": "SCM Sync Configuration Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scm-sync-configuration/0.0.10/scm-sync-configuration.hpi",
+ "version": "0.0.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCM+Sync+configuration+plugin"
+ },
+ "scm2job": {
+ "buildDate": "Aug 03, 2016",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.39"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "1.1.17"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "kstutz",
+ "email": "kathi.stutz@1und1.de",
+ "name": "Kathi Stutz"
+ }
+ ],
+ "excerpt": "Finds jobs by their SCM URL. ",
+ "gav": "org.jenkins-ci.plugins:scm2job:2.5",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "scm2job",
+ "previousTimestamp": "2013-09-27T16:27:50.00Z",
+ "previousVersion": "2.4",
+ "releaseTimestamp": "2016-08-03T16:16:54.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "Lr59KZXDP9MRHgkPorHNtjE2Jt4=",
+ "title": "Jenkins SCM to job plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scm2job/2.5/scm2job.hpi",
+ "version": "2.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCM2Job+Plugin"
+ },
+ "scons": {
+ "buildDate": "May 24, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gbois@dev.java.net",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin allows Hudson to invoke <a href='http://www.scons.org/'>SCons</a> build script as the main build step.",
+ "gav": "com.thalesgroup.jenkins-ci.plugins:scons:0.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "scons",
+ "previousTimestamp": "2011-03-06T20:12:56.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2011-05-24T01:37:02.00Z",
+ "requiredCore": "1.413",
+ "scm": "github.com",
+ "sha1": "KobvAmnJkmEayv9IHUOY9PCqod8=",
+ "title": "Jenkins SCons plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scons/0.4/scons.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCons+Plugin"
+ },
+ "scoring-load-balancer": {
+ "buildDate": "Nov 07, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ikedam",
+ "name": "IKEDA Yasuyuki"
+ }
+ ],
+ "excerpt": "Decides a build run on which node by scoring nodes.",
+ "gav": "jp.ikedam.jenkins.plugins:scoring-load-balancer:1.0.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "scoring-load-balancer",
+ "previousTimestamp": "2013-09-07T17:06:28.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2013-11-07T22:39:32.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "ocngswS8/r/498VJ2HNB8eBdCiU=",
+ "title": "Scoring Load Balancer",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scoring-load-balancer/1.0.1/scoring-load-balancer.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Scoring+Load+Balancer+plugin"
+ },
+ "scoverage": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "shanbin",
+ "email": "shanbin.wang@gmail.com",
+ "name": "Shanbin Wang"
+ }
+ ],
+ "excerpt": "This plugin allows you to publish <a href='https://github.com/scoverage'>scoverage</a> results in Jenkins as a trend graph. ",
+ "gav": "org.jenkins-ci.plugins:scoverage:1.3.1",
+ "labels": [
+ "report"
+ ],
+ "name": "scoverage",
+ "previousTimestamp": "2015-11-01T17:07:28.00Z",
+ "previousVersion": "1.3.0",
+ "releaseTimestamp": "2016-10-03T12:21:32.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "EHl9Efs7RoQBHcWn4QoVlldlleo=",
+ "title": "Scoverage Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scoverage/1.3.1/scoverage.hpi",
+ "version": "1.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Scoverage+Plugin"
+ },
+ "scp": {
+ "buildDate": "Jan 07, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ramazanyich2",
+ "name": "Ramil Israfilov"
+ }
+ ],
+ "excerpt": "This plugin uploads build artifacts to repository sites using SCP (SSH) protocol.",
+ "gav": "org.jvnet.hudson.plugins:scp:1.8",
+ "labels": [
+ "upload"
+ ],
+ "name": "scp",
+ "previousTimestamp": "2010-11-20T10:12:00.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2011-01-07T00:05:58.00Z",
+ "requiredCore": "1.389",
+ "scm": "github.com",
+ "sha1": "9mS+ZOeydNbMV07rXC62xNFDwEw=",
+ "title": "Hudson SCP publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scp/1.8/scp.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCP+plugin"
+ },
+ "screenshot": {
+ "buildDate": "Dec 01, 2009",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tom"
+ }
+ ],
+ "excerpt": "Shows a screenshot of a running build.",
+ "gav": "org.jvnet.hudson.plugins:screenshot:1.1",
+ "labels": [
+ "ui",
+ "buildwrapper"
+ ],
+ "name": "screenshot",
+ "previousTimestamp": "2009-11-28T21:18:14.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2009-12-01T21:06:30.00Z",
+ "requiredCore": "1.335",
+ "scm": "svn.dev.java.net",
+ "sha1": "14C0JllgeK68CdJb7vPxF8cPu6Y=",
+ "title": "Hudson Screenshot plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/screenshot/1.1/screenshot.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Screenshot+Plugin"
+ },
+ "script-realm": {
+ "buildDate": "Jun 24, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "imod",
+ "email": "-",
+ "name": "Dominik Bartholdi"
+ }
+ ],
+ "excerpt": "This plugin allows you to use a user-written custom script to authenticate the username and password",
+ "gav": "org.jvnet.hudson.plugins:script-realm:1.5",
+ "labels": [
+ "user"
+ ],
+ "name": "script-realm",
+ "previousTimestamp": "2011-07-29T19:42:08.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2012-06-24T18:57:46.00Z",
+ "requiredCore": "1.330",
+ "scm": "github.com",
+ "sha1": "d4ee6ZzSh4OhfkcyY80ZB+0BAR0=",
+ "title": "Security Realm by custom script",
+ "url": "http://updates.jenkins-ci.org/download/plugins/script-realm/1.5/script-realm.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Script+Security+Realm"
+ },
+ "script-scm": {
+ "buildDate": "Dec 10, 2015",
+ "dependencies": [
+ {
+ "name": "ant",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vimil",
+ "name": "vimil"
+ }
+ ],
+ "excerpt": "The Script SCM plugin allows SCM polling to be managed using scripts.",
+ "gav": "org.jenkins-ci.plugins:script-scm:1.18",
+ "labels": [
+ "scm"
+ ],
+ "name": "script-scm",
+ "previousTimestamp": "2015-09-28T14:04:36.00Z",
+ "previousVersion": "1.17",
+ "releaseTimestamp": "2015-12-10T13:07:08.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "0Ob4MPZf5Rtz3FbM+hEy6hqz89s=",
+ "title": "Script SCM Plug-In",
+ "url": "http://updates.jenkins-ci.org/download/plugins/script-scm/1.18/script-scm.hpi",
+ "version": "1.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Script+SCM+Plugin"
+ },
+ "script-security": {
+ "buildDate": "Sep 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Allows Jenkins administrators to control what in-process scripts can be run by less-privileged users.",
+ "gav": "org.jenkins-ci.plugins:script-security:1.23",
+ "labels": [
+ "security"
+ ],
+ "name": "script-security",
+ "previousTimestamp": "2016-08-15T13:10:50.00Z",
+ "previousVersion": "1.22",
+ "releaseTimestamp": "2016-09-21T14:06:36.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "6fKIFpS+31MshsK9sSkSpwdAnE0=",
+ "title": "Script Security Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/script-security/1.23/script-security.hpi",
+ "version": "1.23",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Script+Security+Plugin"
+ },
+ "scripted-cloud-plugin": {
+ "buildDate": "Oct 12, 2012",
+ "dependencies": [
+ {
+ "name": "ivy",
+ "optional": true,
+ "version": "1.19"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "hisatti77",
+ "email": "hisatti77@gmail.com",
+ "name": "Satinder Singh"
+ }
+ ],
+ "excerpt": "Add script based slave VM management to Jenkins to use virtual machines as slaves ",
+ "gav": "org.jenkins-ci.plugins:scripted-cloud-plugin:0.12",
+ "labels": [
+ "slaves"
+ ],
+ "name": "scripted-cloud-plugin",
+ "previousTimestamp": "2012-10-05T21:32:22.00Z",
+ "previousVersion": "0.11",
+ "releaseTimestamp": "2012-10-12T17:47:14.00Z",
+ "requiredCore": "1.464",
+ "scm": "github.com",
+ "sha1": "sy4QBfyjx6SJda+uayHVfK0gt0M=",
+ "title": "scripted Cloud Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scripted-cloud-plugin/0.12/scripted-cloud-plugin.hpi",
+ "version": "0.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Scripted+Cloud+plugin"
+ },
+ "scriptler": {
+ "buildDate": "Oct 28, 2015",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "git-server",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "imod",
+ "email": "-",
+ "name": "Dominik Bartholdi"
+ }
+ ],
+ "excerpt": "Scriptler allows you to store/edit groovy scripts and execute it on any of the slaves/nodes... no need to copy/paste groovy code anymore. ",
+ "gav": "org.jenkins-ci.plugins:scriptler:2.9",
+ "labels": [
+ "slaves",
+ "misc",
+ "groovy-related"
+ ],
+ "name": "scriptler",
+ "previousTimestamp": "2014-02-22T11:38:12.00Z",
+ "previousVersion": "2.7",
+ "releaseTimestamp": "2015-10-28T14:29:18.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "GoLNpkmpGnIMn8r3UvNZAukHhBY=",
+ "title": "Scriptler",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scriptler/2.9/scriptler.hpi",
+ "version": "2.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Scriptler+Plugin"
+ },
+ "scripttrigger": {
+ "buildDate": "Mar 22, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "ScriptTrigger makes it possible to monitor an environment with a script.",
+ "gav": "org.jenkins-ci.plugins:scripttrigger:0.34",
+ "labels": [
+ "trigger"
+ ],
+ "name": "scripttrigger",
+ "previousTimestamp": "2016-03-06T01:23:56.00Z",
+ "previousVersion": "0.33",
+ "releaseTimestamp": "2016-03-22T22:32:28.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "rKUiVSV4P1x3TpS8L/JaqRrd5Hg=",
+ "title": "ScriptTrigger Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/scripttrigger/0.34/scripttrigger.hpi",
+ "version": "0.34",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ScriptTrigger+Plugin"
+ },
+ "search-all-results-plugin": {
+ "buildDate": "Jun 25, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plugin enables to show all searched results (not only suggestion) and categorization. ",
+ "gav": "org.jenkins-ci.plugins:search-all-results-plugin:1.0",
+ "labels": [],
+ "name": "search-all-results-plugin",
+ "releaseTimestamp": "2012-06-25T09:36:52.00Z",
+ "requiredCore": "1.471",
+ "scm": "github.com",
+ "sha1": "qG6sd4kHUFvw52HatIL7tN6wsx0=",
+ "title": "Search all results",
+ "url": "http://updates.jenkins-ci.org/download/plugins/search-all-results-plugin/1.0/search-all-results-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/All+searched+results+plugin"
+ },
+ "secondary-timestamper-plugin": {
+ "buildDate": "Mar 14, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "michael1010",
+ "email": "fussball89@online.de",
+ "name": "Michael"
+ }
+ ],
+ "excerpt": "This plugin enables the user to display a second timestamp in the build history of a job. This is very helpful in case you have users and slaves in different timezones. The timestamp of the second timezone will be set as a description to the job runs. The timezone for the second timestamp can be configured in the job configuration. ",
+ "gav": "org.jenkins-ci.plugins:secondary-timestamper-plugin:1.1",
+ "labels": [
+ "post-build"
+ ],
+ "name": "secondary-timestamper-plugin",
+ "previousTimestamp": "2015-03-14T11:48:50.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-03-14T12:01:58.00Z",
+ "requiredCore": "1.560",
+ "scm": "github.com",
+ "sha1": "dju6NPGgszIHPLzb2DqLlbuAgd0=",
+ "title": "Jenkins secondary timestamper plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/secondary-timestamper-plugin/1.1/secondary-timestamper-plugin.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/secondary-timestamper-plugin"
+ },
+ "sectioned-view": {
+ "buildDate": "Nov 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tbingaman",
+ "email": "timothy.bingaman@gmail.com",
+ "name": "Timothy Bingaman"
+ }
+ ],
+ "excerpt": "This plugin provides a new view implementation that can be divided into sections. Each section can display different information about the selected jobs. An extension point is also provided to define new types of sections.",
+ "gav": "org.jenkins-ci.plugins:sectioned-view:1.20",
+ "labels": [
+ "ui"
+ ],
+ "name": "sectioned-view",
+ "previousTimestamp": "2015-07-10T09:26:32.00Z",
+ "previousVersion": "1.19",
+ "releaseTimestamp": "2015-11-18T09:48:40.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "Hcqz99+MBtX7qubax96OlVKzJ68=",
+ "title": "Sectioned View Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sectioned-view/1.20/sectioned-view.hpi",
+ "version": "1.20",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sectioned+View+Plugin"
+ },
+ "secure-requester-whitelist": {
+ "buildDate": "Dec 12, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Allows an administrator to specify sites trusted to make JSONP or primitive-XPath REST API requests.",
+ "gav": "org.jenkins-ci.plugins:secure-requester-whitelist:1.0",
+ "labels": [
+ "security"
+ ],
+ "name": "secure-requester-whitelist",
+ "releaseTimestamp": "2013-12-12T15:36:30.00Z",
+ "requiredCore": "1.537",
+ "scm": "github.com",
+ "sha1": "ME/zDI2t6So0h06JA1KTpdeexIw=",
+ "title": "Secure Requester Whitelist Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/secure-requester-whitelist/1.0/secure-requester-whitelist.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Secure+Requester+Whitelist+Plugin"
+ },
+ "seed": {
+ "buildDate": "Oct 04, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-auth",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": false,
+ "version": "5.11"
+ },
+ {
+ "name": "description-setter",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "parameterized-trigger",
+ "optional": false,
+ "version": "2.26"
+ },
+ {
+ "name": "job-dsl",
+ "optional": false,
+ "version": "1.50"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "dcoraboeuf",
+ "email": "damien.coraboeuf@gmail.com",
+ "name": "Damien Coraboeuf"
+ }
+ ],
+ "excerpt": "The Seed project aims to help automating the generation and management of pipelines for branches of a project in Jenkins. ",
+ "gav": "org.jenkins-ci.plugins:seed:2.1.2",
+ "labels": [],
+ "name": "seed",
+ "previousTimestamp": "2016-09-21T13:04:48.00Z",
+ "previousVersion": "2.1.1",
+ "releaseTimestamp": "2016-10-04T14:57:18.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "B4pSWbOLWVLdB8TJmoepaqa46Qw=",
+ "title": "Seed Jenkins plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/seed/2.1.2/seed.hpi",
+ "version": "2.1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Seed+Plugin"
+ },
+ "selected-tests-executor": {
+ "buildDate": "Jan 22, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tamarca",
+ "name": "Tamar Camus"
+ },
+ {
+ "name": "Moshe Bonen"
+ }
+ ],
+ "excerpt": "This plugin allows you to choose specific tests you want to run. ",
+ "gav": "org.jenkins-ci.plugins:selected-tests-executor:1.3.3",
+ "labels": [
+ "parameter"
+ ],
+ "name": "selected-tests-executor",
+ "previousTimestamp": "2014-01-18T11:10:36.00Z",
+ "previousVersion": "1.3.2",
+ "releaseTimestamp": "2014-01-22T23:08:40.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "8b/iGJe+N3KXIuYf2E0+RIjfB1o=",
+ "title": "Tests Selector",
+ "url": "http://updates.jenkins-ci.org/download/plugins/selected-tests-executor/1.3.3/selected-tests-executor.hpi",
+ "version": "1.3.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tests+Selector+Plugin"
+ },
+ "selection-tasks-plugin": {
+ "buildDate": "Feb 28, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nzhelyakov",
+ "email": "nzhelyakov@gmail.com",
+ "name": "Nikita Zhelyakov"
+ },
+ {
+ "email": "tzolotuhin@gmail.com",
+ "name": "Timur Zolotuhin"
+ }
+ ],
+ "excerpt": "This plugin adds new variable. You may select several tasks (for example, Selenium tests) for run. ",
+ "gav": "org.jvnet.hudson.plugins:selection-tasks-plugin:1.0",
+ "labels": [
+ "must-be-labeled"
+ ],
+ "name": "selection-tasks-plugin",
+ "releaseTimestamp": "2011-02-28T19:18:24.00Z",
+ "requiredCore": "1.366",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "C6EJvWUCaKmzwjSXb8sl642HveE=",
+ "title": "Selection tasks plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/selection-tasks-plugin/1.0/selection-tasks-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selection+Tasks+Plugin"
+ },
+ "selenium": {
+ "buildDate": "Jun 09, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "darkrift",
+ "email": "lavoie.richard@gmail.com",
+ "name": "Richard Lavoie"
+ },
+ {
+ "developerId": "mobrockers",
+ "email": "mobrockers@gmail.com",
+ "name": "Rouke Broersma"
+ }
+ ],
+ "excerpt": "This plugin turns your Jenkins cluster into a <a href='http://code.google.com/p/selenium/wiki/Grid2'>Selenium2 Grid</a> cluster",
+ "gav": "org.jenkins-ci.plugins:selenium:2.53.1",
+ "labels": [
+ "cluster"
+ ],
+ "name": "selenium",
+ "previousTimestamp": "2016-04-20T19:15:24.00Z",
+ "previousVersion": "2.53.0",
+ "releaseTimestamp": "2016-06-09T19:51:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "LsqPhlOH2WhrhxHPFOeFpqoa2xQ=",
+ "title": "Jenkins Selenium Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/selenium/2.53.1/selenium.hpi",
+ "version": "2.53.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selenium+Plugin"
+ },
+ "selenium-aes": {
+ "buildDate": "Jan 03, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "onozaty"
+ }
+ ],
+ "excerpt": "This plugin is for continuous regression test by <a href='http://www.enjoyxstudy.com/selenium/autoexec/index.en.html'>Selenium Auto Exec Server (AES)</a>.",
+ "gav": "org.jvnet.hudson.plugins:selenium-aes:0.5",
+ "labels": [
+ "builder",
+ "report"
+ ],
+ "name": "selenium-aes",
+ "previousTimestamp": "2010-02-05T09:56:38.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2011-01-03T17:28:08.00Z",
+ "requiredCore": "1.391",
+ "scm": "svn.java.net",
+ "sha1": "LGfTbg0/TYuS3CwT6y6wMOV5PBw=",
+ "title": "Selenium Auto Exec Server(AES) plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/selenium-aes/0.5/selenium-aes.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selenium+AES+Plugin"
+ },
+ "selenium-axis": {
+ "buildDate": "Sep 24, 2014",
+ "dependencies": [],
+ "developers": [],
+ "excerpt": "Creates an axis based on a local Selenium grid and also build against the SauceLabs Selenium capability at the same time. Both components rebuild before each build to take advantage of any new capabilities. The Selenium grid uses all capabilities available and the SauceLab one a random subset, which can be configured or disabled. ",
+ "gav": "org.jenkins-ci.plugins:selenium-axis:0.0.6",
+ "labels": [
+ "parameter"
+ ],
+ "name": "selenium-axis",
+ "previousTimestamp": "2014-09-23T22:05:50.00Z",
+ "previousVersion": "0.0.5",
+ "releaseTimestamp": "2014-09-24T21:36:44.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "HiGhB590q1C7+GRBywrCDM5Y4kg=",
+ "title": "Selenium Capability Axis",
+ "url": "http://updates.jenkins-ci.org/download/plugins/selenium-axis/0.0.6/selenium-axis.hpi",
+ "version": "0.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selenium+Axis+Plugin"
+ },
+ "selenium-builder": {
+ "buildDate": "Apr 29, 2015",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.467"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rossrowe",
+ "name": "Ross Rowe"
+ }
+ ],
+ "excerpt": "Invokes <a href='http://sebuilder.github.com/se-builder/'>Selenium Builder</a> scripts from a Jenkins build",
+ "gav": "org.jenkins-ci.plugins:selenium-builder:1.14",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "selenium-builder",
+ "previousTimestamp": "2015-04-22T21:33:24.00Z",
+ "previousVersion": "1.13",
+ "releaseTimestamp": "2015-04-29T20:10:32.00Z",
+ "requiredCore": "1.439",
+ "scm": "github.com",
+ "sha1": "zyamWCVyGMHDXjzjrk6EaadG/NU=",
+ "title": "Jenkins Selenium Builder plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/selenium-builder/1.14/selenium-builder.hpi",
+ "version": "1.14",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selenium+Builder+Plugin"
+ },
+ "seleniumhq": {
+ "buildDate": "Jul 16, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "pascal_martin",
+ "name": "Pascal Martin"
+ }
+ ],
+ "excerpt": "This plugin allows you to run and load HTML Selenese suite result generate by Selenium Server from <a href='http://seleniumhq.org/'>Seleniumhq</a>. Jenkins will generate the trend report of test result. The Seleniumhq plug in can be <a href='http://mirrors.jenkins-ci.org/plugins/seleniumhq/'>downloaded here</a>.",
+ "gav": "org.jvnet.hudson.plugins:seleniumhq:0.4",
+ "labels": [
+ "builder",
+ "report"
+ ],
+ "name": "seleniumhq",
+ "previousTimestamp": "2010-07-10T20:46:32.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2010-07-16T15:16:38.00Z",
+ "requiredCore": "1.366",
+ "scm": "svn.dev.java.net",
+ "sha1": "qhJVAttsNzozQT2TWKgmi9LJ1+M=",
+ "title": "Hudson Seleniumhq plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/seleniumhq/0.4/seleniumhq.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Seleniumhq+Plugin"
+ },
+ "seleniumhtmlreport": {
+ "buildDate": "Oct 11, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "m211",
+ "name": "Marco Machmer"
+ }
+ ],
+ "excerpt": "This plugin visualizes the results of selenium tests. ",
+ "gav": "org.jenkins-ci.plugins:seleniumhtmlreport:1.0",
+ "labels": [
+ "report"
+ ],
+ "name": "seleniumhtmlreport",
+ "previousTimestamp": "2011-11-03T09:03:10.00Z",
+ "previousVersion": "0.94",
+ "releaseTimestamp": "2015-10-11T14:29:46.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "7imwTlCL1HZUR1/L1hJWv2LsiF4=",
+ "title": "Selenium HTML report",
+ "url": "http://updates.jenkins-ci.org/download/plugins/seleniumhtmlreport/1.0/seleniumhtmlreport.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/seleniumhtmlreport+Plugin"
+ },
+ "seleniumrc-plugin": {
+ "buildDate": "Mar 02, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nzhelyakov",
+ "email": "nzhelyakov@gmail.com",
+ "name": "Nikita Zhelyakov"
+ }
+ ],
+ "excerpt": "This plugin allows you to create Selenium server instance for each project build. ",
+ "gav": "org.jvnet.hudson.plugins:seleniumrc-plugin:1.0",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "seleniumrc-plugin",
+ "releaseTimestamp": "2011-03-02T00:27:40.00Z",
+ "requiredCore": "1.366",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "ULZBFhnLxv1sGK6Rnojt6mQzXAs=",
+ "title": "SeleniumRC plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/seleniumrc-plugin/1.0/seleniumrc-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SeleniumRC+Plugin"
+ },
+ "selfie-trigger-plugin": {
+ "buildDate": "Apr 08, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "abhyrama",
+ "email": "abhyrama@gmail.com",
+ "name": "Abhirama Bhat"
+ }
+ ],
+ "excerpt": "Selfie trigger plugin enables build to trigger itself after a configured delay.",
+ "gav": "org.jenkinsci.plugins:selfie-trigger-plugin:1.0",
+ "labels": [
+ "trigger"
+ ],
+ "name": "selfie-trigger-plugin",
+ "releaseTimestamp": "2015-04-08T11:54:16.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "ngz/JjVbXdmqRNXUraAffjZigos=",
+ "title": "Selfie - Build trigger plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/selfie-trigger-plugin/1.0/selfie-trigger-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selfie+Trigger+Plugin"
+ },
+ "semantic-versioning-plugin": {
+ "buildDate": "Nov 30, 2015",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ciroque",
+ "email": "scalawagz@outlook.com",
+ "name": "Steve Wagner"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:semantic-versioning-plugin:1.10",
+ "labels": [
+ "listview-column",
+ "ui",
+ "buildwrapper"
+ ],
+ "name": "semantic-versioning-plugin",
+ "previousTimestamp": "2015-11-25T15:56:22.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2015-11-30T20:09:08.00Z",
+ "requiredCore": "1.614",
+ "scm": "github.com",
+ "sha1": "St3hrHUZAboc4tzaFrMy4cF8Ocw=",
+ "title": "Semantic Versioning Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/semantic-versioning-plugin/1.10/semantic-versioning-plugin.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/semantic-versioning-plugin"
+ },
+ "send-stacktrace-to-eclipse-plugin": {
+ "buildDate": "Sep 16, 2014",
+ "dependencies": [
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.7.2-1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "cbos",
+ "email": "cbos.ec@gmail.com",
+ "name": "Cees Bos"
+ }
+ ],
+ "excerpt": "This plugin enables you to push a stacktrace to the Eclipse <a href='http://cbos.github.io/OpenFromExternalEvent/'>OpenFromExternalEvent plugin</a> ",
+ "gav": "org.jenkins-ci.plugins:send-stacktrace-to-eclipse-plugin:1.7",
+ "labels": [
+ "external"
+ ],
+ "name": "send-stacktrace-to-eclipse-plugin",
+ "previousTimestamp": "2014-09-16T12:01:50.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2014-09-16T12:04:40.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "ZWXzhNsH5P4ltEPTHUqeDOiOlA0=",
+ "title": "Send stacktrace to Eclipse plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/send-stacktrace-to-eclipse-plugin/1.7/send-stacktrace-to-eclipse-plugin.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Send+stacktrace+to+eclipse+plugin"
+ },
+ "serenity": {
+ "buildDate": "Sep 03, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "michael.couck",
+ "email": "michael.couck@gmail.com",
+ "name": "Michael Couck"
+ }
+ ],
+ "excerpt": "Serenity is a Java code coverage and code metrics library, tool and Jenkins plugin, with dynamic byte code instrumentation, and introducing continuous profiling.",
+ "gav": "org.jenkins-ci.plugins:serenity:1.2",
+ "labels": [
+ "report"
+ ],
+ "name": "serenity",
+ "previousTimestamp": "2016-06-13T15:05:12.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-09-03T17:12:36.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "UWWr+U+AQgbyOE1aCGH2J0a1sq4=",
+ "title": "Jenkins Serenity plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/serenity/1.2/serenity.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Serenity+Plugin"
+ },
+ "sfee": {
+ "buildDate": "Aug 12, 2010",
+ "dependencies": [
+ {
+ "name": "description-setter",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.361"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "awpyv"
+ }
+ ],
+ "excerpt": "Authenticate users and publish build artifacts relying on a <a href='https://sfee.open.collab.net/sf/sfmain/do/home'>Collabnet Source Forge Enterprise Edition (SFEE)</a> server.",
+ "gav": "org.jvnet.hudson.plugins:sfee:1.0.4",
+ "labels": [
+ "external",
+ "upload",
+ "user"
+ ],
+ "name": "sfee",
+ "previousTimestamp": "2009-10-19T12:57:10.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2010-08-12T11:57:48.00Z",
+ "requiredCore": "1.361",
+ "scm": "svn.dev.java.net",
+ "sha1": "FcCj+/e5eOeKMwYXCZhDLCu5dzM=",
+ "title": "SFEE Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sfee/1.0.4/sfee.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SFEE+Plugin"
+ },
+ "shared-objects": {
+ "buildDate": "Apr 14, 2013",
+ "dependencies": [
+ {
+ "name": "envinject",
+ "optional": false,
+ "version": "1.84"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.444"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to share objects (script file, source file, tool installation, ...) from an environment in Jenkins and manage dynamically these objects through environment variables with the [JENKINS:EnvInject Plugin] during the job build.",
+ "gav": "org.jenkins-ci.plugins:shared-objects:0.44",
+ "labels": [],
+ "name": "shared-objects",
+ "previousTimestamp": "2013-01-31T23:19:00.00Z",
+ "previousVersion": "0.43",
+ "releaseTimestamp": "2013-04-14T15:14:32.00Z",
+ "requiredCore": "1.444",
+ "scm": "github.com",
+ "sha1": "RlpTQjTY9VArhSPZfEGORneQVJU=",
+ "title": "Shared Objects Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/shared-objects/0.44/shared-objects.hpi",
+ "version": "0.44",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SharedObjects+Plugin"
+ },
+ "shared-workspace": {
+ "buildDate": "Jun 26, 2015",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sapone",
+ "email": "smylnikov@ac-sw.com",
+ "name": "Sergey Mylnikov"
+ },
+ {
+ "developerId": "VestniK",
+ "email": "sir.vestnik@gmail.com",
+ "name": "Sergey Vidyuk"
+ }
+ ],
+ "excerpt": "This plugin allows to share workspaces by Jenkins jobs with the same SCM repos. ",
+ "gav": "org.jenkins-ci.plugins:shared-workspace:1.0.2",
+ "labels": [
+ "scm"
+ ],
+ "name": "shared-workspace",
+ "previousTimestamp": "2013-08-12T09:25:36.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2015-06-26T14:16:42.00Z",
+ "requiredCore": "1.576",
+ "scm": "github.com",
+ "sha1": "wwvo44jiGaKIaSfyAewQeIWJByA=",
+ "title": "Shared Workspace",
+ "url": "http://updates.jenkins-ci.org/download/plugins/shared-workspace/1.0.2/shared-workspace.hpi",
+ "version": "1.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Shared+workspace+plugin"
+ },
+ "shelve-project-plugin": {
+ "buildDate": "Apr 18, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bpatterson",
+ "email": "patterson.ben@gmail.com",
+ "name": "Ben Patterson"
+ },
+ {
+ "developerId": "ashlux",
+ "email": "ashlux@gmail.com",
+ "name": "Ash Lux"
+ }
+ ],
+ "excerpt": "This plugin lets you shelve projects so that they can easily be resurrected.",
+ "gav": "org.jenkins-ci.plugins:shelve-project-plugin:1.5",
+ "labels": [
+ "ui",
+ "misc"
+ ],
+ "name": "shelve-project-plugin",
+ "previousTimestamp": "2013-07-30T01:18:18.00Z",
+ "previousVersion": "1.4.4",
+ "releaseTimestamp": "2014-04-18T08:40:10.00Z",
+ "requiredCore": "1.532.1",
+ "scm": "github.com",
+ "sha1": "cwjaYDbK8l2Q3BnIbR1d2xlYsPw=",
+ "title": "Shelve Project Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/shelve-project-plugin/1.5/shelve-project-plugin.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Shelve+Project+Plugin"
+ },
+ "shiningpanda": {
+ "buildDate": "Jun 25, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "omansion",
+ "email": "olivier.mansion@shiningpanda.com",
+ "name": "Olivier Mansion"
+ },
+ {
+ "developerId": "atabary",
+ "email": "alexis.tabary@shiningpanda.com",
+ "name": "Alexis Tabary"
+ }
+ ],
+ "excerpt": "This plugin adds Python support to Jenkins with some useful builders (Python builder, <a href='http://pypi.python.org/pypi/virtualenv'>virtualenv</a> builder, <a href='https://bitbucket.org/hpk42/tox'>tox</a> builder...) and the ability to use a Python axis in multi-configuration projects (for testing on multiple versions of Python).",
+ "gav": "org.jenkins-ci.plugins:shiningpanda:0.23",
+ "labels": [
+ "builder"
+ ],
+ "name": "shiningpanda",
+ "previousTimestamp": "2015-08-28T21:01:28.00Z",
+ "previousVersion": "0.22",
+ "releaseTimestamp": "2016-06-25T14:17:08.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "tgSyzZDx+PrzdCS1U267Z/VfCtM=",
+ "title": "ShiningPanda Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/shiningpanda/0.23/shiningpanda.hpi",
+ "version": "0.23",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ShiningPanda+Plugin"
+ },
+ "short-workspace-path": {
+ "buildDate": "Aug 28, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "Use shallow directory hierarchy for build workspaces to avoid build failures on filesystems with constrained path length.",
+ "gav": "org.jenkins-ci.plugins:short-workspace-path:0.1",
+ "labels": [],
+ "name": "short-workspace-path",
+ "releaseTimestamp": "2015-08-28T08:56:46.00Z",
+ "requiredCore": "1.554.1",
+ "scm": "github.com",
+ "sha1": "/4JzD4AYDkwIPz0W+LZgBtR7bRw=",
+ "title": "Short Workspace Path Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/short-workspace-path/0.1/short-workspace-path.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Short+Workspace+Path+Plugin"
+ },
+ "show-build-parameters": {
+ "buildDate": "Mar 06, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "petehayes",
+ "name": "Peter Hayes"
+ }
+ ],
+ "excerpt": "Show the parameters used for a build on the main build page ",
+ "gav": "org.jenkins-ci.plugins:show-build-parameters:1.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "show-build-parameters",
+ "releaseTimestamp": "2011-03-06T10:20:06.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "ae5bAwfMkHzoDBgsyAA1yIMRucA=",
+ "title": "Show Build Parameters plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/show-build-parameters/1.0/show-build-parameters.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Show+Build+Parameters+Plugin"
+ },
+ "sicci_for_xcode": {
+ "buildDate": "Feb 09, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bene",
+ "email": "benedikt@biallowons.de",
+ "name": "Benedikt Biallowons"
+ }
+ ],
+ "excerpt": "This plugin integrates support for Xcode projects.",
+ "gav": "org.jvnet.hudson.plugins:sicci_for_xcode:0.0.8",
+ "labels": [
+ "builder",
+ "ios"
+ ],
+ "name": "sicci_for_xcode",
+ "previousTimestamp": "2011-02-01T12:56:54.00Z",
+ "previousVersion": "0.0.7",
+ "releaseTimestamp": "2011-02-09T09:20:04.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "OWTxzIrYsIkdjE+phvc1GQRkwqI=",
+ "title": "SICCI for Xcode Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sicci_for_xcode/0.0.8/sicci_for_xcode.hpi",
+ "version": "0.0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SICCI+for+Xcode+Plugin"
+ },
+ "sidebar-link": {
+ "buildDate": "Apr 22, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mindless",
+ "name": "Alan Harder"
+ }
+ ],
+ "excerpt": "Add links in the sidebar of the Jenkins main page, view tabs and project pages.",
+ "gav": "org.jenkins-ci.plugins:sidebar-link:1.7",
+ "labels": [
+ "ui"
+ ],
+ "name": "sidebar-link",
+ "previousTimestamp": "2011-07-24T08:26:02.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2015-04-22T11:55:32.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "HWmXDaL2ubKIwZBgWFeYAE15eh4=",
+ "title": "Sidebar Link",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sidebar-link/1.7/sidebar-link.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sidebar-Link+Plugin"
+ },
+ "sidebar-update-notification": {
+ "buildDate": "Jun 19, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "asbachb",
+ "name": "Benjamin Asbach"
+ }
+ ],
+ "excerpt": "This plugin adds notifications to the sidebar about an update for jenkins or its installed plugins. ",
+ "gav": "com.exxeta.jenkins.plugins:sidebar-update-notification:1.1.0",
+ "labels": [
+ "notifier",
+ "misc",
+ "ui"
+ ],
+ "name": "sidebar-update-notification",
+ "previousTimestamp": "2015-02-03T00:26:40.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2015-06-19T00:02:10.00Z",
+ "requiredCore": "1.500",
+ "scm": "github.com",
+ "sha1": "XjPHMA5/zTcD0jILEqY3hdVHZHg=",
+ "title": "Sidebar Update Notification Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sidebar-update-notification/1.1.0/sidebar-update-notification.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sidebar+Update+Notification+Plugin"
+ },
+ "signal-killer": {
+ "buildDate": "Feb 10, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ }
+ ],
+ "excerpt": "&amp;nbsp; This plugin extends ProcessKiller extension point and sends signal (currentlly SIGKILL) to given job via native GNU C library call. &amp;nbsp;&amp;nbsp;",
+ "gav": "hudson.plugins.signal_killer:signal-killer:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "signal-killer",
+ "releaseTimestamp": "2011-02-10T14:29:14.00Z",
+ "requiredCore": "1.391",
+ "scm": "github.com",
+ "sha1": "mJIImiIigV6xPXAg5QdKk3CGBlM=",
+ "title": "Signal killer",
+ "url": "http://updates.jenkins-ci.org/download/plugins/signal-killer/1.0/signal-killer.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Signal+killer"
+ },
+ "silk-performer-plugin": {
+ "buildDate": "Jan 12, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "thomaskr",
+ "email": "silkperformer@microfocus.com",
+ "name": "Silk Performer Team"
+ }
+ ],
+ "excerpt": "Allows users to execute a Silk Performer load test: <a href='http://borland.com/en-GB/Products/Software-Testing/Performance-Testing/Silk-Performer'>Silk Performer</a> {excerpt} ",
+ "gav": "org.jenkins-ci.plugins:silk-performer-plugin:1.0.5",
+ "labels": [
+ "external"
+ ],
+ "name": "silk-performer-plugin",
+ "previousTimestamp": "2016-01-12T13:17:48.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2016-01-12T13:21:38.00Z",
+ "requiredCore": "1.628",
+ "scm": "github.com",
+ "sha1": "OgVeI/acTsCr76nTociUu1csyp4=",
+ "title": "Silk Performer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/silk-performer-plugin/1.0.5/silk-performer-plugin.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Silk+Performer+Plugin"
+ },
+ "simple-build-for-pipeline": {
+ "buildDate": "Feb 26, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-aggregator",
+ "optional": false,
+ "version": "1.13"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.13"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "docker-workflow",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mneale",
+ "email": "mneale@cloudbees.com",
+ "name": "Michael Neale"
+ }
+ ],
+ "excerpt": "This (preview release) plugin provides a Pipeline DSL extension that should be familiar to people used to things like travisci. It is declarative and takes care of common tasks. It works well with pipeline-as-code and docker. ",
+ "gav": "org.jenkins-ci.plugins:simple-build-for-pipeline:0.2",
+ "labels": [],
+ "name": "simple-build-for-pipeline",
+ "previousTimestamp": "2016-02-24T15:49:46.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2016-02-26T15:46:00.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "VNnnjN7CLrQsmf63J05r38fkNeo=",
+ "title": "Simple Build DSL for Pipeline",
+ "url": "http://updates.jenkins-ci.org/download/plugins/simple-build-for-pipeline/0.2/simple-build-for-pipeline.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Simple+Build+For+Pipeline+Plugin"
+ },
+ "simple-parameterized-builds-report": {
+ "buildDate": "May 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nullin",
+ "email": "nullin@nullin.com",
+ "name": "Nalin Makar"
+ }
+ ],
+ "excerpt": "This Jenkins plugin makes it easy to visualize the various builds for a parameterized project that were run using the same set of parameters. ",
+ "gav": "org.jenkins-ci.plugins:simple-parameterized-builds-report:1.5",
+ "labels": [
+ "report"
+ ],
+ "name": "simple-parameterized-builds-report",
+ "previousTimestamp": "2014-10-05T09:10:58.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-05-08T15:32:08.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "unDVxs2Yuyw5yVfZY6ollokM7WI=",
+ "title": "Simple Parameterized Builds Report Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/simple-parameterized-builds-report/1.5/simple-parameterized-builds-report.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Simple+Parameterized+Builds+Report+plugin"
+ },
+ "simple-theme-plugin": {
+ "buildDate": "Mar 05, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mallowlabs",
+ "email": "mallowlabs@gmail.com",
+ "name": "mallowlabs"
+ }
+ ],
+ "excerpt": "A plugin for Jenkins that supports custom CSS &amp; JavaScript. You can customize Jenkins's appearance (ex. his gentle face on the background). ",
+ "gav": "org.codefirst.jenkins.simplethemeplugin:simple-theme-plugin:0.3",
+ "labels": [
+ "ui"
+ ],
+ "name": "simple-theme-plugin",
+ "previousTimestamp": "2011-07-29T15:14:06.00Z",
+ "previousVersion": "0.2",
+ "releaseTimestamp": "2013-03-05T13:58:48.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "/+w52T9ikW/mqturdVRNRDxO/l4=",
+ "title": "Simple Theme Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/simple-theme-plugin/0.3/simple-theme-plugin.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Simple+Theme+Plugin"
+ },
+ "simple-travis-runner": {
+ "buildDate": "Feb 25, 2016",
+ "dependencies": [
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "workflow-multibranch",
+ "optional": false,
+ "version": "1.13"
+ },
+ {
+ "name": "workflow-aggregator",
+ "optional": false,
+ "version": "1.13"
+ },
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "1.13"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "abayer",
+ "email": "andrew.bayer@gmail.com",
+ "name": "Andrew Bayer"
+ }
+ ],
+ "excerpt": "This plugin provides a Pipeline step to read a .travis.yml file and run it as a part of a Pipeline job.",
+ "gav": "org.jenkins-ci.plugins:simple-travis-runner:1.0",
+ "labels": [
+ "pipeline",
+ "builder"
+ ],
+ "name": "simple-travis-runner",
+ "releaseTimestamp": "2016-02-25T12:02:46.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "LcCC2z2MyX3/5HgbH7he9rH9md4=",
+ "title": "Simple Travis Pipeline Runner Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/simple-travis-runner/1.0/simple-travis-runner.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Simple+Travis+Runner+Plugin"
+ },
+ "simpleclearcase": {
+ "buildDate": "Mar 14, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sata_",
+ "email": "sam@tavakoli.se",
+ "name": "Sam Tavakoli"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with <a href='http://www.ibm.com/software/awdtools/clearcase/'>ClearCase</a>.",
+ "gav": "jenkins.plugins:simpleclearcase:1.2.2",
+ "labels": [],
+ "name": "simpleclearcase",
+ "previousTimestamp": "2012-03-13T15:19:44.00Z",
+ "previousVersion": "1.2.1",
+ "releaseTimestamp": "2012-03-14T13:43:10.00Z",
+ "requiredCore": "1.452",
+ "scm": "github.com",
+ "sha1": "DCOw3J21RcGMpwtYEeSNFkXW9Ng=",
+ "title": "Simple Dynamic ClearCase",
+ "url": "http://updates.jenkins-ci.org/download/plugins/simpleclearcase/1.2.2/simpleclearcase.hpi",
+ "version": "1.2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SimpleClearCase-Plugin"
+ },
+ "simpleupdatesite": {
+ "buildDate": "Sep 17, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "junoyoon",
+ "email": "junoyoon@gmail.com",
+ "name": "JunHo Yoon"
+ }
+ ],
+ "excerpt": "This plugin make Jenkins connect to the custom support site which provide custom plugin update info and announcements. ",
+ "gav": "org.jenkins-ci.plugins:simpleupdatesite:1.1.2",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "simpleupdatesite",
+ "releaseTimestamp": "2011-09-17T01:28:12.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "v0mCSfELSnPdpf1433omqFqRs8s=",
+ "title": "SimpleUpdateSite Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/simpleupdatesite/1.1.2/simpleupdatesite.hpi",
+ "version": "1.1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SimpleUpdateSite+Plugin"
+ },
+ "sinatra-chef-builder": {
+ "buildDate": "Apr 23, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "irfanjs",
+ "email": "irfu.sayed@gmail.com",
+ "name": "Irfan Sayed"
+ }
+ ],
+ "excerpt": "Chef Sinatra Jenkins plugin",
+ "gav": "org.jenkins-ci.plugins:sinatra-chef-builder:1.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "sinatra-chef-builder",
+ "releaseTimestamp": "2016-04-23T00:46:50.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "vZeYS/Qvyq+JIUDcda+qo7/dbuk=",
+ "title": "Chef Sinatra Jenkins plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sinatra-chef-builder/1.3/sinatra-chef-builder.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Chef+Sinatra+Jenkins+Plugin"
+ },
+ "singleuseslave": {
+ "buildDate": "May 06, 2015",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.12"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "claytononeill"
+ }
+ ],
+ "excerpt": "This plugin will allow taking slaves with specific labels offline when a job completes ",
+ "gav": "org.jenkins-ci.ruby-plugins:singleuseslave:1.0.0",
+ "labels": [],
+ "name": "singleuseslave",
+ "previousTimestamp": "2014-11-30T08:55:50.00Z",
+ "previousVersion": "0.1.2",
+ "releaseTimestamp": "2015-05-06T21:03:22.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "IeeAzQkKeN40MIe/9AjJcv1xyaY=",
+ "title": "Single Use Slave Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/singleuseslave/1.0.0/singleuseslave.hpi",
+ "version": "1.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Single+Use+Slave+Plugin"
+ },
+ "sitemonitor": {
+ "buildDate": "Dec 14, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cliffano",
+ "email": "blah@cliffano.com",
+ "name": "Cliffano Subagio"
+ },
+ {
+ "developerId": "onuba",
+ "name": "Francisco Hernandez Suarez"
+ }
+ ],
+ "excerpt": "Monitors web site up/down status.",
+ "gav": "org.jvnet.hudson.plugins:sitemonitor:0.5",
+ "labels": [
+ "post-build"
+ ],
+ "name": "sitemonitor",
+ "previousTimestamp": "2011-11-01T19:09:56.00Z",
+ "previousVersion": "0.4",
+ "releaseTimestamp": "2015-12-14T21:07:38.00Z",
+ "requiredCore": "1.443",
+ "scm": "github.com",
+ "sha1": "lRS/FjIDNUlqSatuTMMq0fBcRm0=",
+ "title": "SiteMonitor Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sitemonitor/0.5/sitemonitor.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SiteMonitor+Plugin"
+ },
+ "skip-certificate-check": {
+ "buildDate": "Sep 07, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This is a plugin that makes JVM bypass all the HTTPS certificate checks. Convenient if you deal with self-signed certificates and so on. Use with caution.",
+ "gav": "org.jenkins-ci.plugins:skip-certificate-check:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "skip-certificate-check",
+ "releaseTimestamp": "2011-09-07T11:52:54.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "THcV5kg0L/LR3ID4vTQZxX6Lywc=",
+ "title": "Skip Certificate Check plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/skip-certificate-check/1.0/skip-certificate-check.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Skip+Certificate+Check+plugin"
+ },
+ "skype-notifier": {
+ "buildDate": "May 14, 2011",
+ "dependencies": [
+ {
+ "name": "instant-messaging",
+ "optional": false,
+ "version": "1.16"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jbh",
+ "email": "jarlebh@gmail.com",
+ "name": "Jarle Hjortland"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with Skype for instant messaging. Requires extra manual installation steps\\!\\!\\! Note that you also need to install the <a href='http://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin'>instant-messaging plugin</a>.",
+ "gav": "org.jenkins-ci.plugins:skype-notifier:1.1.0",
+ "labels": [
+ "notifier"
+ ],
+ "name": "skype-notifier",
+ "previousTimestamp": "2011-05-06T21:49:12.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2011-05-14T20:22:34.00Z",
+ "requiredCore": "1.404",
+ "scm": "github.com",
+ "sha1": "0/aVziykcHu6OkRmUGXj7GZ00H8=",
+ "title": "Jenkins Skype notifier plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/skype-notifier/1.1.0/skype-notifier.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Skype+Plugin"
+ },
+ "skytap": {
+ "buildDate": "May 12, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tmilligan",
+ "email": "tmilligan@skytap.com",
+ "name": "Tom Milligan"
+ }
+ ],
+ "excerpt": "This plugin allows you to use Jenkins to run continuous integration and automated testing workflows using dynamically-created development and testing environments in&amp;nbsp;<a href='http://www.skytap.com'>Skytap</a> ",
+ "gav": "org.jenkins-ci.plugins:skytap:2.04",
+ "labels": [
+ "external"
+ ],
+ "name": "skytap",
+ "previousTimestamp": "2016-05-09T13:45:18.00Z",
+ "previousVersion": "2.03",
+ "releaseTimestamp": "2016-05-12T11:11:36.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "RcsZgfTbABbVAmnH9QlkjzTf1xM=",
+ "title": "Skytap Cloud CI Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/skytap/2.04/skytap.hpi",
+ "version": "2.04",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Skytap+Cloud+CI+Plugin"
+ },
+ "slack": {
+ "buildDate": "Mar 17, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kmadel",
+ "email": "kmadel@cloudbees.com",
+ "name": "Kurt Madel"
+ },
+ {
+ "developerId": "sag47",
+ "email": "sam.mxracer@gmail.com",
+ "name": "Sam Gleske"
+ }
+ ],
+ "excerpt": "This plugin allows to post build notifications to a <a href='https://slack.com/'>Slack</a> channel. ",
+ "gav": "org.jenkins-ci.plugins:slack:2.0.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "slack",
+ "previousTimestamp": "2016-03-14T21:22:46.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-03-17T10:08:16.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "LuOiGukMpCRx2zlnHJFVeW3sIx8=",
+ "title": "Slack Notification Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/slack/2.0.1/slack.hpi",
+ "version": "2.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slack+Plugin"
+ },
+ "sladiator-notifier": {
+ "buildDate": "Jun 29, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mkemme",
+ "email": "martins.kemme@gmail.com",
+ "name": "Martins Kemme"
+ }
+ ],
+ "excerpt": "Sends build status notifications to the SLAdiator monitoring application ([http://sladiator.com]). ",
+ "gav": "org.jenkins-ci.plugins:sladiator-notifier:1.0.4",
+ "labels": [
+ "notifier"
+ ],
+ "name": "sladiator-notifier",
+ "previousTimestamp": "2012-04-19T15:33:22.00Z",
+ "previousVersion": "1.0.2",
+ "releaseTimestamp": "2012-06-29T13:47:08.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "tg+vi33M6Hi8ZvtOvK3lr9uKov0=",
+ "title": "SLAdiator notifier plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sladiator-notifier/1.0.4/sladiator-notifier.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SLAdiator+plugin"
+ },
+ "slave-prerequisites": {
+ "buildDate": "Feb 29, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "email": "nicolas.deloof@gmail.com",
+ "name": "Nicolas De Loof"
+ }
+ ],
+ "excerpt": "This plugin allows to check prerequisites on slave before a job can run a build on it",
+ "gav": "org.jenkins-ci.plugins:slave-prerequisites:1.0",
+ "labels": [],
+ "name": "slave-prerequisites",
+ "releaseTimestamp": "2012-02-29T14:16:14.00Z",
+ "requiredCore": "1.452",
+ "scm": "github.com",
+ "sha1": "IEhASdw3rTtil5vgK5z1TlRQMkc=",
+ "title": "Slave Prerequisites plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/slave-prerequisites/1.0/slave-prerequisites.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slave+Prerequisites+Plugin"
+ },
+ "slave-proxy": {
+ "buildDate": "Jun 11, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:slave-proxy:1.1",
+ "labels": [],
+ "name": "slave-proxy",
+ "previousTimestamp": "2013-01-16T15:16:34.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-06-11T09:11:34.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "cApK+DKNB8mSeDGr8MhZUK1X7p0=",
+ "title": "Slave HTTP Proxy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/slave-proxy/1.1/slave-proxy.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slave+HTTP+Proxy+Plugin"
+ },
+ "slave-setup": {
+ "buildDate": "Jul 01, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "peppe",
+ "email": "giuseppe.landolfi@gmail.com",
+ "name": "Giuseppe Landolfi"
+ }
+ ],
+ "excerpt": "This plugin prepares slaves for build execution by letting you copy files and execute scripts before the slave gets used. It also allows you to start and stop slaves on demand from the master node.",
+ "gav": "org.jenkins-ci.plugins:slave-setup:1.10",
+ "labels": [
+ "cluster",
+ "slaves"
+ ],
+ "name": "slave-setup",
+ "previousTimestamp": "2015-06-17T21:43:56.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2016-07-01T23:10:02.00Z",
+ "requiredCore": "1.442",
+ "scm": "github.com",
+ "sha1": "BbD61bjWAg/HwC/hOGRe1DDJXoE=",
+ "title": "Jenkins Slave SetupPlugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/slave-setup/1.10/slave-setup.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slave+Setup+Plugin"
+ },
+ "slave-squatter": {
+ "buildDate": "Aug 07, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin enables administrators to reserve executors to be used outside Jenkins.",
+ "gav": "org.jenkins-ci.plugins:slave-squatter:1.2",
+ "labels": [
+ "slaves"
+ ],
+ "name": "slave-squatter",
+ "previousTimestamp": "2010-09-29T17:33:50.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2011-08-07T09:15:06.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "ohVYgUUtofZvBLAeiqHyMtokkPI=",
+ "title": "Slave squatter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/slave-squatter/1.2/slave-squatter.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slave+Squatter+Plugin"
+ },
+ "slave-status": {
+ "buildDate": "Nov 02, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "douglassquirrel",
+ "name": "Douglas Squirrel"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Monitor the status of Jenkins&amp;nbsp;slaves.",
+ "gav": "org.jvnet.hudson.plugins:slave-status:1.6",
+ "labels": [
+ "slaves"
+ ],
+ "name": "slave-status",
+ "previousTimestamp": "2011-11-02T21:19:42.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2011-11-02T21:21:06.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "p5HHzKUcrMyQHn/fnB3MuYaCmCI=",
+ "title": "slave-status",
+ "url": "http://updates.jenkins-ci.org/download/plugins/slave-status/1.6/slave-status.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/slave-status"
+ },
+ "slave-utilization-plugin": {
+ "buildDate": "May 21, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sgaddipati"
+ }
+ ],
+ "excerpt": "Lets you specify two things&amp;nbsp; # Configure Percentage of node capacity that should be allocated when a job runs on particular node # Configure if only one instance of a job can run on a given node at any given time ",
+ "gav": "com.suryagaddipati.jenkins:slave-utilization-plugin:1.8",
+ "labels": [
+ "slaves"
+ ],
+ "name": "slave-utilization-plugin",
+ "previousTimestamp": "2014-05-21T10:39:36.00Z",
+ "previousVersion": "1.7",
+ "releaseTimestamp": "2014-05-21T15:46:16.00Z",
+ "requiredCore": "1.488",
+ "scm": "github.com",
+ "sha1": "5NptX7yYc1end1Noczu5HdJQhtQ=",
+ "title": "Slave Utilization Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/slave-utilization-plugin/1.8/slave-utilization-plugin.hpi",
+ "version": "1.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slave+Utilization+Plugin"
+ },
+ "sloccount": {
+ "buildDate": "Nov 03, 2015",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "npiguet",
+ "name": "Nicolas Piguet"
+ },
+ {
+ "developerId": "ohtake",
+ "name": "OHTAKE Tomohiro"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ },
+ {
+ "developerId": "ssogabe",
+ "email": "s.sogabe@gmail.com",
+ "name": "Seiji Sogabe"
+ },
+ {
+ "developerId": "kbrandt",
+ "name": "Karsten Brandt"
+ },
+ {
+ "developerId": "mixalturek",
+ "email": "mixalturek@users.sf.net",
+ "name": "Michal Turek"
+ }
+ ],
+ "excerpt": "This plug-in generates trend report for <a href='http://www.dwheeler.com/sloccount/'>SLOCCount</a> and <a href='http://cloc.sourceforge.net/'>cloc</a> open source tools, that count number of code lines written in many programming languages.",
+ "gav": "hudson.plugins.sloccount:sloccount:1.21",
+ "labels": [
+ "report"
+ ],
+ "name": "sloccount",
+ "previousTimestamp": "2014-09-06T12:17:26.00Z",
+ "previousVersion": "1.20",
+ "releaseTimestamp": "2015-11-03T19:22:40.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "wmy2wK5icmbixKFtCDjFHR3mSkM=",
+ "title": "Jenkins SLOCCount Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sloccount/1.21/sloccount.hpi",
+ "version": "1.21",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SLOCCount+Plugin"
+ },
+ "smart-jenkins": {
+ "buildDate": "Aug 01, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "future-azure",
+ "email": "future.azure@gmail.com",
+ "name": "Yi Hu"
+ },
+ {
+ "name": "Wenting Gu"
+ }
+ ],
+ "excerpt": "This plugin reduces the electricity consumption by shutting down idle slaves and re-schedules jobs to avoid the rush hours of electricity. ",
+ "gav": "org.jenkins-ci.plugins:smart-jenkins:1.0",
+ "labels": [
+ "slaves"
+ ],
+ "name": "smart-jenkins",
+ "releaseTimestamp": "2011-08-01T11:48:26.00Z",
+ "requiredCore": "1.417",
+ "scm": "github.com",
+ "sha1": "spKQWs6C87Z7X5CTeXmgsntLCbc=",
+ "title": "Smart Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/smart-jenkins/1.0/smart-jenkins.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Smart+Jenkins"
+ },
+ "smartfrog-plugin": {
+ "buildDate": "Apr 15, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ },
+ {
+ "developerId": "rhusar",
+ "name": "Radoslav Husar"
+ }
+ ],
+ "excerpt": "Allows you to run SmartFrog deployment scripts.",
+ "gav": "org.jenkins-ci.plugins:smartfrog-plugin:2.2.6",
+ "labels": [
+ "builder"
+ ],
+ "name": "smartfrog-plugin",
+ "previousTimestamp": "2016-04-14T16:20:02.00Z",
+ "previousVersion": "2.2.5",
+ "releaseTimestamp": "2016-04-15T12:28:24.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "VXz3IzjLYeGWAo1UliC3XhQsJFY=",
+ "title": "SmartFrog Builder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/smartfrog-plugin/2.2.6/smartfrog-plugin.hpi",
+ "version": "2.2.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SmartFrog+Plugin"
+ },
+ "sms": {
+ "buildDate": "Sep 20, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stevevan",
+ "name": "Steve Van"
+ }
+ ],
+ "excerpt": "This plugin allows the user to notify the team via SMS for any unstable build, using Hoiio API. Visit developer.hoiio.com to learn more about Hoiio API",
+ "gav": "com.hoiio.jenkins:sms:1.2",
+ "labels": [
+ "notifier"
+ ],
+ "name": "sms",
+ "previousTimestamp": "2013-04-16T09:51:44.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2013-09-20T17:40:54.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "d56RaZb61FR832lNr68zuPXRZ0c=",
+ "title": "SMS Notification",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sms/1.2/sms.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SMS+Notification"
+ },
+ "snsnotify": {
+ "buildDate": "Mar 09, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mikewatt",
+ "name": "Michael Watt"
+ },
+ {
+ "developerId": "jkelabora",
+ "name": "Julian Kelabora"
+ },
+ {
+ "developerId": "nikos",
+ "name": "Niko Schmuck"
+ }
+ ],
+ "excerpt": "Send build notifications to an AWS SNS Topic. From version 1.7 on you can customize the SNS subject and payload message making use of build and environment variables. From version 1.8 you can set in the global configuration whether you want also to send out an SNS notification on build start. !snsnotify-global-settings.png! ",
+ "gav": "org.jenkins-ci.plugins:snsnotify:1.13",
+ "labels": [
+ "notifier",
+ "post-build"
+ ],
+ "name": "snsnotify",
+ "previousTimestamp": "2016-01-19T21:58:14.00Z",
+ "previousVersion": "1.12",
+ "releaseTimestamp": "2016-03-09T22:00:46.00Z",
+ "requiredCore": "1.565.1",
+ "scm": "github.com",
+ "sha1": "WxGdy4njQcjz1p9kV9cSMZ1yy2w=",
+ "title": "Amazon SNS Build Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/snsnotify/1.13/snsnotify.hpi",
+ "version": "1.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+SNS+Notifier"
+ },
+ "sonar": {
+ "buildDate": "Jun 27, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": true,
+ "version": "2.12.1"
+ },
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.11.2-0"
+ },
+ {
+ "name": "configurationslicing",
+ "optional": true,
+ "version": "1.40"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "godin",
+ "email": "mandrikov@gmail.com",
+ "name": "Evgeny Mandrikov"
+ },
+ {
+ "developerId": "sbrandhof",
+ "email": "simon.brandhof@gmail.com",
+ "name": "Simon Brandhof"
+ },
+ {
+ "developerId": "dgageot",
+ "email": "david@gageot.net",
+ "name": "David Gageot"
+ },
+ {
+ "developerId": "henryju",
+ "email": "henryju@yahoo.fr",
+ "name": "Julien Henry"
+ }
+ ],
+ "excerpt": "This plugin allow easy integration of <a href='http://www.sonarsource.org'>SonarQube</a>&trade;, the open source platform for Continuous Inspection of code quality.",
+ "gav": "org.jenkins-ci.plugins:sonar:2.4.4",
+ "labels": [
+ "external",
+ "report"
+ ],
+ "name": "sonar",
+ "previousTimestamp": "2016-06-08T08:50:44.00Z",
+ "previousVersion": "2.4.3",
+ "releaseTimestamp": "2016-06-27T10:47:42.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "y5Ia1OBNEPqVLGihVSncKNVDiUk=",
+ "title": "Jenkins SonarQube Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sonar/2.4.4/sonar.hpi",
+ "version": "2.4.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SonarQube+plugin"
+ },
+ "sonar-gerrit": {
+ "buildDate": "Dec 03, 2015",
+ "compatibleSinceVersion": "1.0",
+ "dependencies": [
+ {
+ "name": "gerrit-trigger",
+ "optional": false,
+ "version": "2.16.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "aquarellian",
+ "email": "aquarellian@gmail.com",
+ "name": "Tatiana Didik (Goretskaya)"
+ },
+ {
+ "developerId": "adidik",
+ "name": "Aleksey Didik"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:sonar-gerrit:1.0.6",
+ "labels": [
+ "external"
+ ],
+ "name": "sonar-gerrit",
+ "previousTimestamp": "2015-11-18T16:56:56.00Z",
+ "previousVersion": "1.0.5",
+ "releaseTimestamp": "2015-12-03T22:16:26.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "jfyzzMrmFv07OQaIU87L8bv8el8=",
+ "title": "Sonar Gerrit Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sonar-gerrit/1.0.6/sonar-gerrit.hpi",
+ "version": "1.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sonar+Gerrit"
+ },
+ "sonargraph-integration": {
+ "buildDate": "Sep 16, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ingmarkellner",
+ "name": "Ingmar Kellner"
+ },
+ {
+ "developerId": "esteban-h2m",
+ "name": "Esteban Angee"
+ },
+ {
+ "developerId": "andreashoyerh2m",
+ "name": "Andreas Hoyer"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='https://www.hello2morrow.com/products/sonargraph'>Sonargraph</a> version 8 and newer into your build. Sonargraph allows to define an architecture for a software system and automatically checks how the code base conforms to it. For Sonargraph version 7 use <a href='https://wiki.jenkins-ci.org/display/JENKINS/Sonargraph+Plugin'>Sonargraph Plugin</a>. ",
+ "gav": "org.jenkins-ci.plugins:sonargraph-integration:1.1.4",
+ "labels": [
+ "external",
+ "post-build",
+ "report"
+ ],
+ "name": "sonargraph-integration",
+ "previousTimestamp": "2016-08-25T10:46:52.00Z",
+ "previousVersion": "1.1.3",
+ "releaseTimestamp": "2016-09-16T12:20:52.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "BkcQi/Fd+fzzkqYOGtVNNxzp+ak=",
+ "title": "Sonargraph Integration Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sonargraph-integration/1.1.4/sonargraph-integration.hpi",
+ "version": "1.1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sonargraph+Integration+Plugin"
+ },
+ "sonargraph-plugin": {
+ "buildDate": "Sep 07, 2015",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.12"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ingmarkellner",
+ "name": "Ingmar Kellner"
+ },
+ {
+ "developerId": "esteban-h2m",
+ "name": "Esteban Angee"
+ },
+ {
+ "developerId": "andreashoyerh2m",
+ "name": "Andreas Hoyer"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='https://www.hello2morrow.com/products/sonargraph'>Sonargraph</a>&amp;nbsp;version 7 into your build. Sonargraph allows to define an architecture for a software system and automatically checks how the code base conforms to it. For Sonargraph 8 and newer use <a href='https://wiki.jenkins-ci.org/display/JENKINS/Sonargraph+Integration+Plugin'>Sonargraph Integration Plugin</a>. ",
+ "gav": "org.jenkins-ci.plugins:sonargraph-plugin:1.6.4",
+ "labels": [
+ "external",
+ "post-build",
+ "report"
+ ],
+ "name": "sonargraph-plugin",
+ "previousTimestamp": "2015-01-24T13:53:34.00Z",
+ "previousVersion": "1.6.3",
+ "releaseTimestamp": "2015-09-07T16:58:50.00Z",
+ "requiredCore": "1.554.3",
+ "scm": "github.com",
+ "sha1": "HnAjA43Rx1uAGx6LnatnFLRpwLY=",
+ "title": "Sonargraph Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sonargraph-plugin/1.6.4/sonargraph-plugin.hpi",
+ "version": "1.6.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sonargraph+Plugin"
+ },
+ "sounds": {
+ "buildDate": "Jun 25, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oxcafebabe",
+ "email": "edward@hurst-frost.net",
+ "name": "Edward Hurst-Frost"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to play arbitrary audio clips as build actions and notifications.",
+ "gav": "org.jenkins-ci.plugins:sounds:0.5",
+ "labels": [
+ "notifier"
+ ],
+ "name": "sounds",
+ "previousTimestamp": "2013-11-08T16:55:58.00Z",
+ "previousVersion": "0.4.3",
+ "releaseTimestamp": "2016-06-25T16:18:26.00Z",
+ "requiredCore": "1.436",
+ "scm": "github.com",
+ "sha1": "cQ6afXgWrcqSWkgimTfHuioYlNs=",
+ "title": "Jenkins Sounds plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sounds/0.5/sounds.hpi",
+ "version": "0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Sounds+plugin"
+ },
+ "speaks": {
+ "buildDate": "Dec 02, 2009",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oxcafebabe",
+ "email": "edward@hurst-frost.net",
+ "name": "Edward Hurst-Frost"
+ }
+ ],
+ "excerpt": "This plugin gives Jenkins a voice using <a href='http://freetts.sourceforge.net/'>FreeTTS</a>.",
+ "gav": "org.jvnet.hudson.plugins:speaks:0.1.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "speaks",
+ "previousTimestamp": "2009-11-29T13:50:18.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2009-12-02T17:00:12.00Z",
+ "requiredCore": "1.324",
+ "scm": "svn.dev.java.net",
+ "sha1": "oBZkkzqSmjunMN0L4U6k8saZbxI=",
+ "title": "Hudson Speaks! Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/speaks/0.1.1/speaks.hpi",
+ "version": "0.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Speaks%21+Plugin"
+ },
+ "spoonscript": {
+ "buildDate": "Mar 15, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.3.4"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pmateusz",
+ "email": "mateusz@turbo.net",
+ "name": "Mateusz Polnik"
+ }
+ ],
+ "excerpt": "The TurboScript plugin for Jenkins allows to automatically build Spoon images and push them to the Turbo.net Hub or local repository.",
+ "gav": "org.jenkinsci.plugins.spoonscript:spoonscript:1.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "spoonscript",
+ "previousTimestamp": "2016-01-04T12:20:30.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-03-15T14:48:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "JwU9SAAi/OzHEuRkblrPlYu1+zI=",
+ "title": "TurboScript Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/spoonscript/1.3/spoonscript.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TurboScript+Plugin"
+ },
+ "spotinst": {
+ "buildDate": "Sep 05, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "team",
+ "email": "team@spotinst.com",
+ "name": "Spotinst Team"
+ }
+ ],
+ "excerpt": "Allow Jenkins to start slaves with <a href='http://www.spotinst.com'>Spotinst</a>&amp;nbsp;framework, and kill them as they get unused.&amp;nbsp; ",
+ "gav": "org.jenkins-ci.plugins:spotinst:1.2.4",
+ "labels": [
+ "spot",
+ "spotinst",
+ "cluster",
+ "slaves"
+ ],
+ "name": "spotinst",
+ "previousTimestamp": "2016-08-30T20:45:50.00Z",
+ "previousVersion": "1.2.3",
+ "releaseTimestamp": "2016-09-05T12:01:10.00Z",
+ "requiredCore": "1.632",
+ "scm": "github.com",
+ "sha1": "PuJQYNHtrqyP1UjgBfvbj5YMNjI=",
+ "title": "Spotinst plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/spotinst/1.2.4/spotinst.hpi",
+ "version": "1.2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Spotinst+Plugin"
+ },
+ "sqlplus-script-runner": {
+ "buildDate": "Jan 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "boaglio",
+ "email": "boaglio@gmail.com",
+ "name": "Fernando Boaglio"
+ }
+ ],
+ "excerpt": "This plugin enables you run <a href='http://www.orafaq.com/wiki/SQL*Plus_FAQ'>Oracle SQL*Plus</a> scripts on your Jenkins jobs (user defined scripts or a script inside a workspace). ",
+ "gav": "org.jenkins-ci.plugins:sqlplus-script-runner:1.0.2",
+ "labels": [
+ "misc"
+ ],
+ "name": "sqlplus-script-runner",
+ "previousTimestamp": "2015-12-21T23:01:14.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2016-01-17T09:40:50.00Z",
+ "requiredCore": "1.625.2",
+ "scm": "github.com",
+ "sha1": "KnNTFiescYKTCgGH0mYAY1EYyo0=",
+ "title": "SQLPlus Script Runner",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sqlplus-script-runner/1.0.2/sqlplus-script-runner.hpi",
+ "version": "1.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SQLPlus+Script+Runner+Plugin"
+ },
+ "sra-deploy": {
+ "buildDate": "Jan 30, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "Serena SRA Team",
+ "email": "support@serena.com",
+ "name": "Serena SRA Team"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with Serena Release Automation (SRA) the Serena DevOps solution. ",
+ "gav": "com.urbancode.ds.jenkins.plugins:sra-deploy:1.4.2.4",
+ "labels": [
+ "deployment",
+ "post-build",
+ "devops",
+ "upload"
+ ],
+ "name": "sra-deploy",
+ "previousTimestamp": "2013-11-26T12:58:10.00Z",
+ "previousVersion": "1.4.2.3",
+ "releaseTimestamp": "2014-01-30T16:32:14.00Z",
+ "requiredCore": "1.540",
+ "scm": "github.com",
+ "sha1": "3TB8a090wx4oU+PzxF/HAKi7qHM=",
+ "title": "Serena SRA Deploy",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sra-deploy/1.4.2.4/sra-deploy.hpi",
+ "version": "1.4.2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Serena+Deploy+Plugin"
+ },
+ "srcclr-installer": {
+ "buildDate": "May 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "srcclr",
+ "email": "support@srcclr.com",
+ "name": "SourceClear Inc"
+ }
+ ],
+ "excerpt": "Security for open-source code.",
+ "gav": "com.srcclr.jenkins:srcclr-installer:1.0.1",
+ "labels": [],
+ "name": "srcclr-installer",
+ "previousTimestamp": "2016-05-08T15:22:18.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-05-08T20:18:16.00Z",
+ "requiredCore": "1.609.2",
+ "scm": "github.com",
+ "sha1": "5NPUTM1X14QeBl0xUr97j+eVRNs=",
+ "title": "The SourceClear Installer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/srcclr-installer/1.0.1/srcclr-installer.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SourceClear+Installer+Plugin"
+ },
+ "sse-gateway": {
+ "buildDate": "Sep 24, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tfennelly"
+ }
+ ],
+ "excerpt": "Server Sent Events (SSE) Gateway Plugin ",
+ "gav": "org.jenkins-ci.plugins:sse-gateway:1.10",
+ "labels": [],
+ "name": "sse-gateway",
+ "previousTimestamp": "2016-09-12T14:57:04.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2016-09-24T10:27:34.00Z",
+ "requiredCore": "2.2",
+ "scm": "github.com",
+ "sha1": "f78I/hae6TcFEI3ufi3dNMhd6Gk=",
+ "title": "Server Sent Events (SSE) Gateway Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sse-gateway/1.10/sse-gateway.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSE+Gateway+Plugin"
+ },
+ "ssh": {
+ "buildDate": "Jan 08, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "edmund_wagner",
+ "name": "Edmund Wagner"
+ }
+ ],
+ "excerpt": "You can use the SSH Plugin to run shell commands on a remote machine via ssh.",
+ "gav": "org.jenkins-ci.plugins:ssh:2.4",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "ssh",
+ "previousTimestamp": "2012-09-24T19:51:14.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2014-01-08T22:06:50.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "1PdFHyP2my7xSkHdMf7vmAqoxhk=",
+ "title": "Jenkins SSH plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ssh/2.4/ssh.hpi",
+ "version": "2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+plugin"
+ },
+ "ssh-agent": {
+ "buildDate": "Jun 20, 2016",
+ "compatibleSinceVersion": "1.5",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.9"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "bouncycastle-api",
+ "optional": false,
+ "version": "1.0.2"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin allows you to provide SSH credentials to builds via a ssh-agent in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:ssh-agent:1.13",
+ "labels": [],
+ "name": "ssh-agent",
+ "previousTimestamp": "2016-06-20T13:39:58.00Z",
+ "previousVersion": "1.12",
+ "releaseTimestamp": "2016-06-20T14:06:38.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "GZqMyGiXmum0qU7506qRN5GxdZA=",
+ "title": "SSH Agent Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ssh-agent/1.13/ssh-agent.hpi",
+ "version": "1.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+Agent+Plugin"
+ },
+ "ssh-credentials": {
+ "buildDate": "May 11, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin allows you to store SSH credentials in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:ssh-credentials:1.12",
+ "labels": [],
+ "name": "ssh-credentials",
+ "previousTimestamp": "2015-03-30T08:46:32.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2016-05-11T09:58:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "tmLEixPsvKdKODC3+DHW2tqTToQ=",
+ "title": "SSH Credentials Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ssh-credentials/1.12/ssh-credentials.hpi",
+ "version": "1.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+Credentials+Plugin"
+ },
+ "ssh-slaves": {
+ "buildDate": "Apr 27, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.4"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.6.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ },
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "olamy",
+ "name": "Olivier Lamy"
+ }
+ ],
+ "excerpt": "This plugin allows you to manage slaves running on \\*nix machines over SSH.",
+ "gav": "org.jenkins-ci.plugins:ssh-slaves:1.11",
+ "labels": [
+ "slaves"
+ ],
+ "name": "ssh-slaves",
+ "previousTimestamp": "2015-08-06T17:30:04.00Z",
+ "previousVersion": "1.10",
+ "releaseTimestamp": "2016-04-27T17:28:40.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "D4nkdMS4Ypo0jhEmG/h0RHkmsrg=",
+ "title": "Jenkins SSH Slaves plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ssh-slaves/1.11/ssh-slaves.hpi",
+ "version": "1.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+Slaves+plugin"
+ },
+ "ssh2easy": {
+ "buildDate": "Jun 03, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-auth",
+ "optional": false,
+ "version": "1.0.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jerrycai",
+ "email": "nwwh@qq.com",
+ "name": "Jerry Cai"
+ }
+ ],
+ "excerpt": "This plugin allows you to ssh2 remote server to execute linux commands , shell , sftp upload, downlaod etc ",
+ "gav": "org.jenkins-ci.plugins:ssh2easy:1.4",
+ "labels": [],
+ "name": "ssh2easy",
+ "previousTimestamp": "2015-05-10T19:34:14.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-06-03T13:02:24.00Z",
+ "requiredCore": "1.612",
+ "scm": "github.com",
+ "sha1": "8IuegehFfu+iyob6s+VbywZLPXU=",
+ "title": "SSH2 Easy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ssh2easy/1.4/ssh2easy.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH2Easy+Plugin"
+ },
+ "stackhammer": {
+ "buildDate": "Sep 24, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "thallgren",
+ "email": "thomas@tada.se",
+ "name": "Thomas Hallgren"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='http://www.cloudsmith.com/'>Cloudsmith Stack Hammer</a> to validate and/or deploy Puppet configurations (stacks) stored in a repository at GitHub. ",
+ "gav": "org.jenkins-ci.plugins:stackhammer:1.0.6",
+ "labels": [
+ "external"
+ ],
+ "name": "stackhammer",
+ "previousTimestamp": "2012-09-06T16:24:38.00Z",
+ "previousVersion": "1.0.5",
+ "releaseTimestamp": "2012-09-24T22:10:00.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "ELccKHSaHuTf2CzQnnJ3ojTa/78=",
+ "title": "Stack Hammer",
+ "url": "http://updates.jenkins-ci.org/download/plugins/stackhammer/1.0.6/stackhammer.hpi",
+ "version": "1.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Stack+Hammer+Plugin"
+ },
+ "staf": {
+ "buildDate": "Jan 09, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "smithgcovert",
+ "email": "covert@mighty.sytes.net",
+ "name": "Gregory Covert Smith"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to invoke a STAF command or launch a STAX job as a build step. ",
+ "gav": "org.jvnet.hudson.plugins:staf:0.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "staf",
+ "releaseTimestamp": "2010-01-09T20:50:36.00Z",
+ "requiredCore": "1.339",
+ "scm": "svn.dev.java.net",
+ "sha1": "krhnfgtef6WRV5B0dUQl3NkfKqQ=",
+ "title": "Software Testing Automation Framework (STAF) Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/staf/0.1/staf.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/STAF+-+STAX+Plugin"
+ },
+ "starteam": {
+ "buildDate": "Jan 23, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ilkka",
+ "email": "ilkka.s.laukkanen@gmail.com",
+ "name": "Ilkka Laukkanen"
+ },
+ {
+ "developerId": "pamdirac",
+ "email": "john@mcnair.org",
+ "name": "John McNair"
+ },
+ {
+ "developerId": "chunyang",
+ "email": "wangchunyang@gmail.com",
+ "name": "Chunyang Wang"
+ },
+ {
+ "developerId": "jan_ruzicka",
+ "email": "jan_ruzicka@dev.java.net",
+ "name": "Jan Ruzicka"
+ },
+ {
+ "developerId": "robwiss",
+ "email": "robwiss@gmail.com",
+ "name": "Rob Wissmann"
+ },
+ {
+ "developerId": "vyazelenko",
+ "email": "vyazelenko@yahoo.com",
+ "name": "Dmitry Vyazelenko"
+ },
+ {
+ "developerId": "hugares",
+ "email": "hugares@gmail.com",
+ "name": "Hugo Ares"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='http://www.borland.com/Products/Change-Management/StarTeam'>StarTeam</a>, Borland's crossplatform SCM solution.",
+ "gav": "hudson.plugins:starteam:0.6.13",
+ "labels": [
+ "scm"
+ ],
+ "name": "starteam",
+ "previousTimestamp": "2014-01-22T19:31:58.00Z",
+ "previousVersion": "0.6.12",
+ "releaseTimestamp": "2014-01-23T05:44:08.00Z",
+ "requiredCore": "1.345",
+ "scm": "github.com",
+ "sha1": "tECq+gKYHzhnMUHWkhdH+HAHT8E=",
+ "title": "Jenkins StarTeam plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/starteam/0.6.13/starteam.hpi",
+ "version": "0.6.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/StarTeam"
+ },
+ "started-by-envvar": {
+ "buildDate": "Oct 20, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "Tom"
+ }
+ ],
+ "excerpt": "This plugin makes the user id that started a build available as _environment variable_. ",
+ "gav": "org.jenkins-ci.plugins:started-by-envvar:1.0",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "started-by-envvar",
+ "releaseTimestamp": "2011-10-20T22:08:12.00Z",
+ "requiredCore": "1.409.2",
+ "scm": "github.com",
+ "sha1": "QOvQ8y1L4z1lgH2QvYRUnYJnEco=",
+ "title": "Started-By Environment Variable Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/started-by-envvar/1.0/started-by-envvar.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Started-By+Environment+Variable+Plugin"
+ },
+ "startup-trigger-plugin": {
+ "buildDate": "Sep 16, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": true,
+ "version": "1.8.3"
+ },
+ {
+ "name": "matrix-auth",
+ "optional": true,
+ "version": "1.0.2"
+ },
+ {
+ "name": "nodelabelparameter",
+ "optional": true,
+ "version": "1.5.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ejpenney",
+ "email": "treadstoneit@gmail.com",
+ "name": "Emory Penney"
+ },
+ {
+ "developerId": "ashlux",
+ "email": "ashlux@gmail.com",
+ "name": "Ash Lux"
+ },
+ {
+ "developerId": "gboissinot",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "The Startup Trigger plugin allows you to trigger a build when Jenkins nodes (master/slave) start.",
+ "gav": "org.jenkins-ci.plugins:startup-trigger-plugin:2.6.3",
+ "labels": [
+ "trigger"
+ ],
+ "name": "startup-trigger-plugin",
+ "previousTimestamp": "2015-12-02T23:49:56.00Z",
+ "previousVersion": "2.5",
+ "releaseTimestamp": "2016-09-16T10:03:28.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "mD8YaiPDvX+hsjttr/ooji0hf9o=",
+ "title": "Startup Trigger",
+ "url": "http://updates.jenkins-ci.org/download/plugins/startup-trigger-plugin/2.6.3/startup-trigger-plugin.hpi",
+ "version": "2.6.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Startup+Trigger"
+ },
+ "stash-pullrequest-builder": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "3.0.0"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nemccarthy",
+ "email": "nem@nemccarthy.me",
+ "name": "Nathan McCarthy"
+ }
+ ],
+ "excerpt": "This plugin builds pull requests from an Atlassian Stash instance and will report the test results.",
+ "gav": "org.jenkins-ci.plugins:stash-pullrequest-builder:1.7.0",
+ "labels": [
+ "trigger"
+ ],
+ "name": "stash-pullrequest-builder",
+ "previousTimestamp": "2016-04-26T13:24:14.00Z",
+ "previousVersion": "1.6.0",
+ "releaseTimestamp": "2016-09-23T18:22:50.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "a+37cyC3mVvG1mPkUu9fwNOUDJA=",
+ "title": "Stash Pullrequest Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/stash-pullrequest-builder/1.7.0/stash-pullrequest-builder.hpi",
+ "version": "1.7.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Stash+pullrequest+builder+plugin"
+ },
+ "stashNotifier": {
+ "buildDate": "Sep 16, 2016",
+ "compatibleSinceVersion": "1.9",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "plain-credentials",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gruetter",
+ "name": "Georg Gruetter"
+ },
+ {
+ "developerId": "scaytrase",
+ "name": "Pavel Batanov"
+ }
+ ],
+ "excerpt": "Notifies an Atlassian Stash instance of build results ",
+ "gav": "org.jenkins-ci.plugins:stashNotifier:1.11.4",
+ "labels": [
+ "notifier"
+ ],
+ "name": "stashNotifier",
+ "previousTimestamp": "2016-08-14T21:24:08.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2016-09-16T21:09:46.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "C2VWTAv20fTh9Lf92LVQtssDkUQ=",
+ "title": "Stash Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/stashNotifier/1.11.4/stashNotifier.hpi",
+ "version": "1.11.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/StashNotifier+Plugin"
+ },
+ "statistics-gatherer": {
+ "buildDate": "Jul 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "maximecharron",
+ "email": "charron.maxime97@gmail.com",
+ "name": "Maxime Charron"
+ }
+ ],
+ "excerpt": "Captures Statistics related to Jenkins Builds, Build Step, SCM checkouts, Jobs and Queue and sends them where you want.",
+ "gav": "org.jenkins.plugins.statistics.gatherer:statistics-gatherer:1.0.1",
+ "labels": [
+ "report",
+ "notifier"
+ ],
+ "name": "statistics-gatherer",
+ "releaseTimestamp": "2016-07-26T17:21:40.00Z",
+ "requiredCore": "1.645",
+ "scm": "github.com",
+ "sha1": "Bk6dn1p2QRfct9lkDHVWPRY+GEo=",
+ "title": "Statistics Gatherer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/statistics-gatherer/1.0.1/statistics-gatherer.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Statistics+Gatherer+Plugin"
+ },
+ "status-view": {
+ "buildDate": "Jun 04, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mindless",
+ "email": "mindless@dev.java.net",
+ "name": "Alan Harder"
+ }
+ ],
+ "excerpt": "View type to show jobs filtered by the status of the last completed build.",
+ "gav": "org.jvnet.hudson.plugins:status-view:1.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "status-view",
+ "releaseTimestamp": "2010-06-04T16:58:06.00Z",
+ "requiredCore": "1.342",
+ "scm": "svn.dev.java.net",
+ "sha1": "QThzZO+jlzyS38OAlwK+W6WH2Bk=",
+ "title": "Status View Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/status-view/1.0/status-view.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Status+View+Plugin"
+ },
+ "statusmonitor": {
+ "buildDate": "Nov 04, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ashlux",
+ "email": "ashlux@gmail.com",
+ "name": "Ash Lux"
+ },
+ {
+ "name": "redsolo"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin shows the state of selected jobs visually on a single screen.",
+ "gav": "org.jvnet.hudson.plugins:statusmonitor:1.3",
+ "labels": [
+ "notifier"
+ ],
+ "name": "statusmonitor",
+ "previousTimestamp": "2009-12-31T17:46:00.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2011-11-04T09:18:10.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "SZL+F985IGKx0PT5eNc/fzcVYow=",
+ "title": "Status Monitor Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/statusmonitor/1.3/statusmonitor.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Status+Monitor+Plugin"
+ },
+ "stepcounter": {
+ "buildDate": "Sep 06, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "Takuma Ishibashi",
+ "email": "takuma02141978@yahoo.co.jp",
+ "name": "Takuma Ishibashi"
+ }
+ ],
+ "excerpt": "This plugin counts source steps. ",
+ "gav": "org.jenkins-ci.plugins:stepcounter:1.4.6",
+ "labels": [
+ "report"
+ ],
+ "name": "stepcounter",
+ "previousTimestamp": "2016-07-07T19:53:08.00Z",
+ "previousVersion": "1.4.5",
+ "releaseTimestamp": "2016-09-06T14:15:00.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "cLdvKL65o/N8yhTOZB+OLjiKVyc=",
+ "title": "StepCounter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/stepcounter/1.4.6/stepcounter.hpi",
+ "version": "1.4.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Step+Counter+Plugin"
+ },
+ "storable-configs-plugin": {
+ "buildDate": "Feb 28, 2011",
+ "dependencies": [
+ {
+ "name": "selection-tasks-plugin",
+ "optional": true,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nzhelyakov",
+ "email": "nzhelyakov@gmail.com",
+ "name": "Nikita Zhelyakov"
+ }
+ ],
+ "excerpt": "This plugin allows you to save and load set of job parameters. ",
+ "gav": "org.jvnet.hudson.plugins:storable-configs-plugin:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "storable-configs-plugin",
+ "releaseTimestamp": "2011-02-28T20:38:02.00Z",
+ "requiredCore": "1.366",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "OdMAq62DknBGvL419fo+kNGzWh8=",
+ "title": "Storable Configs plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/storable-configs-plugin/1.0/storable-configs-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Storable+Configs+Plugin"
+ },
+ "strawboss": {
+ "buildDate": "Jan 07, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "morgandev",
+ "email": "morgandev@gmail.com",
+ "name": "Scott Morgan"
+ }
+ ],
+ "excerpt": "Strawboss supports the same features as Jenkins external job monitor with added support for sending email notifications and triggering other jobs. ",
+ "gav": "org.jenkins-ci.plugins:strawboss:1.3",
+ "labels": [
+ "notifier",
+ "misc"
+ ],
+ "name": "strawboss",
+ "previousTimestamp": "2011-11-02T23:03:06.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-01-07T22:46:58.00Z",
+ "requiredCore": "1.596",
+ "scm": "github.com",
+ "sha1": "W42QYagLCs66NTlgy7WvmtncD/I=",
+ "title": "Jenkins Strawboss plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/strawboss/1.3/strawboss.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Strawboss+Plugin"
+ },
+ "structs": {
+ "buildDate": "Aug 30, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Library plugin for DSL plugins that need concise names for Jenkins extensions",
+ "gav": "org.jenkins-ci.plugins:structs:1.5",
+ "labels": [],
+ "name": "structs",
+ "previousTimestamp": "2016-08-26T14:11:44.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-08-30T14:10:10.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "fK+F0PEfSS//DOqmNJvX2rQYabo=",
+ "title": "Structs Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/structs/1.5/structs.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Structs+plugin"
+ },
+ "subversion": {
+ "buildDate": "Jun 23, 2016",
+ "dependencies": [
+ {
+ "name": "mapdb-api",
+ "optional": false,
+ "version": "1.0.1.0"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.6.1"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.16"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "0.2"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": false,
+ "version": "1.4.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke abayer dodok1 dty huybrechts mindless pgweiss stephenconnolly rseguy kutzi etc",
+ "name": "Many"
+ }
+ ],
+ "excerpt": "This plugin adds the Subversion support (via SVNKit) to Jenkins.",
+ "gav": "org.jenkins-ci.plugins:subversion:2.6",
+ "labels": [
+ "scm"
+ ],
+ "name": "subversion",
+ "previousTimestamp": "2016-01-06T19:23:50.00Z",
+ "previousVersion": "2.5.7",
+ "releaseTimestamp": "2016-06-23T18:43:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "g5b5pWHIadWJJlPCG4UgTrIPnjk=",
+ "title": "Jenkins Subversion Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/subversion/2.6/subversion.hpi",
+ "version": "2.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Plugin"
+ },
+ "summary_report": {
+ "buildDate": "Jul 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "deruyter",
+ "email": "tderuyte@gmail.com",
+ "name": "Deruyter Thomas"
+ }
+ ],
+ "excerpt": "Extend build and project page with extended results in XML format",
+ "gav": "org.jenkins-ci.plugins:summary_report:1.15",
+ "labels": [
+ "report"
+ ],
+ "name": "summary_report",
+ "previousTimestamp": "2016-01-29T14:01:48.00Z",
+ "previousVersion": "1.14",
+ "releaseTimestamp": "2016-07-08T13:38:52.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "PUzq4VeQD8EIw5rdUqyY7UPLWDM=",
+ "title": "Summary Display Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/summary_report/1.15/summary_report.hpi",
+ "version": "1.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Summary+Display+Plugin"
+ },
+ "sumologic-publisher": {
+ "buildDate": "Oct 15, 2015",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "devennorton",
+ "email": "deven@sumologic.com",
+ "name": "Deven Norton"
+ }
+ ],
+ "excerpt": "Allows users to send build/system metadata to <a href='http://sumologic.com'>sumologic</a>",
+ "gav": "org.jenkins-ci.plugins:sumologic-publisher:1.1",
+ "labels": [
+ "post-build",
+ "notifier"
+ ],
+ "name": "sumologic-publisher",
+ "releaseTimestamp": "2015-10-15T15:39:10.00Z",
+ "requiredCore": "1.596.2",
+ "scm": "github.com",
+ "sha1": "6P8ZIcYFX9QGCuGSoT2sAv2FX0I=",
+ "title": "Sumologic Publisher",
+ "url": "http://updates.jenkins-ci.org/download/plugins/sumologic-publisher/1.1/sumologic-publisher.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sumologic+Publisher+Plugin"
+ },
+ "support-core": {
+ "buildDate": "Sep 22, 2016",
+ "dependencies": [
+ {
+ "name": "async-http-client",
+ "optional": true,
+ "version": "1.7.8"
+ },
+ {
+ "name": "metrics",
+ "optional": false,
+ "version": "3.0.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ },
+ {
+ "developerId": "christ66",
+ "name": "Steven Christou"
+ }
+ ],
+ "excerpt": "This plugin provides a common set of classes to assist in generating support bundles. ",
+ "gav": "org.jenkins-ci.plugins:support-core:2.33",
+ "labels": [],
+ "name": "support-core",
+ "previousTimestamp": "2016-04-29T19:22:36.00Z",
+ "previousVersion": "2.32",
+ "releaseTimestamp": "2016-09-22T13:56:24.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "5N9nkIGcbuupRymeGaldvjoY3PE=",
+ "title": "Support Core Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/support-core/2.33/support-core.hpi",
+ "version": "2.33",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Support+Core+Plugin"
+ },
+ "suppress-stack-trace": {
+ "buildDate": "Jul 06, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "recena"
+ }
+ ],
+ "excerpt": "This plugin prevents the stack trace reported by Jenkins when a processing fails unexpectedly.",
+ "gav": "org.jenkins-ci.plugins:suppress-stack-trace:1.5",
+ "labels": [
+ "ui",
+ "security"
+ ],
+ "name": "suppress-stack-trace",
+ "previousTimestamp": "2015-08-11T16:35:52.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-07-06T19:29:28.00Z",
+ "requiredCore": "1.554.3",
+ "scm": "github.com",
+ "sha1": "FWzgh2rY0Dx0gScLWE17YH2xU3w=",
+ "title": "Stack Trace Suppression Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/suppress-stack-trace/1.5/suppress-stack-trace.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Suppress+Stack+Trace+Plugin"
+ },
+ "svn-release-mgr": {
+ "buildDate": "Nov 03, 2010",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.20"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mindless"
+ }
+ ],
+ "excerpt": "This plugin allows you to set up a job in Jenkins for building specific revisions of a project. ",
+ "gav": "org.jvnet.hudson.plugins:svn-release-mgr:1.2",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "svn-release-mgr",
+ "previousTimestamp": "2010-03-02T08:27:22.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2010-11-03T12:55:44.00Z",
+ "requiredCore": "1.318",
+ "scm": "svn.dev.java.net",
+ "sha1": "5q/nDzmuttNPJKmHCgKm+nuIeRo=",
+ "title": "Subversion Release Manager plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/svn-release-mgr/1.2/svn-release-mgr.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Release+Manager"
+ },
+ "svn-revert-plugin": {
+ "buildDate": "Sep 10, 2012",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.37"
+ },
+ {
+ "name": "claim",
+ "optional": true,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ki82",
+ "email": "akerstrom.christian@gmail.com",
+ "name": "Christian Åkerström"
+ },
+ {
+ "developerId": "davidparsson",
+ "email": "david.parsson@gmail.com",
+ "name": "David Pärsson"
+ }
+ ],
+ "excerpt": "Automatically reverts SVN commits for a build if build status is changed from successful to unstable.",
+ "gav": "org.jenkins-ci.plugins:svn-revert-plugin:1.3",
+ "labels": [
+ "scm-related",
+ "post-build"
+ ],
+ "name": "svn-revert-plugin",
+ "previousTimestamp": "2012-09-05T15:11:18.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-09-10T11:48:22.00Z",
+ "requiredCore": "1.444",
+ "scm": "github.com",
+ "sha1": "Hy5wQTFuyu97RzYj5DphUzVrY7w=",
+ "title": "Subversion Revert Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/svn-revert-plugin/1.3/svn-revert-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVN+Revert+Plugin"
+ },
+ "svn-tag": {
+ "buildDate": "Jul 07, 2015",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "k2nakamura",
+ "email": "kenjin@clazzsoft.com",
+ "name": "Kenji Nakamura"
+ }
+ ],
+ "excerpt": "This plugin automatically performs subversion tagging (technically speaking svn copy) on successful build.",
+ "gav": "org.jenkins-ci.plugins:svn-tag:1.18",
+ "labels": [
+ "scm-related",
+ "post-build"
+ ],
+ "name": "svn-tag",
+ "previousTimestamp": "2014-07-17T10:07:04.00Z",
+ "previousVersion": "1.17",
+ "releaseTimestamp": "2015-07-07T12:21:08.00Z",
+ "requiredCore": "1.568",
+ "scm": "github.com",
+ "sha1": "ic0IUXODhxoWvEqBTT/a4xLmvXk=",
+ "title": "Jenkins Subversion Tagging Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/svn-tag/1.18/svn-tag.hpi",
+ "version": "1.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Tagging+Plugin"
+ },
+ "svn-workspace-cleaner": {
+ "buildDate": "Aug 26, 2014",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.37"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "davidparsson",
+ "email": "david.parsson@gmail.com",
+ "name": "David Pärsson"
+ },
+ {
+ "developerId": "ki82",
+ "email": "akerstrom.christian@gmail.com",
+ "name": "Christian Åkerström"
+ }
+ ],
+ "excerpt": "Automatically removes SVN modules from workspaces when the modules are removed from the job's SVN configuration.",
+ "gav": "org.jenkins-ci.plugins:svn-workspace-cleaner:1.1",
+ "labels": [
+ "scm-related",
+ "buildwrapper"
+ ],
+ "name": "svn-workspace-cleaner",
+ "previousTimestamp": "2012-05-11T14:03:36.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2014-08-26T14:59:26.00Z",
+ "requiredCore": "1.444",
+ "scm": "github.com",
+ "sha1": "P/kP6nUj/DuBDlK/7ilh8FrVsyY=",
+ "title": "Subversion Workspace Cleaner",
+ "url": "http://updates.jenkins-ci.org/download/plugins/svn-workspace-cleaner/1.1/svn-workspace-cleaner.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVN+Workspace+Cleaner"
+ },
+ "svncompat13": {
+ "buildDate": "Nov 19, 2011",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kk@kohsuke.org",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin forces the built-in SVNKit library to use the Subversion 1.3 working copy format (instead of the most recent one it supports).",
+ "gav": "org.jvnet.hudson.plugins:svncompat13:1.2",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "svncompat13",
+ "previousTimestamp": "2008-07-28T21:13:00.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2011-11-19T10:27:28.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "Bjq5bod/k2kbz9Q8GyWDzfkycZ0=",
+ "title": "SVN 1.3 Compatibility Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/svncompat13/1.2/svncompat13.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVNCompat13+Plugin"
+ },
+ "svncompat14": {
+ "buildDate": "Nov 19, 2011",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kk@kohsuke.org",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin forces the built-in SVNKit library to use the Subversion 1.4 working copy format (instead of the most recent one it supports).",
+ "gav": "org.jvnet.hudson.plugins:svncompat14:1.1",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "svncompat14",
+ "previousTimestamp": "2008-07-30T14:11:24.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-11-19T18:29:54.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "nORj9bJ8VRMi1UXP+7PqT4DspYk=",
+ "title": "SVN 1.4 Compatibility Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/svncompat14/1.1/svncompat14.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVNCompat14+Plugin"
+ },
+ "svnmerge": {
+ "buildDate": "Dec 10, 2015",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "2.5"
+ },
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.3"
+ },
+ {
+ "name": "promoted-builds",
+ "optional": true,
+ "version": "2.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "hugueschabot",
+ "name": "Hugues Chabot"
+ }
+ ],
+ "excerpt": "This plugin automates feature/personal branch workflow on Jenkins",
+ "gav": "org.jenkins-ci.plugins:svnmerge:2.6",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "svnmerge",
+ "previousTimestamp": "2015-01-09T21:20:24.00Z",
+ "previousVersion": "2.5",
+ "releaseTimestamp": "2015-12-10T17:02:22.00Z",
+ "requiredCore": "1.568",
+ "scm": "github.com",
+ "sha1": "XmriZPOEMZvjvJUnqOIynK1TixU=",
+ "title": "Jenkins svnmerge plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/svnmerge/2.6/svnmerge.hpi",
+ "version": "2.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Merge+Plugin"
+ },
+ "svnpublisher": {
+ "buildDate": "Jan 10, 2010",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "brentsmith",
+ "name": "Brent Smith"
+ }
+ ],
+ "excerpt": "This plugin allows you to upload artifacts to a subversion repository. This is done via a delete/import of the items requested.",
+ "gav": "com.mtvi.plateng.subversion:svnpublisher:0.1",
+ "labels": [
+ "upload"
+ ],
+ "name": "svnpublisher",
+ "releaseTimestamp": "2010-01-10T18:16:52.00Z",
+ "requiredCore": "1.319",
+ "scm": "svn.dev.java.net",
+ "sha1": "AnWSoTU78viv60MrJy62OjJxRjo=",
+ "title": "SVN Publisher plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/svnpublisher/0.1/svnpublisher.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVN+Publisher"
+ },
+ "swarm": {
+ "buildDate": "Jul 27, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ }
+ ],
+ "excerpt": "This plugin enables slaves to auto-discover nearby Jenkins master and join it automatically, thereby forming an ad-hoc cluster.",
+ "gav": "org.jenkins-ci.plugins:swarm:2.2",
+ "labels": [
+ "slaves"
+ ],
+ "name": "swarm",
+ "previousTimestamp": "2016-05-20T14:43:44.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2016-07-27T00:01:14.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "NpZxgGqBqDHFtduystDzZ4zSAkE=",
+ "title": "Jenkins Self-Organizing Swarm Plug-in Modules",
+ "url": "http://updates.jenkins-ci.org/download/plugins/swarm/2.2/swarm.hpi",
+ "version": "2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Swarm+Plugin"
+ },
+ "synergy": {
+ "buildDate": "Sep 17, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jribette",
+ "name": "Jean-Noël RIBETTE"
+ },
+ {
+ "developerId": "pantherse",
+ "name": "Keith Mendoza"
+ }
+ ],
+ "excerpt": "This plugin provide integrations with IBM Rational CM/Synergy 6.5a Version Manager SCM",
+ "gav": "org.jenkins-ci.plugins:synergy:1.7",
+ "labels": [
+ "scm"
+ ],
+ "name": "synergy",
+ "previousTimestamp": "2011-08-16T11:26:04.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2013-09-17T18:39:26.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "HkJz0pbzK9BFK8s1iL7CvAg2/vM=",
+ "title": "Synergy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/synergy/1.7/synergy.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Synergy+Plugin"
+ },
+ "syslog-logger": {
+ "buildDate": "Nov 11, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cleclerc",
+ "email": "cleclerc@cloudbees.com",
+ "name": "Cyrille Le Clerc"
+ }
+ ],
+ "excerpt": "This plugin send jenkins logs to syslog.",
+ "gav": "org.jenkins-ci.plugins:syslog-logger:1.0.5",
+ "labels": [
+ "misc"
+ ],
+ "name": "syslog-logger",
+ "previousTimestamp": "2015-04-16T10:12:10.00Z",
+ "previousVersion": "1.0.4",
+ "releaseTimestamp": "2015-11-11T23:35:50.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "BGk+SKnBwMCf+prHNLfMz0FHNTU=",
+ "title": "Jenkins Syslog logger plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/syslog-logger/1.0.5/syslog-logger.hpi",
+ "version": "1.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Syslog+Logger+Plugin"
+ },
+ "systemloadaverage-monitor": {
+ "buildDate": "Aug 13, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefanbrausch@dev.java.net",
+ "name": "Stefan Brausch"
+ }
+ ],
+ "excerpt": "Use to display the System Load Average of unix nodes.",
+ "gav": "org.jvnet.hudson.plugins:systemloadaverage-monitor:1.2",
+ "labels": [
+ "slaves"
+ ],
+ "name": "systemloadaverage-monitor",
+ "previousTimestamp": "2010-02-12T17:17:58.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2011-08-13T11:48:06.00Z",
+ "requiredCore": "1.395",
+ "scm": "github.com",
+ "sha1": "4g0Wp80C+xGOCyphSZNMYjBjA4Q=",
+ "title": "Slave Monitor for system load average",
+ "url": "http://updates.jenkins-ci.org/download/plugins/systemloadaverage-monitor/1.2/systemloadaverage-monitor.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/System+Load+Average+Monitor+Plugin"
+ },
+ "tag-profiler": {
+ "buildDate": "Feb 15, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "stephenconnolly",
+ "name": "Stephen Connolly"
+ }
+ ],
+ "excerpt": "This plugin is aimed at plugin developers. It allows you to profile different sections of jelly tags in order to identify response bottlenecks.",
+ "gav": "org.jenkins-ci.plugins:tag-profiler:0.2",
+ "labels": [],
+ "name": "tag-profiler",
+ "previousTimestamp": "2013-02-15T12:21:00.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2013-02-15T15:29:50.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "kyIDJIJGvYm7WvYayml9LCvwihA=",
+ "title": "Tag Profiler Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tag-profiler/0.2/tag-profiler.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tag+Profiler+Plugin"
+ },
+ "tap": {
+ "buildDate": "Aug 26, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4"
+ },
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kinow",
+ "email": "brunodepaulak@yahoo.com.br",
+ "name": "Bruno P. Kinoshita"
+ }
+ ],
+ "excerpt": "This plug-in adds support to <a href='http://www.testanything.org'>TAP</a>&amp;nbsp;test result files to Jenkins. It lets you specify an <a href='http://ant.apache.org/manual/dirtasks.html#patterns'>ant-like pattern</a> for a directory that contains your&amp;nbsp;TAP files. ",
+ "gav": "org.tap4j:tap:2.0.1",
+ "labels": [
+ "report"
+ ],
+ "name": "tap",
+ "previousTimestamp": "2016-08-20T14:14:52.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-08-26T21:46:54.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "CF2oXJiahgZQkIEqKHcz6b/XsSk=",
+ "title": "Jenkins TAP Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tap/2.0.1/tap.hpi",
+ "version": "2.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TAP+Plugin"
+ },
+ "tasks": {
+ "buildDate": "Jun 01, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.77"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drulli",
+ "email": "ullrich.hafner@gmail.com",
+ "name": "Ulli Hafner"
+ }
+ ],
+ "excerpt": "This plugin scans the workspace files for open tasks and generates a trend report.",
+ "gav": "org.jvnet.hudson.plugins:tasks:4.49",
+ "labels": [
+ "report",
+ "maven"
+ ],
+ "name": "tasks",
+ "previousTimestamp": "2016-02-28T00:05:02.00Z",
+ "previousVersion": "4.48",
+ "releaseTimestamp": "2016-06-01T14:51:38.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "Nic08GUAaa/1HTAERyAbJkEjRac=",
+ "title": "Task Scanner Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tasks/4.49/tasks.hpi",
+ "version": "4.49",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Task+Scanner+Plugin"
+ },
+ "tattletale-plugin": {
+ "buildDate": "May 29, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vtunka",
+ "name": "Vaclav Tunka"
+ }
+ ],
+ "excerpt": "This plugin generates <a href='http://www.jboss.org/tattletale'>Tattletale</a> reports, mostly useful for jar file analysis. ",
+ "gav": "org.jenkins-ci.plugins:tattletale-plugin:0.3",
+ "labels": [
+ "report"
+ ],
+ "name": "tattletale-plugin",
+ "releaseTimestamp": "2012-05-29T22:55:06.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "1EpOcO03OEAzSZzAh/dnV8of5e4=",
+ "title": "Tattletale plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tattletale-plugin/0.3/tattletale-plugin.hpi",
+ "version": "0.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tattletale+Plugin"
+ },
+ "tcl": {
+ "buildDate": "Mar 16, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "Plugin provides Tcl buildstep ",
+ "gav": "org.jenkins-ci.plugins:tcl:0.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "tcl",
+ "previousTimestamp": "2013-03-14T09:33:34.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2013-03-16T18:19:00.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "AOWrKH1BSUW9qisTaC0zkFUUqX8=",
+ "title": "Tcl Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tcl/0.4/tcl.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tcl+Plugin"
+ },
+ "team-views": {
+ "buildDate": "Jun 04, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "t_westling",
+ "email": "tomas.westling@sonymobile.com",
+ "name": "Tomas Westling"
+ },
+ {
+ "developerId": "rsandell",
+ "email": "robert.sandell@sonymobile.com",
+ "name": "Robert Sandell"
+ }
+ ],
+ "excerpt": "This plugin provides Teams, sharing one Jenkins master, to have their own area with views similar to a User's my-views. ",
+ "gav": "com.sonymobile.jenkins.plugins.teamviews:team-views:0.9.0",
+ "labels": [
+ "misc",
+ "ui"
+ ],
+ "name": "team-views",
+ "releaseTimestamp": "2013-06-04T16:26:38.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "spPPnj3vgrU1bCMwYgef+w1qHLU=",
+ "title": "Team Views",
+ "url": "http://updates.jenkins-ci.org/download/plugins/team-views/0.9.0/team-views.hpi",
+ "version": "0.9.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Team+Views+Plugin"
+ },
+ "teamconcert": {
+ "buildDate": "Aug 16, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-scm-step",
+ "optional": true,
+ "version": "1.3"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ssangaiah",
+ "name": "Sridevi Sangaiah"
+ },
+ {
+ "developerId": "nsraghu",
+ "name": "Raghu NS"
+ },
+ {
+ "developerId": "lvaikunt",
+ "name": "Lakshmi Narasimhan T V"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with <a href='https://jazz.net/products/rational-team-concert/'>Rational Team Concert</a> <a href='https://jazz.net/products/rational-team-concert/features/scm'>source control</a> and <a href='https://jazz.net/products/rational-team-concert/features/build'>build</a> using the richer features of the build toolkit instead of the command line. With the build toolkit this plugin adds traceability links from a Jenkins build to an RTC build result, workspace and snapshot.&amp;nbsp; It also publishes links to work items, change sets and file contents captured in the snapshot.&amp;nbsp; It leverages the current RTC features and workflows that users are already familiar with such as, emails, toaster popups, reporting, dashboards, etc. ",
+ "gav": "org.jenkins-ci.plugins:teamconcert:1.2.0.1",
+ "labels": [
+ "scm"
+ ],
+ "name": "teamconcert",
+ "previousTimestamp": "2016-04-22T17:10:58.00Z",
+ "previousVersion": "1.2.0.0",
+ "releaseTimestamp": "2016-08-16T09:08:12.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "pgDB31dibyWOeG4ogYs4lZfTf28=",
+ "title": "Team Concert Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/teamconcert/1.2.0.1/teamconcert.hpi",
+ "version": "1.2.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Team+Concert+Plugin"
+ },
+ "teamconcert-git": {
+ "buildDate": "Jun 24, 2015",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.16.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "clkkishore",
+ "email": "clkkishore@gmail.com",
+ "name": "Krishna Kishore"
+ }
+ ],
+ "excerpt": "Integrates Jenkins with <a href='https://jazz.net/products/rational-team-concert/'>Rational Team Concert</a>&amp;nbsp;for Jenkins Builds which use Git as source control. This plugin will create traceability links from a Jenkins build to Rational Team Concert <a href='https://jazz.net/products/rational-team-concert/features/wi'>Work Items</a>&amp;nbsp;and&amp;nbsp;<a href='https://jazz.net/products/rational-team-concert/features/build'>build</a>&amp;nbsp;results. This plugin adds traceability links from a Jenkins build to an RTC build result.&amp;nbsp; It also publishes links to work items and annotates the change log generated by Jenkins with links to RTC Work Items; It leverages the current RTC features and workflows that users are already familiar with such as, emails, toaster popups, reporting, dashboards, etc. ",
+ "gav": "org.jenkins-ci.plugins:teamconcert-git:1.0.10",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "teamconcert-git",
+ "previousTimestamp": "2014-11-18T16:02:02.00Z",
+ "previousVersion": "1.0.9",
+ "releaseTimestamp": "2015-06-24T15:34:14.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "SlFADyKFJ3dJtfNkrkr7b25+0KQ=",
+ "title": "Team Concert Git Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/teamconcert-git/1.0.10/teamconcert-git.hpi",
+ "version": "1.0.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Team+Concert+Git+Plugin"
+ },
+ "template-project": {
+ "buildDate": "Feb 06, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": true,
+ "version": "1.4"
+ },
+ {
+ "name": "multiple-scms",
+ "optional": true,
+ "version": "0.5"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": true,
+ "version": "4.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "huybrechts",
+ "name": "Tom Huybrechts"
+ },
+ {
+ "developerId": "Brantone",
+ "name": "Brenton B"
+ }
+ ],
+ "excerpt": "This plugin lets you use builders, publishers and SCM settings from another project.",
+ "gav": "org.jenkins-ci.plugins:template-project:1.5.2",
+ "labels": [
+ "scm",
+ "notifier",
+ "builder"
+ ],
+ "name": "template-project",
+ "previousTimestamp": "2015-09-03T01:34:10.00Z",
+ "previousVersion": "1.5.1",
+ "releaseTimestamp": "2016-02-06T15:27:34.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "DxsNiOmzNUyVBVqCLf3Ce3l4ceo=",
+ "title": "Template Project plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/template-project/1.5.2/template-project.hpi",
+ "version": "1.5.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Template+Project+Plugin"
+ },
+ "template-workflows": {
+ "buildDate": "Aug 15, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "shaib",
+ "email": "shai.bhur@gmail.com",
+ "name": "Shai Ben-Hur"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins.plugin.templateWorkflows:template-workflows:1.2",
+ "labels": [
+ "misc"
+ ],
+ "name": "template-workflows",
+ "releaseTimestamp": "2012-08-15T20:48:42.00Z",
+ "requiredCore": "1.477",
+ "scm": "github.com",
+ "sha1": "pYV90D4T2R9iQDj6JEZfjau9X/A=",
+ "title": "Template Workflows",
+ "url": "http://updates.jenkins-ci.org/download/plugins/template-workflows/1.2/template-workflows.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Template+Workflows+Plugin"
+ },
+ "terminal": {
+ "buildDate": "May 23, 2013",
+ "dependencies": [
+ {
+ "name": "jquery-ui",
+ "optional": false,
+ "version": "1.0.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kiy0taka",
+ "name": "Kiyotaka Oku"
+ },
+ {
+ "developerId": "joeyjiao",
+ "name": "Joey Jiao"
+ }
+ ],
+ "excerpt": "This plugin allows you to execute OS commands.",
+ "gav": "org.jenkins-ci.plugins:terminal:1.4",
+ "labels": [
+ "misc"
+ ],
+ "name": "terminal",
+ "previousTimestamp": "2011-03-01T15:27:18.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2013-05-23T11:35:46.00Z",
+ "requiredCore": "1.515",
+ "scm": "github.com",
+ "sha1": "j88efddC/8w/CWaHKhuNomSR1Qo=",
+ "title": "Jenkins Terminal Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/terminal/1.4/terminal.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Terminal+Plugin"
+ },
+ "terminate-ssh-processes-plugin": {
+ "buildDate": "May 31, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plugin check if there is some ssh process associated with slave during before its new connection ",
+ "gav": "org.jenkins-ci.plugins:terminate-ssh-processes-plugin:1.0",
+ "labels": [],
+ "name": "terminate-ssh-processes-plugin",
+ "releaseTimestamp": "2012-05-31T15:57:30.00Z",
+ "requiredCore": "1.430",
+ "scm": "github.com",
+ "sha1": "RQHrZsJbpU8TpJVTdXHyBddJYMc=",
+ "title": "Terminate ssh processes",
+ "url": "http://updates.jenkins-ci.org/download/plugins/terminate-ssh-processes-plugin/1.0/terminate-ssh-processes-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ssh+processes+check+plugin"
+ },
+ "terraform": {
+ "buildDate": "Jul 29, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dpires",
+ "email": "david.pires@gmail.com",
+ "name": "David Pires"
+ }
+ ],
+ "excerpt": "Allows users to launch infrastructure using&amp;nbsp;<a href='https://terraform.io/'>Terraform</a> as a build wrapper.",
+ "gav": "org.jenkins-ci.plugins:terraform:1.0.6",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "terraform",
+ "previousTimestamp": "2016-07-17T12:16:28.00Z",
+ "previousVersion": "1.0.5",
+ "releaseTimestamp": "2016-07-29T19:28:48.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "c/QsjnJycRbRQ2kjNa430vca0/o=",
+ "title": "Terraform Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/terraform/1.0.6/terraform.hpi",
+ "version": "1.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Terraform+Plugin"
+ },
+ "test-results-analyzer": {
+ "buildDate": "Mar 22, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2-beta-4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "menonvarun",
+ "email": "mr.varun.menon@gmail.com",
+ "name": "Varun Menon"
+ }
+ ],
+ "excerpt": "A plugin that shows history of test execution results in a tabular format. ",
+ "gav": "org.jenkins-ci.plugins:test-results-analyzer:0.3.4",
+ "labels": [
+ "report"
+ ],
+ "name": "test-results-analyzer",
+ "previousTimestamp": "2016-02-19T14:26:36.00Z",
+ "previousVersion": "0.3.3",
+ "releaseTimestamp": "2016-03-22T15:49:32.00Z",
+ "requiredCore": "1.594",
+ "scm": "github.com",
+ "sha1": "BRVtdsq/VyvVVNepAH4TkV8+wcA=",
+ "title": "Test Results Analyzer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/test-results-analyzer/0.3.4/test-results-analyzer.hpi",
+ "version": "0.3.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Test+Results+Analyzer+Plugin"
+ },
+ "test-stability": {
+ "buildDate": "Jun 25, 2013",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.480"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kutzi",
+ "email": "christoph.kutzinsk@esailors.de",
+ "name": "Christoph Kutzinski"
+ }
+ ],
+ "excerpt": "This plugin adds historical information about the stability of tests - i.e. the percentage how often they failed. ",
+ "gav": "de.esailors.jenkins:test-stability:1.0",
+ "labels": [
+ "misc",
+ "report"
+ ],
+ "name": "test-stability",
+ "releaseTimestamp": "2013-06-25T18:54:56.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "M0+42ZAvXV7cNMomSubjKxXO7y8=",
+ "title": "Test stability history",
+ "url": "http://updates.jenkins-ci.org/download/plugins/test-stability/1.0/test-stability.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Test+stability+plugin"
+ },
+ "testInProgress": {
+ "buildDate": "Feb 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "cchabanois",
+ "email": "cchabanois@gmail.com",
+ "name": "Cedric Chabanois"
+ },
+ {
+ "developerId": "menonvarun",
+ "email": "mr.varun.menon@gmail.com",
+ "name": "Varun Menon"
+ }
+ ],
+ "excerpt": "This plugin allows you to see how the tests progress during a build.",
+ "gav": "org.jenkins-ci.plugins:testInProgress:1.4",
+ "labels": [
+ "buildwrapper",
+ "misc"
+ ],
+ "name": "testInProgress",
+ "previousTimestamp": "2014-08-05T14:50:16.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2015-02-18T20:59:02.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "K7eiifFfMdGQ9ZeI0DjZ8prcA3o=",
+ "title": "Test In Progress Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testInProgress/1.4/testInProgress.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Test+In+Progress+Plugin"
+ },
+ "testabilityexplorer": {
+ "buildDate": "May 29, 2012",
+ "dependencies": [
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.437"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "reikje",
+ "name": "Reik Schatz"
+ },
+ {
+ "developerId": "vsbmeza",
+ "name": "Marton Meszaros"
+ }
+ ],
+ "excerpt": "This plugin generates trend reports for the <a href='http://code.google.com/p/testability-explorer/'>Testability Explorer</a>, an open source program which uses byte-code analysis to look for testability pitfalls in Java code.&amp;nbsp; ",
+ "gav": "org.jenkins-ci.plugins:testabilityexplorer:0.4",
+ "labels": [
+ "report"
+ ],
+ "name": "testabilityexplorer",
+ "previousTimestamp": "2009-12-29T16:48:38.00Z",
+ "previousVersion": "0.3",
+ "releaseTimestamp": "2012-05-29T17:59:16.00Z",
+ "requiredCore": "1.437",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "0PMfy3eqPw9Gu/HEs1VyBIF/7Ro=",
+ "title": "Hudson Testability Explorer Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testabilityexplorer/0.4/testabilityexplorer.hpi",
+ "version": "0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Testability+Explorer+Plugin"
+ },
+ "testcomplete-xunit": {
+ "buildDate": "Mar 25, 2015",
+ "dependencies": [
+ {
+ "name": "xunit",
+ "optional": false,
+ "version": "1.90"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "fmiguelez",
+ "name": "Fernando Miguélez Palomo"
+ }
+ ],
+ "excerpt": "Jenkins Plugin that transforms <a href='http://en.wikipedia.org/wiki/TestComplete'>TestComplete</a> <a href='http://en.wikipedia.org/wiki/MHTML'>MHT</a> test reports into xUnit format so they can be integrated with Jenkins' JUnit features. ",
+ "gav": "org.jenkins-ci.plugins:testcomplete-xunit:1.1",
+ "labels": [],
+ "name": "testcomplete-xunit",
+ "previousTimestamp": "2015-03-17T23:29:12.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-03-25T22:06:54.00Z",
+ "requiredCore": "1.598",
+ "scm": "github.com",
+ "sha1": "G4oW3qLgxlIEyloKZiRfx/gcjZM=",
+ "title": "Jenkins TestComplete xUnit Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testcomplete-xunit/1.1/testcomplete-xunit.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TestComplete+xUnit+Plugin"
+ },
+ "testdroid-run-in-cloud": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "bitbar",
+ "email": "info@bitbar.com",
+ "name": "Bitbar"
+ }
+ ],
+ "excerpt": "Enables easy integration between Jenkins CI and <a href='http://Bitbar.com/'>Bitbar Testing</a>. For further documentation please refer to&amp;nbsp;<a href='http://docs.testdroid.com/testdroid-cloud-integration/jenkins-plugin/'>Bitbar Testing help</a>.",
+ "gav": "testdroid:testdroid-run-in-cloud:1.0.15",
+ "labels": [
+ "report"
+ ],
+ "name": "testdroid-run-in-cloud",
+ "previousTimestamp": "2016-09-07T15:45:38.00Z",
+ "previousVersion": "1.0.14",
+ "releaseTimestamp": "2016-09-23T09:48:26.00Z",
+ "requiredCore": "1.427",
+ "scm": "github.com",
+ "sha1": "J38AY+mAcJbumk+xgZpBus9Hzrk=",
+ "title": "Testdroid Plugin for CI",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testdroid-run-in-cloud/1.0.15/testdroid-run-in-cloud.hpi",
+ "version": "1.0.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bitbar+Testing+Run+In+Cloud+Plugin"
+ },
+ "testingbot": {
+ "buildDate": "Nov 09, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "testingbot",
+ "email": "info@testingbot.com",
+ "name": "Jochen Delabie"
+ }
+ ],
+ "excerpt": "This plugin allows for integration of&amp;nbsp;<a href='http://testingbot.com'>TestingBot</a>&amp;nbsp;Selenium in Jenkins. TestingBot provides <a href='https://testingbot.com'>cross browser testing</a> in the cloud.",
+ "gav": "testingbot:testingbot:1.12",
+ "labels": [
+ "buildwrapper",
+ "post-build",
+ "report"
+ ],
+ "name": "testingbot",
+ "previousTimestamp": "2015-08-29T10:44:12.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2015-11-09T17:22:08.00Z",
+ "requiredCore": "1.570",
+ "scm": "github.com",
+ "sha1": "Gon1TRAvIB9ROIhEjj+eSuZjt58=",
+ "title": "Jenkins TestingBot plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testingbot/1.12/testingbot.hpi",
+ "version": "1.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TestingBot+Selenium+Plugin"
+ },
+ "testlink": {
+ "buildDate": "Apr 17, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kinow",
+ "email": "brunodepaulak@yahoo.com.br",
+ "name": "Bruno P. Kinoshita"
+ },
+ {
+ "developerId": "cesar1983",
+ "email": "cesar.fa@gmail.com",
+ "name": "Cesar Fernandes de Almeida"
+ },
+ {
+ "developerId": "floreal",
+ "email": "ftoumikian@april.org",
+ "name": "Floreal Toumikian"
+ },
+ {
+ "developerId": "orenault",
+ "email": "orenault@gmail.com",
+ "name": "Olivier Renault"
+ },
+ {
+ "developerId": "omerkel",
+ "email": "Merkel.Oliver@web.de",
+ "name": "Oliver Merkel"
+ },
+ {
+ "developerId": "yachoor",
+ "email": "jchorko@gmail.com",
+ "name": "Janusz Chorko"
+ }
+ ],
+ "excerpt": "This plug-in integrates Jenkins and <a href='http://testlink.org/'>TestLink</a> and generates reports on automated test execution. With this plug-in you can manage your tests in TestLink, schedule and control in Jenkins, and execute using your favorite test execution tool (TestPartner, Selenium, TestNG, Perl modules, PHPUnit, among others). ",
+ "gav": "org.jenkins-ci.plugins:testlink:3.12",
+ "labels": [
+ "builder"
+ ],
+ "name": "testlink",
+ "previousTimestamp": "2015-11-14T16:55:20.00Z",
+ "previousVersion": "3.11",
+ "releaseTimestamp": "2016-04-17T11:39:10.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "Ydj7z6qSDylUjURs40Tm1t4sXNw=",
+ "title": "Jenkins TestLink Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testlink/3.12/testlink.hpi",
+ "version": "3.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TestLink+Plugin"
+ },
+ "testng-plugin": {
+ "buildDate": "Jul 05, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nullin",
+ "email": "nullin@nullin.com",
+ "name": "Nalin Makar"
+ }
+ ],
+ "excerpt": "This plugin allows you to publish TestNG results generated using&amp;nbsp;{{org.testng.reporters.XMLReporter}}.",
+ "gav": "org.jenkins-ci.plugins:testng-plugin:1.14",
+ "labels": [
+ "report"
+ ],
+ "name": "testng-plugin",
+ "previousTimestamp": "2016-05-15T16:21:16.00Z",
+ "previousVersion": "1.13",
+ "releaseTimestamp": "2016-07-05T20:45:16.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "yEYY9XmF3BpDw0HSIx6zg9jEnM8=",
+ "title": "TestNG Results Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testng-plugin/1.14/testng-plugin.hpi",
+ "version": "1.14",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/testng-plugin"
+ },
+ "testodyssey-execution": {
+ "buildDate": "Sep 27, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ekateam",
+ "email": "sunilkumar@ekatechserv.com",
+ "name": "Sunil Kumar"
+ }
+ ],
+ "excerpt": "Allows users to trigger execution on cloud of already recorded automation tests via&amp;nbsp;<a href='https://test-odyssey.com/'>Test-Odyssey</a>.",
+ "gav": "com.ekatechserv:testodyssey-execution:1.2.2",
+ "labels": [],
+ "name": "testodyssey-execution",
+ "previousTimestamp": "2016-09-23T14:20:44.00Z",
+ "previousVersion": "1.2.1",
+ "releaseTimestamp": "2016-09-27T10:47:00.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "fU00IHXi0ebGxSk/iaUC+0TkWHo=",
+ "title": "Test Odyssey Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testodyssey-execution/1.2.2/testodyssey-execution.hpi",
+ "version": "1.2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Test-Odyssey+Execution+Plugin"
+ },
+ "testopia": {
+ "buildDate": "Jan 06, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tooh",
+ "email": "florijn.peter@gmail.com",
+ "name": "Peter Florijn"
+ },
+ {
+ "developerId": "kinow",
+ "email": "brunodepaulak@yahoo.com.br",
+ "name": "Bruno P. Kinoshita"
+ }
+ ],
+ "excerpt": "This plug-in integrates *Jenkins* with Testopia and generates reports on automated test execution. With this plug-in you can manage your tests in Testopia, schedule and control in *Jenkins*, and execute using your favorite test execution tool (TestPartner, Selenium, TestNG, Perl modules, prove, PHPUnit, among others).",
+ "gav": "jenkins.plugins.testopia:testopia:1.3",
+ "labels": [],
+ "name": "testopia",
+ "previousTimestamp": "2012-10-14T22:45:18.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2013-01-06T16:11:36.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "7PZ2sL7Ey6eumDnbaQBAYafCPg0=",
+ "title": "Jenkins Testopia Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/testopia/1.3/testopia.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Testopia+Plugin"
+ },
+ "text-file-operations": {
+ "buildDate": "Apr 08, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sankethpb",
+ "name": "Sanketh P B"
+ }
+ ],
+ "excerpt": "Provides a build step to create or update text file with specified content. Common use cases: Create readme, build details, batch files or any scripts which can be executed later. ",
+ "gav": "com.etas.jenkins.plugins:text-file-operations:1.3.2",
+ "labels": [
+ "file",
+ "builder",
+ "report",
+ "textfile",
+ "misc"
+ ],
+ "name": "text-file-operations",
+ "previousTimestamp": "2016-03-26T19:48:14.00Z",
+ "previousVersion": "1.3.1",
+ "releaseTimestamp": "2016-04-08T22:39:14.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "+/WTry0UMKDvxjH7K6+lZ/BR1hE=",
+ "title": "Text File Operations",
+ "url": "http://updates.jenkins-ci.org/download/plugins/text-file-operations/1.3.2/text-file-operations.hpi",
+ "version": "1.3.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Text+File+Operations+Plugin"
+ },
+ "text-finder": {
+ "buildDate": "Jan 31, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "name": "Santiago Pericas-Geertsen"
+ }
+ ],
+ "excerpt": "This plugin lets you search keywords in the files you specified and use that to&amp;nbsp;downgrade a &quot;successful&quot; build&amp;nbsp;to be unstable&amp;nbsp;or a failure.",
+ "gav": "org.jenkins-ci.plugins:text-finder:1.10",
+ "labels": [
+ "post-build"
+ ],
+ "name": "text-finder",
+ "previousTimestamp": "2011-02-13T22:49:46.00Z",
+ "previousVersion": "1.9",
+ "releaseTimestamp": "2014-01-31T13:14:08.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "X3wfZJzoSX2l/jhocR9k9A8Jx+A=",
+ "title": "Jenkins TextFinder plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/text-finder/1.10/text-finder.hpi",
+ "version": "1.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Text-finder+Plugin"
+ },
+ "text-finder-run-condition": {
+ "buildDate": "Jul 13, 2012",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ },
+ {
+ "name": "run-condition",
+ "optional": false,
+ "version": "0.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "cjo9900",
+ "name": "Chris Johnson"
+ }
+ ],
+ "excerpt": "Text Finder run condition to select whether to execute a build step or publisher. Used by the [Run Condition Plugin]. ",
+ "gav": "org.jenkins-ci.plugins:text-finder-run-condition:0.1",
+ "labels": [
+ "misc",
+ "runcondition"
+ ],
+ "name": "text-finder-run-condition",
+ "releaseTimestamp": "2012-07-13T17:30:02.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "MELbWymaMLgpY4L5+iYtLbOHqYM=",
+ "title": "Text Finder Run Condition Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/text-finder-run-condition/0.1/text-finder-run-condition.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Text+Finder+Run+Condition+Plugin"
+ },
+ "tfs": {
+ "buildDate": "Sep 16, 2016",
+ "compatibleSinceVersion": "3.2.0",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.16"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.5.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "olivierdagenais",
+ "email": "olivier.dagenais@gmail.com",
+ "name": "Olivier Dagenais"
+ },
+ {
+ "developerId": "dastahel",
+ "email": "dastahel@microsoft.com",
+ "name": "David Staheli"
+ },
+ {
+ "developerId": "mosabua",
+ "email": "manfred@simpligility.com",
+ "name": "Manfred Moser"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with Visual Studio Team Foundation Server (TFS) and Team Services. &amp;nbsp;Both Git and <a href='https://msdn.microsoft.com/en-us/library/ms181237.aspx'>Team Foundation Version Control</a>&amp;nbsp;are supported.",
+ "gav": "org.jenkins-ci.plugins:tfs:5.2.1",
+ "labels": [
+ "scm"
+ ],
+ "name": "tfs",
+ "previousTimestamp": "2016-09-14T22:00:14.00Z",
+ "previousVersion": "5.2.0",
+ "releaseTimestamp": "2016-09-16T13:35:18.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "0LZAaC6zBH/mgDMvTCSpJvU94Vo=",
+ "title": "Team Foundation Server Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tfs/5.2.1/tfs.hpi",
+ "version": "5.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Team+Foundation+Server+Plugin"
+ },
+ "thinBackup": {
+ "buildDate": "Oct 14, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "tofuatjava",
+ "email": "tfuerer.javanet@gmail.com",
+ "name": "Thomas Fuerer"
+ },
+ {
+ "developerId": "alienllama",
+ "email": "alienllama@gmail.com",
+ "name": "Matthias Steinkogler"
+ }
+ ],
+ "excerpt": "This plugin simply backs up the global and job specific configurations (not the archive or the workspace). ",
+ "gav": "org.jvnet.hudson.plugins:thinBackup:1.7.4",
+ "labels": [
+ "misc"
+ ],
+ "name": "thinBackup",
+ "previousTimestamp": "2013-07-31T11:48:34.00Z",
+ "previousVersion": "1.7.3",
+ "releaseTimestamp": "2013-10-14T19:50:26.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "B1lLhMHS151NOlRL0Xnb6Ze7Yoc=",
+ "title": "ThinBackup",
+ "url": "http://updates.jenkins-ci.org/download/plugins/thinBackup/1.7.4/thinBackup.hpi",
+ "version": "1.7.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/thinBackup"
+ },
+ "thread-dump-action-plugin": {
+ "buildDate": "Mar 03, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provides an easy mechanism to obtain a Jenkins thread dump.",
+ "gav": "org.jenkins-ci.plugins:thread-dump-action-plugin:1.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "thread-dump-action-plugin",
+ "releaseTimestamp": "2012-03-03T21:13:42.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "Y9bzNdNigix2G0qnQCepFNRqkjk=",
+ "title": "Thread Dump Action Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/thread-dump-action-plugin/1.0/thread-dump-action-plugin.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Thread+Dump+Action+Plugin"
+ },
+ "threadfix": {
+ "buildDate": "Aug 02, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "automationdomination",
+ "email": "brandon@automationdomination.me",
+ "name": "Brandon Spruth"
+ },
+ {
+ "developerId": "cbaek",
+ "email": "christopher.baek@gmail.com",
+ "name": "Christopher Baek"
+ }
+ ],
+ "excerpt": "Uploads any supported ThreadFix scan file to your ThreadFix server ",
+ "gav": "org.jenkins-ci.plugins:threadfix:1.5.3",
+ "labels": [
+ "post-build"
+ ],
+ "name": "threadfix",
+ "previousTimestamp": "2015-10-01T16:26:40.00Z",
+ "previousVersion": "1.5.2",
+ "releaseTimestamp": "2016-08-02T04:14:36.00Z",
+ "requiredCore": "1.560",
+ "scm": "github.com",
+ "sha1": "NfoDIh/TRHArwB+S1uHkj7B+vQ4=",
+ "title": "ThreadFix Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/threadfix/1.5.3/threadfix.hpi",
+ "version": "1.5.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ThreadFix+Plugin"
+ },
+ "throttle-concurrents": {
+ "buildDate": "Apr 11, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.4.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "abayer",
+ "email": "andrew.bayer@gmail.com",
+ "name": "Andrew Bayer"
+ },
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "This plugin allows for throttling the number of concurrent builds of a project running per node or globally.",
+ "gav": "org.jenkins-ci.plugins:throttle-concurrents:1.9.0",
+ "labels": [
+ "slaves",
+ "cluster",
+ "buildwrapper"
+ ],
+ "name": "throttle-concurrents",
+ "previousTimestamp": "2016-04-05T18:05:34.00Z",
+ "previousVersion": "1.8.5",
+ "releaseTimestamp": "2016-04-11T11:39:54.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "IoJ/i+O1hSIEzfBjsbaTDF5K4nY=",
+ "title": "Jenkins Throttle Concurrent Builds Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/throttle-concurrents/1.9.0/throttle-concurrents.hpi",
+ "version": "1.9.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Throttle+Concurrent+Builds+Plugin"
+ },
+ "thucydides": {
+ "buildDate": "Oct 07, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "hwellmann",
+ "email": "harald.wellmann@gmx.de",
+ "name": "Harald Wellmann"
+ }
+ ],
+ "excerpt": "A plugin for publishing web test reports created by <a href='https://github.com/thucydides-webtests/thucydides/wiki'>Thucydides</a>. ",
+ "gav": "net.thucydides.jenkins:thucydides:0.1",
+ "labels": [
+ "report"
+ ],
+ "name": "thucydides",
+ "releaseTimestamp": "2012-10-07T23:40:48.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "5+nhQAxBWEC8y/q0gEHKHzmrpIY=",
+ "title": "Thucydides Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/thucydides/0.1/thucydides.hpi",
+ "version": "0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Thucydides+Plugin"
+ },
+ "tibco-builder": {
+ "buildDate": "Dec 17, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "federicopastore",
+ "email": "federico.pastore@gmail.com",
+ "name": "Federico Pastore"
+ }
+ ],
+ "excerpt": "This plugin allows your Jenkins installation to launch TIBCO wrappers as a build step. ",
+ "gav": "org.jenkins-ci.plugins:tibco-builder:1.4",
+ "labels": [
+ "builder"
+ ],
+ "name": "tibco-builder",
+ "previousTimestamp": "2013-12-08T18:28:56.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2013-12-17T17:45:02.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "39aFbwdqBA9IbOiEr6XuQdNkYf0=",
+ "title": "Tibco Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tibco-builder/1.4/tibco-builder.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tibco+Builder+Plugin"
+ },
+ "timestamper": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": true,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stevengbrown",
+ "email": "StevenGBrown@gmail.com",
+ "name": "Steven Brown"
+ }
+ ],
+ "excerpt": "Adds timestamps to the Console Output. ",
+ "gav": "org.jenkins-ci.plugins:timestamper:1.8.7",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "timestamper",
+ "previousTimestamp": "2016-09-19T13:11:28.00Z",
+ "previousVersion": "1.8.6",
+ "releaseTimestamp": "2016-10-05T10:41:26.00Z",
+ "requiredCore": "1.608",
+ "scm": "github.com",
+ "sha1": "qN4TEFy8h8mJ7dZXaKlmenxU9ec=",
+ "title": "Timestamper",
+ "url": "http://updates.jenkins-ci.org/download/plugins/timestamper/1.8.7/timestamper.hpi",
+ "version": "1.8.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Timestamper"
+ },
+ "tinfoil-scan": {
+ "buildDate": "Jul 01, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "angelman",
+ "email": "angel@tinfoilsecurity.com",
+ "name": "Angel Irizarry"
+ }
+ ],
+ "excerpt": "Allows you to run web security tests from the cloud using <a href='https://www.tinfoilsecurity.com/'>Tinfoil Security</a>. ",
+ "gav": "com.tinfoilsecurity.plugins:tinfoil-scan:1.5",
+ "labels": [
+ "external"
+ ],
+ "name": "tinfoil-scan",
+ "previousTimestamp": "2016-03-02T17:13:02.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2016-07-01T14:01:30.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "QYOeDVm8dK0kYT0sKtAZcl8XzLA=",
+ "title": "Tinfoil Security Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tinfoil-scan/1.5/tinfoil-scan.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tinfoil+Security+Plugin"
+ },
+ "tmpcleaner": {
+ "buildDate": "Jun 16, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "olamy",
+ "name": "Olivier Lamy"
+ }
+ ],
+ "excerpt": "This plugin allows you to cleanup JVM temporary files.",
+ "gav": "org.jenkins-ci.plugins:tmpcleaner:1.2",
+ "labels": [
+ "misc"
+ ],
+ "name": "tmpcleaner",
+ "previousTimestamp": "2011-12-29T16:28:36.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-06-16T23:09:54.00Z",
+ "requiredCore": "1.596",
+ "scm": "github.com",
+ "sha1": "UtAdk9EtmiNG3vIsfXCuKCMlfS0=",
+ "title": "Jenkins java.io.tmpdir cleaner plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tmpcleaner/1.2/tmpcleaner.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tmp+Cleaner+Plugin"
+ },
+ "token-macro": {
+ "buildDate": "Sep 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kkawaguchi@cloudbees.com",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "slide_o_mix",
+ "email": "slide.o.mix@gmail.com",
+ "name": "Alex Earl"
+ }
+ ],
+ "excerpt": "This plugin adds reusable macro expansion capability for other plugins to use",
+ "gav": "org.jenkins-ci.plugins:token-macro:2.0",
+ "labels": [],
+ "name": "token-macro",
+ "previousTimestamp": "2015-12-14T13:07:56.00Z",
+ "previousVersion": "1.12.1",
+ "releaseTimestamp": "2016-09-20T06:01:58.00Z",
+ "requiredCore": "1.642.2",
+ "scm": "github.com",
+ "sha1": "PFaGFdac4ttrgzeMPqet1rNQPoI=",
+ "title": "Token Macro Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/token-macro/2.0/token-macro.hpi",
+ "version": "2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Token+Macro+Plugin"
+ },
+ "tool-labels-plugin": {
+ "buildDate": "Dec 15, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kazssym",
+ "email": "kazssym@vx68k.org",
+ "name": "Kaz Nishimura"
+ }
+ ],
+ "excerpt": "This plugin allows users to add labels dynamically to every node with a specific tool installation so that a job can restrict the nodes where it runs by their tool locations.",
+ "gav": "org.jenkins-ci.plugins:tool-labels-plugin:3.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "tool-labels-plugin",
+ "previousTimestamp": "2014-12-03T17:41:50.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2014-12-15T09:37:18.00Z",
+ "requiredCore": "1.532",
+ "scm": "bitbucket.org",
+ "sha1": "DNi6ntDkZRxudHu5VxmonAWfT50=",
+ "title": "Tool Labels Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tool-labels-plugin/3.0/tool-labels-plugin.hpi",
+ "version": "3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tool+Labels+Plugin"
+ },
+ "toolenv": {
+ "buildDate": "Mar 27, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick",
+ "email": "jglick@cloudbees.com",
+ "name": "Jesse Glick"
+ }
+ ],
+ "excerpt": "Lets you use &quot;tools&quot; in unusual ways, such as from shell scripts.",
+ "gav": "org.jenkins-ci.plugins:toolenv:1.1",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "toolenv",
+ "previousTimestamp": "2010-02-15T21:24:08.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2013-03-27T08:22:24.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "qjagVDcPzo60edN4UZTL6plLvss=",
+ "title": "Tool Environment plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/toolenv/1.1/toolenv.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tool+Environment+Plugin"
+ },
+ "trac": {
+ "buildDate": "Feb 08, 2012",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": true,
+ "version": "1.1.14"
+ },
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kohsuke",
+ "email": "kk@kohsuke.org",
+ "name": "Kohsuke Kawaguchi"
+ },
+ {
+ "developerId": "bradfritz",
+ "name": "Brad Fritz"
+ },
+ {
+ "developerId": "pgweiss",
+ "name": "Paul Weiss"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ },
+ {
+ "developerId": "gerd_zanker",
+ "email": "gerd.zanker@googlemail.com",
+ "name": "Gerd Zanker"
+ }
+ ],
+ "excerpt": "This plugin creates links from Jenkins&amp;nbsp;projects to <a href='http://trac.edgewall.com/'>Trac</a> instances.",
+ "gav": "org.jenkins-ci.plugins:trac:1.13",
+ "labels": [
+ "external"
+ ],
+ "name": "trac",
+ "previousTimestamp": "2011-11-04T12:10:46.00Z",
+ "previousVersion": "1.12",
+ "releaseTimestamp": "2012-02-08T20:55:48.00Z",
+ "requiredCore": "1.409",
+ "scm": "github.com",
+ "sha1": "z8tyrD9yYpCGZ0TEnoNgYNGax40=",
+ "title": "Edgewall Trac Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/trac/1.13/trac.hpi",
+ "version": "1.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Trac+Plugin"
+ },
+ "trac-publisher-plugin": {
+ "buildDate": "Aug 11, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "batkinson",
+ "email": "brent.atkinson@gmail.com",
+ "name": "Brent Atkinson"
+ }
+ ],
+ "excerpt": "This plug-in adds a publisher that posts build links to Trac tickets referenced in built scm revisions. ",
+ "gav": "org.jenkins-ci.plugins:trac-publisher-plugin:1.3",
+ "labels": [
+ "external"
+ ],
+ "name": "trac-publisher-plugin",
+ "previousTimestamp": "2011-12-04T20:49:42.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2012-08-11T09:24:50.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "NfLwrghh5zE+e7pEeU7oiPbsAsU=",
+ "title": "Trac Publisher Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/trac-publisher-plugin/1.3/trac-publisher-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Trac+Publisher+Plugin"
+ },
+ "tracking-git": {
+ "buildDate": "Feb 18, 2014",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "2.0.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "daldinger",
+ "name": "Dean Aldinger"
+ }
+ ],
+ "excerpt": "Lets one project track the Git revisions that are built for another project. ",
+ "gav": "org.jenkins-ci.plugins:tracking-git:1.0",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "tracking-git",
+ "releaseTimestamp": "2014-02-18T16:50:54.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "wWRhrOKu+sjTTsB3ZF2f0mp+WNg=",
+ "title": "Tracking Git Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tracking-git/1.0/tracking-git.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tracking+Git+Plugin"
+ },
+ "tracking-svn": {
+ "buildDate": "Jan 03, 2011",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.17"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "huybrechts",
+ "name": "Tom Huybrechts"
+ }
+ ],
+ "excerpt": "Lets one project track the Subversion revisions that are checked out for another project. ",
+ "gav": "org.jvnet.hudson.plugins:tracking-svn:1.1",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "tracking-svn",
+ "previousTimestamp": "2009-11-28T15:43:08.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2011-01-03T18:40:04.00Z",
+ "requiredCore": "1.357",
+ "scm": "svn.java.net",
+ "sha1": "8iLbn7AAHUQil0wS4BUjG4160lU=",
+ "title": "Tracking SVN Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tracking-svn/1.1/tracking-svn.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tracking+SVN+Plugin"
+ },
+ "transifex": {
+ "buildDate": "Nov 05, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "hakan",
+ "email": "hakan@gurkensalat.com",
+ "name": "Hakan"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with&amp;nbsp;<a href='https://transifex.com/'>Transifex</a>&amp;nbsp;projects.",
+ "gav": "com.gurkensalat.jenkins-ci.plugins:transifex:0.1.0",
+ "labels": [
+ "misc",
+ "external"
+ ],
+ "name": "transifex",
+ "releaseTimestamp": "2013-11-05T15:37:42.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "S0HDveKe5Gg4BRr747R1qVPtnv8=",
+ "title": "Transifex Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/transifex/0.1.0/transifex.hpi",
+ "version": "0.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Transifex+Plugin"
+ },
+ "translation": {
+ "buildDate": "Jun 21, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "recena"
+ }
+ ],
+ "excerpt": "This plugin adds an additional dialog box in every page, which enables people to contribute localizations for the messages they are seeing in the current page.",
+ "gav": "org.jenkins-ci.plugins:translation:1.15",
+ "labels": [
+ "ui"
+ ],
+ "name": "translation",
+ "previousTimestamp": "2016-04-17T20:01:14.00Z",
+ "previousVersion": "1.14",
+ "releaseTimestamp": "2016-06-21T11:46:14.00Z",
+ "requiredCore": "1.580",
+ "scm": "github.com",
+ "sha1": "D1lRNjoYmI9Ice/oZEES3Z0QnOo=",
+ "title": "Jenkins Translation Assistance plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/translation/1.15/translation.hpi",
+ "version": "1.15",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Translation+Assistance+Plugin"
+ },
+ "travis-yml": {
+ "buildDate": "Jul 30, 2014",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.10"
+ },
+ {
+ "name": "git",
+ "optional": false,
+ "version": "1.1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "nakagawa.masaki"
+ }
+ ],
+ "excerpt": "This plugin runs your jobs using .travis.yml file in your project. ",
+ "gav": "org.jenkins-ci.ruby-plugins:travis-yml:0.1.0",
+ "labels": [
+ "builder"
+ ],
+ "name": "travis-yml",
+ "releaseTimestamp": "2014-07-30T12:42:26.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "p0m2WZsk6cluAJ0JSyx17rUNAew=",
+ "title": "Travis YML Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/travis-yml/0.1.0/travis-yml.hpi",
+ "version": "0.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Travis+YML+Plugin"
+ },
+ "tuxdroid": {
+ "buildDate": "Nov 04, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "taillant",
+ "name": "Jean-Marc Taillant"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Allows to publish the result of a build to a <a href='http://www.tuxdroid-community.net/?page=accueil'>TuxDroid community</a>.",
+ "gav": "org.jvnet.hudson.plugins:tuxdroid:1.7",
+ "labels": [
+ "notifier"
+ ],
+ "name": "tuxdroid",
+ "previousTimestamp": "2010-02-10T20:34:02.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2011-11-04T10:11:28.00Z",
+ "requiredCore": "1.392",
+ "scm": "github.com",
+ "sha1": "G3Nk2Swa7PIHuHiTBP5ttfEfTDA=",
+ "title": "TuxDroid Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/tuxdroid/1.7/tuxdroid.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TuxDroid+Plugin"
+ },
+ "twitter": {
+ "buildDate": "Jun 19, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mikesir87",
+ "email": "mikesir87@gmail.com",
+ "name": "Michael Irwin"
+ }
+ ],
+ "excerpt": "This plugin posts build results to Twitter.",
+ "gav": "org.jenkins-ci.plugins:twitter:0.7",
+ "labels": [
+ "notifier"
+ ],
+ "name": "twitter",
+ "previousTimestamp": "2010-09-16T22:48:24.00Z",
+ "previousVersion": "0.6",
+ "releaseTimestamp": "2013-06-19T08:09:42.00Z",
+ "requiredCore": "1.445",
+ "scm": "github.com",
+ "sha1": "ttreo92QdIL/UYixYZIloTRBhxQ=",
+ "title": "Twitter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/twitter/0.7/twitter.hpi",
+ "version": "0.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Twitter+Plugin"
+ },
+ "typetalk": {
+ "buildDate": "Feb 25, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ikikko",
+ "email": "ikikko+github@gmail.com",
+ "name": "Tomonari Nakamura"
+ },
+ {
+ "developerId": "baba",
+ "name": "Yasuyuki Baba"
+ }
+ ],
+ "excerpt": "Typetalk Plugin",
+ "gav": "org.jenkins-ci.plugins:typetalk:1.1.0",
+ "labels": [
+ "notifier",
+ "buildwrapper"
+ ],
+ "name": "typetalk",
+ "previousTimestamp": "2014-05-11T17:17:54.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2015-02-25T00:23:56.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "8FPflylcliewXPUpnvFUkNE1BGo=",
+ "title": "Typetalk Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/typetalk/1.1.0/typetalk.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Typetalk+Plugin"
+ },
+ "ui-samples-plugin": {
+ "buildDate": "Oct 04, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Demonstration of UI controls available in Jenkins based on Stapler, Jelly, Groovy, etc.",
+ "gav": "org.jenkins-ci.main:ui-samples-plugin:2.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "ui-samples-plugin",
+ "previousTimestamp": "2013-10-07T08:00:56.00Z",
+ "previousVersion": "1.534",
+ "releaseTimestamp": "2013-10-04T17:29:58.00Z",
+ "requiredCore": "1.533",
+ "scm": "github.com",
+ "sha1": "Ov+uBjiO67v9oiuPionLH9g3lNM=",
+ "title": "Jenkins UI sample plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ui-samples-plugin/2.0/ui-samples-plugin.hpi",
+ "version": "2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/UI+Samples+Plugin"
+ },
+ "ui-test-capture": {
+ "buildDate": "Feb 23, 2016",
+ "compatibleSinceVersion": "1.29",
+ "dependencies": [
+ {
+ "name": "jquery",
+ "optional": false,
+ "version": "1.11.2-0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vbathke",
+ "email": "contato@victorbathke.eti.br",
+ "name": "Victor Bathke"
+ }
+ ],
+ "excerpt": "Stream, persist and classify UI Test Results from a running Build. The plugin is agnostic about what test engine you use if the required informations was provided. ",
+ "gav": "org.jenkins-ci.plugins:ui-test-capture:1.0.43",
+ "labels": [
+ "report"
+ ],
+ "name": "ui-test-capture",
+ "previousTimestamp": "2016-02-23T22:28:32.00Z",
+ "previousVersion": "1.0.42",
+ "releaseTimestamp": "2016-02-23T23:39:22.00Z",
+ "requiredCore": "1.599",
+ "scm": "github.com",
+ "sha1": "iQzZpPYo+zcduVPlAFKJjiuksas=",
+ "title": "UI Test Capture",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ui-test-capture/1.0.43/ui-test-capture.hpi",
+ "version": "1.0.43",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/UI+Test+Capture+Plugin"
+ },
+ "unicorn": {
+ "buildDate": "Aug 08, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "nej",
+ "email": "jernejz@gmail.com",
+ "name": "Jernej Zorec"
+ }
+ ],
+ "excerpt": "This plugin uses W3C's Unified Validator, which helps improve the quality of Web pages by performing a variety of checks.",
+ "gav": "si.nej.hudson.plugins:unicorn:0.1.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "unicorn",
+ "previousTimestamp": "2011-02-13T23:31:48.00Z",
+ "previousVersion": "0.1.0",
+ "releaseTimestamp": "2011-08-08T01:11:46.00Z",
+ "requiredCore": "1.377",
+ "scm": "github.com",
+ "sha1": "CRsQG3baoeQSvbxfxLbWOXvK9ZA=",
+ "title": "Unicorn Validation Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/unicorn/0.1.1/unicorn.hpi",
+ "version": "0.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unicorn+Validation+Plugin"
+ },
+ "unique-id": {
+ "buildDate": "Aug 30, 2016",
+ "compatibleSinceVersion": "2.0",
+ "dependencies": [
+ {
+ "name": "cloudbees-folder",
+ "optional": true,
+ "version": "5.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stephenc"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:unique-id:2.1.3",
+ "labels": [],
+ "name": "unique-id",
+ "previousTimestamp": "2016-07-01T12:37:30.00Z",
+ "previousVersion": "2.1.2",
+ "releaseTimestamp": "2016-08-30T17:25:22.00Z",
+ "requiredCore": "1.615",
+ "scm": "github.com",
+ "sha1": "S04UwVrQRnX+6XpnPv9C8Dejxas=",
+ "title": "Unique ID Library Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/unique-id/2.1.3/unique-id.hpi",
+ "version": "2.1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unique+ID+Plugin"
+ },
+ "unity-asset-server": {
+ "buildDate": "Sep 27, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mbrunken"
+ }
+ ],
+ "excerpt": "This plugin allows you to use <a href='http://unity3d.com/unity/features/unity-asset-server.html'>Unity Asset Server</a> as a SCM.",
+ "gav": "org.jvnet.hudson.plugins:unity-asset-server:1.1.1",
+ "labels": [
+ "scm"
+ ],
+ "name": "unity-asset-server",
+ "previousTimestamp": "2010-09-23T17:42:32.00Z",
+ "previousVersion": "1.1.0",
+ "releaseTimestamp": "2010-09-27T11:30:50.00Z",
+ "requiredCore": "1.318",
+ "scm": "svn.dev.java.net",
+ "sha1": "3Bqn+CLdG3vFmXgD+svECx04N+Q=",
+ "title": "Unity Asset Server Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/unity-asset-server/1.1.1/unity-asset-server.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unity+Asset+Server+Plugin"
+ },
+ "unity3d-plugin": {
+ "buildDate": "Sep 11, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lacostej",
+ "email": "jerome.lacoste@gmail.com",
+ "name": "Jerome Lacoste"
+ }
+ ],
+ "excerpt": "<a href='http://unity3d.com/'>Unity3d</a> is a powerful 3d game creation editor and engine that runs on Mac and Windows. This plugin adds the ability to call the Unity3d Editor from the command line to automate build and packaging of Unity3d applications. ",
+ "gav": "org.jenkins-ci.plugins:unity3d-plugin:1.3",
+ "labels": [
+ "builder"
+ ],
+ "name": "unity3d-plugin",
+ "previousTimestamp": "2015-09-10T23:37:08.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-09-11T16:16:18.00Z",
+ "requiredCore": "1.436",
+ "scm": "github.com",
+ "sha1": "O2i3/m57MQFZ0WTkiq+Vs+nY6CI=",
+ "title": "Jenkins Unity3d plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/unity3d-plugin/1.3/unity3d-plugin.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unity3dBuilder+Plugin"
+ },
+ "unleash": {
+ "buildDate": "Sep 29, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.4"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": false,
+ "version": "1.12"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "shillner",
+ "name": "Stanley Hillner"
+ }
+ ],
+ "excerpt": "This is a Jenkins Build Wrapper for Maven Jobs. It enables you to perform Maven releases using the <a href='https://github.com/shillner/unleash-maven-plugin'>unleash-maven-plugin</a>. ",
+ "gav": "com.itemis.jenkins.plugins:unleash:2.0.0",
+ "labels": [
+ "buildwrapper",
+ "maven",
+ "listview-column",
+ "trigger"
+ ],
+ "name": "unleash",
+ "previousTimestamp": "2016-08-29T13:30:50.00Z",
+ "previousVersion": "1.2.1",
+ "releaseTimestamp": "2016-09-29T22:00:54.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "d6FIHg9gzcebhvBo+4vWIORjMc0=",
+ "title": "Unleash Maven Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/unleash/2.0.0/unleash.hpi",
+ "version": "2.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unleash+Plugin"
+ },
+ "uno-choice": {
+ "buildDate": "Feb 14, 2016",
+ "dependencies": [
+ {
+ "name": "scriptler",
+ "optional": false,
+ "version": "2.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "kinow",
+ "name": "Bruno P. Kinoshita"
+ },
+ {
+ "developerId": "imoutsatsos",
+ "name": "Ioannis K. Moutsatsos"
+ }
+ ],
+ "excerpt": "A Jenkins UI plugin for generating and rendering multiple value options for a job parameter. The parameter options can be dynamically generated from a Groovy script and can respond to changes in other job parameters. The value options can be rendered as combo-boxes, check-boxes, radio-buttons or rich HTML. Active Choices strives to provide in a single plugin functionality found scattered among several pre-existing plugins and some unique capabilities that are not available yet. ",
+ "gav": "org.biouno:uno-choice:1.4",
+ "labels": [
+ "parameter"
+ ],
+ "name": "uno-choice",
+ "previousTimestamp": "2015-12-24T20:00:44.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2016-02-14T20:30:36.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "HEzRhKdArA5bfsgPmk6tLDUAfbg=",
+ "title": "Active Choices Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/uno-choice/1.4/uno-choice.hpi",
+ "version": "1.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Active+Choices+Plugin"
+ },
+ "unreliable-slave-plugin": {
+ "buildDate": "Aug 22, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plugin creates statistic about failed jobs which failed on slave and after configured count of failures try slave reconnect of put offline and send notification ",
+ "gav": "jenkinsci:unreliable-slave-plugin:1.2",
+ "labels": [],
+ "name": "unreliable-slave-plugin",
+ "previousTimestamp": "2013-02-28T12:42:52.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-08-22T09:46:00.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "WSTdCIcVtafbEYDGo407sYxrmSc=",
+ "title": "Unreliable slave plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/unreliable-slave-plugin/1.2/unreliable-slave-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unreliable+slave+plugin"
+ },
+ "update-sites-manager": {
+ "buildDate": "Feb 28, 2016",
+ "compatibleSinceVersion": "2.0.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ikedam",
+ "name": "IKEDA Yasuyuki"
+ }
+ ],
+ "excerpt": "This plugin is to manage update sites, where Jenkins accesses in order to retrieve plugins.",
+ "gav": "jp.ikedam.jenkins.plugins:update-sites-manager:2.0.0",
+ "labels": [
+ "ui"
+ ],
+ "name": "update-sites-manager",
+ "previousTimestamp": "2013-07-28T11:40:10.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2016-02-28T11:37:32.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "Ul8g/ZdEK//z3Z2Uu8tFTkeR81c=",
+ "title": "UpdateSites Manager plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/update-sites-manager/2.0.0/update-sites-manager.hpi",
+ "version": "2.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/UpdateSites+Manager+plugin"
+ },
+ "upstream-downstream-view": {
+ "buildDate": "Jun 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "lvotypko",
+ "email": "lvotypko@redhat.com",
+ "name": "Lucie Votypkova"
+ }
+ ],
+ "excerpt": "This plugin provides the new column view for Upstreamed/Downstreamed jobs ",
+ "gav": "org.jenkins-ci.plugins:upstream-downstream-view:1.006",
+ "labels": [],
+ "name": "upstream-downstream-view",
+ "previousTimestamp": "2014-12-06T11:09:30.00Z",
+ "previousVersion": "1.005",
+ "releaseTimestamp": "2015-06-18T20:03:54.00Z",
+ "requiredCore": "1.517",
+ "scm": "github.com",
+ "sha1": "Yr5im7JJG8N+wD7Lupf4Gq1ajDY=",
+ "title": "Jenkins Upstream Downstream Column Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/upstream-downstream-view/1.006/upstream-downstream-view.hpi",
+ "version": "1.006",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Upstream+Downstream+View+Plugin"
+ },
+ "uptime": {
+ "buildDate": "Feb 03, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "chrismair",
+ "name": "Chris Mair"
+ }
+ ],
+ "excerpt": "This plugin adds an &quot;Uptime&quot; column in the list view that shows the percentage of time that a job has been building successfully since its first build. ",
+ "gav": "org.jenkins-ci.plugins:uptime:1.0",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "uptime",
+ "releaseTimestamp": "2013-02-03T15:53:46.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "XhfGbJQaXVSHXBJz9uwA1TzID18=",
+ "title": "Uptime",
+ "url": "http://updates.jenkins-ci.org/download/plugins/uptime/1.0/uptime.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Uptime+Plugin"
+ },
+ "url-auth-sso": {
+ "buildDate": "Jun 10, 2016",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.17"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "pgmann",
+ "email": "pgmann@pgmann.cf",
+ "name": "pgmann"
+ }
+ ],
+ "excerpt": "Allows users to be logged in to Jenkins automatically when they are logged into another site.",
+ "gav": "cf.pgmann.plugins:url-auth-sso:1.0",
+ "labels": [
+ "user"
+ ],
+ "name": "url-auth-sso",
+ "releaseTimestamp": "2016-06-10T15:48:02.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "WSBnrHrhCOm2fay/Ng7OWAE9jps=",
+ "title": "URL Auth Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/url-auth-sso/1.0/url-auth-sso.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/URL+Auth+SSO+Plugin"
+ },
+ "urltrigger": {
+ "buildDate": "Dec 13, 2015",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "URLTrigger plug-in makes it possible to monitor changes of the response got from an URL invocation.",
+ "gav": "org.jenkins-ci.plugins:urltrigger:0.41",
+ "labels": [
+ "trigger"
+ ],
+ "name": "urltrigger",
+ "previousTimestamp": "2015-07-28T22:17:06.00Z",
+ "previousVersion": "0.40",
+ "releaseTimestamp": "2015-12-13T23:16:12.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "KTvaOdut/GiCXhEnnjdVmWNogEg=",
+ "title": "Jenkins URLTrigger Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/urltrigger/0.41/urltrigger.hpi",
+ "version": "0.41",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/URLTrigger+Plugin"
+ },
+ "utplsql": {
+ "buildDate": "Feb 15, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kusemuckl",
+ "email": "nils@kusemuckl.de",
+ "name": "Nils op den Winkel"
+ }
+ ],
+ "excerpt": "a tool to parse the output of <a href='http://utplsql.sourceforge.net/'>utplsql</a>",
+ "gav": "org.jenkins-ci.plugins:utplsql:0.6.1",
+ "labels": [
+ "report"
+ ],
+ "name": "utplsql",
+ "previousTimestamp": "2013-07-07T19:29:30.00Z",
+ "previousVersion": "0.5",
+ "releaseTimestamp": "2014-02-15T21:09:38.00Z",
+ "requiredCore": "1.454",
+ "scm": "github.com",
+ "sha1": "LR64oir++Erz+dQQFCEr9PH4P8c=",
+ "title": "Jenkins utPLSQL plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/utplsql/0.6.1/utplsql.hpi",
+ "version": "0.6.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/utplsql+Plugin"
+ },
+ "vaddy-plugin": {
+ "buildDate": "Apr 18, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "Kanatoko",
+ "email": "vaddy-plugin@st.bitforest.jp",
+ "name": "Tadashi Satoh"
+ }
+ ],
+ "excerpt": "<a href='http://vaddy.net'>VAddy</a> is automated web security testing service provided by&amp;nbsp;<a href='http://www.bitforest.jp'>Bitforest.</a> ",
+ "gav": "org.jenkins-ci.plugins:vaddy-plugin:1.2.8",
+ "labels": [
+ "external",
+ "notifier"
+ ],
+ "name": "vaddy-plugin",
+ "previousTimestamp": "2016-04-17T21:45:16.00Z",
+ "previousVersion": "1.2.7",
+ "releaseTimestamp": "2016-04-18T21:48:00.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "ZRZLKii/QksG/g18LQgBoHHiApg=",
+ "title": "VAddy Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vaddy-plugin/1.2.8/vaddy-plugin.hpi",
+ "version": "1.2.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VAddy+Plugin"
+ },
+ "vagrant": {
+ "buildDate": "Aug 24, 2016",
+ "compatibleSinceVersion": "1.0.0",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ShimiTaNaka",
+ "email": "elad.shmitanka@gmail.com",
+ "name": "Elad Shmitanka"
+ }
+ ],
+ "excerpt": "This plugin allows booting of Vagrant virtual machines, provisioning them and also executing scripts inside of them ",
+ "gav": "org.jenkins-ci.plugins:vagrant:1.0.2",
+ "labels": [],
+ "name": "vagrant",
+ "previousTimestamp": "2014-11-04T11:07:16.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2016-08-24T10:15:16.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "K4zSxXHaURwAtZlhwq1OPs/NHJ8=",
+ "title": "vagrant",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vagrant/1.0.2/vagrant.hpi",
+ "version": "1.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Vagrant-plugin"
+ },
+ "valgrind": {
+ "buildDate": "May 22, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "eXistence",
+ "email": "johannes.ohlemacher@googlemail.com",
+ "name": "Johannes Ohlemacher"
+ }
+ ],
+ "excerpt": "Integrates <a href='http://www.valgrind.org/'>Valgrind</a> in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:valgrind:0.27",
+ "labels": [
+ "report",
+ "builder"
+ ],
+ "name": "valgrind",
+ "previousTimestamp": "2015-05-14T00:56:52.00Z",
+ "previousVersion": "0.25",
+ "releaseTimestamp": "2016-05-22T13:09:44.00Z",
+ "requiredCore": "1.642",
+ "scm": "github.com",
+ "sha1": "jC1IJzM0yRentejasdKHBrbRmQI=",
+ "title": "Jenkins Valgrind Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/valgrind/0.27/valgrind.hpi",
+ "version": "0.27",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Valgrind+Plugin"
+ },
+ "validating-string-parameter": {
+ "buildDate": "Feb 04, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "petehayes",
+ "email": "petehayes@gmail.com",
+ "name": "Peter Hayes"
+ }
+ ],
+ "excerpt": "The validating string parameter plugin contributes a new parameter type to Jenkins that supports regular expression validation of the user's entered parameter.",
+ "gav": "org.jenkins-ci.plugins:validating-string-parameter:2.3",
+ "labels": [
+ "misc",
+ "parameter"
+ ],
+ "name": "validating-string-parameter",
+ "previousTimestamp": "2011-09-13T20:43:10.00Z",
+ "previousVersion": "2.2",
+ "releaseTimestamp": "2015-02-04T10:31:12.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "github.com",
+ "sha1": "bIE5AepuvuduTDmMnoVW6sj+ZkA=",
+ "title": "Validating String Parameter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/validating-string-parameter/2.3/validating-string-parameter.hpi",
+ "version": "2.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Validating+String+Parameter+Plugin"
+ },
+ "variant": {
+ "buildDate": "Aug 07, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "kohsuke"
+ }
+ ],
+ "excerpt": "This user-invisible library plugin allows other multi-modal plugins to behave differently depending on where they run.",
+ "gav": "org.jenkins-ci.plugins:variant:1.0",
+ "labels": [],
+ "name": "variant",
+ "releaseTimestamp": "2015-08-07T13:56:38.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "RQZE3AI+zcPRyvZxEYQCKWSOPuE=",
+ "title": "Variant Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/variant/1.0/variant.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Variant+Plugin"
+ },
+ "vault-scm-plugin": {
+ "buildDate": "Mar 01, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "StuartWhelan",
+ "email": "vault-plugin@somepointinthefuture.co.nz",
+ "name": "Stuart Whelan"
+ }
+ ],
+ "excerpt": "This plugin integrates&amp;nbsp;<a href='http://www.sourcegear.com/'>SourceGear Vault/Fortress&trade;</a>&amp;nbsp;version control with Jenkins. Currently the plugin supports polling SCM for changes, triggering build if there is changes and keeping the changelog. This is an unofficial plugin - neither the plugin or the developer are affiliated with SourceGear. ",
+ "gav": "org.jenkins-ci.plugins:vault-scm-plugin:1.1.1",
+ "labels": [
+ "scm"
+ ],
+ "name": "vault-scm-plugin",
+ "releaseTimestamp": "2013-03-01T08:41:14.00Z",
+ "requiredCore": "1.480",
+ "scm": "github.com",
+ "sha1": "g2hl9EH4CnBpDxRCh4fFJco6PQs=",
+ "title": "Jenkins SourceGear Vault Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vault-scm-plugin/1.1.1/vault-scm-plugin.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Vault+Plugin"
+ },
+ "vboxwrapper": {
+ "buildDate": "Feb 07, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "theirix",
+ "email": "theirix@gmail.com",
+ "name": "Eugene Seliverstov"
+ }
+ ],
+ "excerpt": "Plugin provides a build wrapper for starting and stopping slaves on the virtual machine",
+ "gav": "org.jenkins-ci.plugins:vboxwrapper:1.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "vboxwrapper",
+ "previousTimestamp": "2013-01-21T16:07:34.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2013-02-07T17:50:50.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "ElGU2bt16DoGLWIUOjT9v47qiQE=",
+ "title": "VBoxWrapper",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vboxwrapper/1.3/vboxwrapper.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VBoxWrapper"
+ },
+ "veracode-scanner": {
+ "buildDate": "Mar 29, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mbockus",
+ "name": "Mike Bockus"
+ }
+ ],
+ "excerpt": "This plugin provides a post build action&amp;nbsp;for submitting files for scanning to veracode.",
+ "gav": "org.jenkins-ci.plugins:veracode-scanner:1.6",
+ "labels": [
+ "post-build"
+ ],
+ "name": "veracode-scanner",
+ "previousTimestamp": "2015-09-25T10:29:54.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2016-03-29T15:30:08.00Z",
+ "requiredCore": "1.480.3",
+ "scm": "github.com",
+ "sha1": "bfaxG3B7iiV7byFtwDIT3yUnUC8=",
+ "title": "Veracode Scanner Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/veracode-scanner/1.6/veracode-scanner.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Veracode+Scanner+Plugin"
+ },
+ "versioncolumn": {
+ "buildDate": "Sep 03, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ssogabe",
+ "name": "Seiji Sogabe"
+ }
+ ],
+ "excerpt": "This plugin shows the version of slave on &quot;Manage Nodes&quot; page and make the node offline if it uses old slave.jar. ",
+ "gav": "org.jenkins-ci.plugins:versioncolumn:0.2",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "versioncolumn",
+ "previousTimestamp": "2011-03-19T16:21:52.00Z",
+ "previousVersion": "0.1",
+ "releaseTimestamp": "2011-09-03T09:24:36.00Z",
+ "requiredCore": "1.401",
+ "scm": "github.com",
+ "sha1": "rRRI1En1DfCnZAORNb6j2Xm+6GY=",
+ "title": "Jenkins Version Column plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/versioncolumn/0.2/versioncolumn.hpi",
+ "version": "0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VersionColumn+Plugin"
+ },
+ "versionnumber": {
+ "buildDate": "Aug 22, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "bahadir",
+ "email": "versionnumber-plugin.jenkins@deniz.bahadir.email",
+ "name": "Deniz Bahadir"
+ },
+ {
+ "developerId": "rosberglinhares",
+ "email": "rosberglinhares@gmail.com",
+ "name": "Rosberg Linhares"
+ },
+ {
+ "developerId": "abayer",
+ "email": "andrew.bayer@gmail.com",
+ "name": "Andrew Bayer"
+ },
+ {
+ "developerId": "cchabanois",
+ "email": "cchabanois@gmail.com",
+ "name": "Cedric Chabanois"
+ }
+ ],
+ "excerpt": "This plugin creates a new version number and stores it in the environment variable whose name you specify in the configuration.",
+ "gav": "org.jvnet.hudson.tools:versionnumber:1.7.2",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "versionnumber",
+ "previousTimestamp": "2016-08-22T14:04:28.00Z",
+ "previousVersion": "1.7.1",
+ "releaseTimestamp": "2016-08-22T14:23:34.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "xxa9uF/jGo5A2lAdA9Gkq38ncRk=",
+ "title": "Version Number Plug-In",
+ "url": "http://updates.jenkins-ci.org/download/plugins/versionnumber/1.7.2/versionnumber.hpi",
+ "version": "1.7.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Version+Number+Plugin"
+ },
+ "vertx": {
+ "buildDate": "Nov 24, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "blalor",
+ "email": "blalor@bravo5.org",
+ "name": "Brian Lalor"
+ }
+ ],
+ "excerpt": "<a href='http://vertx.io'>Vert.x</a> embedder for Jenkins",
+ "gav": "org.bravo5.jenkins.plugins:vertx:1.0.1",
+ "labels": [
+ "misc",
+ "external",
+ "notifier"
+ ],
+ "name": "vertx",
+ "previousTimestamp": "2012-11-19T22:14:18.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2012-11-24T22:01:38.00Z",
+ "requiredCore": "1.482",
+ "scm": "github.com",
+ "sha1": "pPJP92OlNpoPHGxP9aZzupcKuGo=",
+ "title": "Vert.x Embedder",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vertx/1.0.1/vertx.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Vert.x+Embedder"
+ },
+ "vessel": {
+ "buildDate": "Sep 06, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "devendralaulkar",
+ "email": "dev@vessel.io",
+ "name": "Devendra Laulkar"
+ }
+ ],
+ "excerpt": "This plugin uses the Vessel upload API to allow uploading your iOS/Android files to <a href='http://www.vessel.io'>www.vessel.io</a> Please see [http://docs.vessel.io/jenkins-plugin/] for instructions on using this plugin. ",
+ "gav": "org.jenkins-ci.plugins:vessel:1.0.1",
+ "labels": [
+ "upload",
+ "android"
+ ],
+ "name": "vessel",
+ "previousTimestamp": "2013-09-05T20:30:58.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2013-09-06T14:54:50.00Z",
+ "requiredCore": "1.509.1",
+ "scm": "github.com",
+ "sha1": "DqOlcjnYViSC+3wfIC7ZjQ6fbNY=",
+ "title": "Vessel Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vessel/1.0.1/vessel.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Vessel+plugin"
+ },
+ "view-cloner": {
+ "buildDate": "Jun 26, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "andrej.gukov@gmail.com",
+ "name": "Andrej Gukov"
+ }
+ ],
+ "excerpt": "Jenkins plugin that adds a build step for cloning a view and jobs that are visible in it.",
+ "gav": "org.jenkins-ci.plugins:view-cloner:1.1",
+ "labels": [],
+ "name": "view-cloner",
+ "releaseTimestamp": "2016-06-26T21:57:04.00Z",
+ "requiredCore": "1.651.3",
+ "scm": "github.com",
+ "sha1": "Dr5aKb70rKLxDMF03I77VXUaJg4=",
+ "title": "View Cloner Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/view-cloner/1.1/view-cloner.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/View+Cloner+Plugin"
+ },
+ "view-job-filters": {
+ "buildDate": "Aug 21, 2015",
+ "dependencies": [
+ {
+ "name": "m2-extra-steps",
+ "optional": true,
+ "version": "1.1.7"
+ },
+ {
+ "name": "email-ext",
+ "optional": true,
+ "version": "2.11"
+ },
+ {
+ "name": "subversion",
+ "optional": true,
+ "version": "1.24"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "1.2.0"
+ },
+ {
+ "name": "cvs",
+ "optional": true,
+ "version": "2.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Create smart views with exactly the jobs you want. Your smart views can automatically include or exclude jobs by using things like the SCM path or type, the job type, build statuses or trends or triggers, relevance to the logged-in user, email recipients, Maven configuration, job parameterization, and user permissions. Mix and match filters to narrow down to exactly what you want. ",
+ "gav": "org.jenkins-ci.plugins:view-job-filters:1.27",
+ "labels": [
+ "ui",
+ "scm-related",
+ "maven",
+ "user",
+ "emailext"
+ ],
+ "name": "view-job-filters",
+ "previousTimestamp": "2013-08-14T06:09:58.00Z",
+ "previousVersion": "1.26",
+ "releaseTimestamp": "2015-08-21T15:56:26.00Z",
+ "requiredCore": "1.509.3",
+ "scm": "github.com",
+ "sha1": "D4dGMdcdjuJs7QiG86NtQQ7nB98=",
+ "title": "View Job Filters",
+ "url": "http://updates.jenkins-ci.org/download/plugins/view-job-filters/1.27/view-job-filters.hpi",
+ "version": "1.27",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/View+Job+Filters"
+ },
+ "viewVC": {
+ "buildDate": "Jan 23, 2014",
+ "dependencies": [
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.23"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "mirumpf",
+ "email": "michael@rumpfonline.de",
+ "name": "Michael Rumpf"
+ },
+ {
+ "name": "Mike Salnikov"
+ },
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "This plugin integrates <a href='http://www.viewvc.org'>ViewVC</a> browser interface for CVS and Subversion with Hudson.",
+ "gav": "org.jenkins-ci.plugins:viewVC:1.7",
+ "labels": [
+ "scm-related"
+ ],
+ "name": "viewVC",
+ "previousTimestamp": "2013-05-21T21:35:40.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2014-01-23T13:26:08.00Z",
+ "requiredCore": "1.484",
+ "scm": "github.com",
+ "sha1": "bQa855Xox11YiLwsqRVNsXaDgd8=",
+ "title": "ViewVC Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/viewVC/1.7/viewVC.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ViewVC+Plugin"
+ },
+ "violation-columns": {
+ "buildDate": "Oct 02, 2013",
+ "dependencies": [
+ {
+ "name": "violations",
+ "optional": false,
+ "version": "0.7.11"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.420"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "stefanbrausch",
+ "email": "stefan.brausch@1und1.de",
+ "name": "Stefan Brausch"
+ },
+ {
+ "developerId": "boev",
+ "email": "iordan.boev@gmail.com",
+ "name": "Yordan Boev"
+ }
+ ],
+ "excerpt": "This plugin allows you to add columns to your Views with data from the <a href='https://wiki.jenkins-ci.org/display/JENKINS/Violations'>Violations Plugin</a>. ",
+ "gav": "org.jenkins-ci.plugins:violation-columns:1.6",
+ "labels": [
+ "listview-column"
+ ],
+ "name": "violation-columns",
+ "previousTimestamp": "2013-04-25T11:53:16.00Z",
+ "previousVersion": "1.5",
+ "releaseTimestamp": "2013-10-02T17:19:04.00Z",
+ "requiredCore": "1.420",
+ "scm": "github.com",
+ "sha1": "9Ld6OEiF2nc2RILa3GhuBX/EZLc=",
+ "title": "Violation Columns(List View Columns)",
+ "url": "http://updates.jenkins-ci.org/download/plugins/violation-columns/1.6/violation-columns.hpi",
+ "version": "1.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Violation+Columns+Plugin"
+ },
+ "violation-comments-to-github": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.4"
+ },
+ {
+ "name": "plain-credentials",
+ "optional": false,
+ "version": "1.2"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "tomasbjerre",
+ "email": "tomas.bjerre85@gmail.com",
+ "name": "Tomas Bjerre"
+ }
+ ],
+ "excerpt": "This plugin uses <a href='https://github.com/tomasbjerre/violation-comments-to-github-lib'>Violation Comments to GitHub Lib</a>. It will find report files from static code analysis and comment GitHub pull requests with the content. ",
+ "gav": "org.jenkins-ci.plugins:violation-comments-to-github:1.20",
+ "labels": [],
+ "name": "violation-comments-to-github",
+ "previousTimestamp": "2016-10-01T14:09:34.00Z",
+ "previousVersion": "1.19",
+ "releaseTimestamp": "2016-10-03T19:32:20.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "AU3dY2ptLjcWQ6Qxi5pojy/tyh8=",
+ "title": "Jenkins Violation Comments to GitHub Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/violation-comments-to-github/1.20/violation-comments-to-github.hpi",
+ "version": "1.20",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Violation+Comments+to+GitHub+Plugin"
+ },
+ "violation-comments-to-stash": {
+ "buildDate": "Oct 03, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "tomasbjerre",
+ "email": "tomas.bjerre85@gmail.com",
+ "name": "Tomas Bjerre"
+ }
+ ],
+ "excerpt": "Analyzes Jenkins workspace to find code analyzer report files, comments Bitbucket Server (or Stash) pull requests with code analyzer comments. ",
+ "gav": "org.jenkins-ci.plugins:violation-comments-to-stash:1.27",
+ "labels": [
+ "maven",
+ "dotnet",
+ "scm-related",
+ "scm",
+ "report",
+ "post-build"
+ ],
+ "name": "violation-comments-to-stash",
+ "previousTimestamp": "2016-10-01T14:10:16.00Z",
+ "previousVersion": "1.26",
+ "releaseTimestamp": "2016-10-03T19:32:58.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "FOAWD1hifqB+ch4gF8mDYH9Eig8=",
+ "title": "Jenkins Violation Comments to Bitbucket Server Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/violation-comments-to-stash/1.27/violation-comments-to-stash.hpi",
+ "version": "1.27",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Violation+Comments+to+Bitbucket+Server+Plugin"
+ },
+ "violations": {
+ "buildDate": "Sep 08, 2012",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.399"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "peterkittreilly",
+ "name": "Peter Reilly"
+ }
+ ],
+ "excerpt": "This plug-in generates reports static code violation detectors such as checkstyle, pmd, cpd, findbugs, codenarc, fxcop, stylecop and simian. ",
+ "gav": "org.jenkins-ci.plugins:violations:0.7.11",
+ "labels": [
+ "maven",
+ "report",
+ "dotnet"
+ ],
+ "name": "violations",
+ "previousTimestamp": "2011-08-08T12:13:38.00Z",
+ "previousVersion": "0.7.10",
+ "releaseTimestamp": "2012-09-08T13:31:26.00Z",
+ "requiredCore": "1.398",
+ "scm": "github.com",
+ "sha1": "UuXzsT6UDHmYxIKcHycTkHZXsvg=",
+ "title": "Jenkins Violations plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/violations/0.7.11/violations.hpi",
+ "version": "0.7.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Violations"
+ },
+ "virtualbox": {
+ "buildDate": "Oct 21, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "godin",
+ "name": "Evgeny Mandrikov"
+ },
+ {
+ "developerId": "choas",
+ "name": "Lars Gregori"
+ },
+ {
+ "developerId": "hgomez",
+ "email": "henri.gomez@gmail.com",
+ "name": "Henri Gomez"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='http://www.virtualbox.org/'>VirtualBox</a>&amp;nbsp;(version 3, 4.0, 4.1, 4.2 and 4.3) virtual machine.",
+ "gav": "org.jenkins-ci.plugins:virtualbox:0.7",
+ "labels": [
+ "slaves",
+ "buildwrapper"
+ ],
+ "name": "virtualbox",
+ "previousTimestamp": "2012-10-07T21:14:52.00Z",
+ "previousVersion": "0.6",
+ "releaseTimestamp": "2013-10-21T23:42:40.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "1+QB+i4RZ5TA9Ro9R8Ev8weyxMQ=",
+ "title": "Jenkins VirtualBox Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/virtualbox/0.7/virtualbox.hpi",
+ "version": "0.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VirtualBox+Plugin"
+ },
+ "visual-basic-6": {
+ "buildDate": "Sep 06, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "froque",
+ "email": "froque@premium-minds.com",
+ "name": "Filipe Roque"
+ }
+ ],
+ "excerpt": "Automating a build of a Visual Basic 6 has some challenges. This plugin aims to workaround some of these issues.",
+ "gav": "org.jenkins-ci.plugins:visual-basic-6:1.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "visual-basic-6",
+ "releaseTimestamp": "2016-09-06T19:55:36.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "wRnMzADIzTk9V9wuOBk3zESpCxc=",
+ "title": "Visual Basic 6 Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/visual-basic-6/1.3/visual-basic-6.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Visual+Basic+6+Plugin"
+ },
+ "visualworks-store": {
+ "buildDate": "Jun 17, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "randycoulman",
+ "email": "randy@randycoulman.com",
+ "name": "Randy Coulman"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with <a href='http://cincomsmalltalk.com'>Cincom Visualworks</a> Smalltalk Store. &amp;nbsp;The plugin requires at least one shell script or batch file to be created that can run a Visualworks image with the StoreCI-Polling package loaded. ",
+ "gav": "org.jenkins-ci.plugins:visualworks-store:1.1.1",
+ "labels": [
+ "scm"
+ ],
+ "name": "visualworks-store",
+ "previousTimestamp": "2013-03-02T21:42:42.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2014-06-17T10:11:10.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "3OsoCTd2RL2PPUw0B6PX6olonIs=",
+ "title": "Jenkins Visualworks Store Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/visualworks-store/1.1.1/visualworks-store.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Visualworks+Smalltalk+Store+Plugin"
+ },
+ "vmanager-plugin": {
+ "buildDate": "Sep 20, 2016",
+ "dependencies": [
+ {
+ "name": "dashboard-view",
+ "optional": false,
+ "version": "2.9.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "tyanai",
+ "email": "tyanai@cadence.com",
+ "name": "Tal Yanai"
+ }
+ ],
+ "excerpt": "This plugin adds an ability to perform REST over HTTP calls to Cadence vManager as a step in your build.",
+ "gav": "org.jenkins-ci.plugins:vmanager-plugin:2.4.2",
+ "labels": [
+ "builder",
+ "misc"
+ ],
+ "name": "vmanager-plugin",
+ "previousTimestamp": "2016-08-29T20:49:42.00Z",
+ "previousVersion": "2.4.1",
+ "releaseTimestamp": "2016-09-20T23:08:12.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "U3ekUX3+EwDcQS9FpT+aZtMV/cI=",
+ "title": "Cadence vManager Plugin for Jenkins",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vmanager-plugin/2.4.2/vmanager-plugin.hpi",
+ "version": "2.4.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cadence+vManager+Plugin"
+ },
+ "vmware": {
+ "buildDate": "Apr 09, 2008",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "connollys"
+ }
+ ],
+ "excerpt": "This plugin allows you to start a <a href='http://www.vmware.com/'>VMware</a> Virtual Machine before a build and stop it again after the build completes.",
+ "gav": "org.jvnet.hudson.plugins:vmware:0.8",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "vmware",
+ "previousTimestamp": "2008-02-27T12:27:22.00Z",
+ "previousVersion": "0.7",
+ "releaseTimestamp": "2008-04-09T09:15:54.00Z",
+ "requiredCore": "1.206",
+ "scm": "svn.dev.java.net",
+ "sha1": "O9T9nyEMzQJv7k7j9u+uag0Lesw=",
+ "title": "Hudson VMware plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vmware/0.8/vmware.hpi",
+ "version": "0.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VMware+plugin"
+ },
+ "vmware-vrealize-automation-plugin": {
+ "buildDate": "Apr 05, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "inkysea",
+ "email": "inkysea_mail@gmail.com",
+ "name": "Kris Thieler"
+ },
+ {
+ "developerId": "pauldgifford",
+ "email": "paul@paulgifford.ca",
+ "name": "Paul Gifford"
+ }
+ ],
+ "excerpt": "Provides Jenkins integration with <a href='https://www.vmware.com/products/vrealize-automation'>vRealize Automation 7.x</a>",
+ "gav": "com.inkysea.vmware.vra:vmware-vrealize-automation-plugin:1.2.3",
+ "labels": [
+ "external",
+ "cmp"
+ ],
+ "name": "vmware-vrealize-automation-plugin",
+ "previousTimestamp": "2016-03-30T11:47:14.00Z",
+ "previousVersion": "1.2.2",
+ "releaseTimestamp": "2016-04-05T22:13:36.00Z",
+ "requiredCore": "1.642.2",
+ "scm": "github.com",
+ "sha1": "JMtolhBDbAR5r+q3mjQlhRZcqtU=",
+ "title": "VMware vRealize Automation Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vmware-vrealize-automation-plugin/1.2.3/vmware-vrealize-automation-plugin.hpi",
+ "version": "1.2.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VMware+vRealize+Automation+Plugin"
+ },
+ "vmware-vrealize-codestream": {
+ "buildDate": "Dec 30, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rishisaraf11",
+ "email": "rishisaraf11@gmail.com",
+ "name": "Rishi Saraf"
+ }
+ ],
+ "excerpt": "Provide integration with <a href='https://www.vmware.com/products/vrealize-code-stream'>vRealize Code Stream</a> ",
+ "gav": "com.vmware.vcac:vmware-vrealize-codestream:1.2",
+ "labels": [
+ "external"
+ ],
+ "name": "vmware-vrealize-codestream",
+ "previousTimestamp": "2015-07-24T19:46:46.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-12-30T14:31:12.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "WUhqEgLlCWoSW0i+/g2V1ruF2Zs=",
+ "title": "Vmware vRealize CodeStream Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vmware-vrealize-codestream/1.2/vmware-vrealize-codestream.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Vmware+vRealize+CodeStream+Plugin"
+ },
+ "vmware-vrealize-orchestrator": {
+ "buildDate": "Apr 18, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "agovindaraju",
+ "email": "agi.raj@gmail.com",
+ "name": "Agila Govindaraju"
+ }
+ ],
+ "excerpt": "Provide integration with&amp;nbsp;<a href='http://www.vmware.com/products/vrealize-orchestrator/'>vRealize&amp;nbsp;Orchestrator</a>. Allows us to configure any Orchestrator workflows as part of the jenkins plugin configuration. It support only Data types such as String / SecureString/ EncryptedString / Boolean / Date / Number / SDKObject.",
+ "gav": "org.jenkins-ci.plugins:vmware-vrealize-orchestrator:3.0",
+ "labels": [],
+ "name": "vmware-vrealize-orchestrator",
+ "previousTimestamp": "2016-04-06T09:26:40.00Z",
+ "previousVersion": "2.0",
+ "releaseTimestamp": "2016-04-18T21:13:28.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "Op+D+OMMpwzt/cKdOCc+C5LiJj0=",
+ "title": "vRealize Orchestrator Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vmware-vrealize-orchestrator/3.0/vmware-vrealize-orchestrator.hpi",
+ "version": "3.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VMware+vRealize+Orchestrator+Plugin"
+ },
+ "vncrecorder": {
+ "buildDate": "Aug 21, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dt",
+ "email": "dim.tbaum@gmail.com",
+ "name": "Dimitri Tenenbaum"
+ }
+ ],
+ "excerpt": "This plugin records screen of current build or other configured VNC session as Shock Wave Flash (swf) file during a build and stores it as an artifact. This plugin can be used in combination with <a href='JENKINS:VncViewer Plugin'>VncViewer </a> and <a href='JENKINS:Xvnc Plugin'>Xvnc plugin</a>. ",
+ "gav": "org.jenkins-ci.plugins:vncrecorder:1.25",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "vncrecorder",
+ "previousTimestamp": "2015-08-19T21:13:42.00Z",
+ "previousVersion": "1.24",
+ "releaseTimestamp": "2015-08-21T21:05:36.00Z",
+ "requiredCore": "1.532.3",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "12eik9UqAJRyudgvqStjgm+jqio=",
+ "title": "VncRecorder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vncrecorder/1.25/vncrecorder.hpi",
+ "version": "1.25",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VncRecorder+Plugin"
+ },
+ "vncviewer": {
+ "buildDate": "Sep 01, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dt",
+ "email": "dim.tbaum@gmail.com",
+ "name": "Dimitri Tenenbaum"
+ }
+ ],
+ "excerpt": "VncViewer lets you monitor or operate GUI of your running build. You can start HTML5 based VNC viewer via HTML link directly from 'Console output'.&amp;nbsp;This plugin can be used in combination with&amp;nbsp;<a href='JENKINS:Xvnc Plugin'>Xvnc</a>&amp;nbsp;and&amp;nbsp;<a href='JENKINS:VncRecorder Plugin'>VncRecorder</a> plugins. ",
+ "gav": "org.jenkins-ci.plugins:vncviewer:1.5",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "vncviewer",
+ "previousTimestamp": "2015-09-01T07:32:50.00Z",
+ "previousVersion": "1.3",
+ "releaseTimestamp": "2015-09-01T08:23:06.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "ittnpc5yrTNlIURexfxBEnkA8fo=",
+ "title": "VncViewer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vncviewer/1.5/vncviewer.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VncViewer+Plugin"
+ },
+ "vs-code-metrics": {
+ "buildDate": "Mar 14, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "yasu_s",
+ "email": "yasuyuki.saito.2012@gmail.com",
+ "name": "Yasuyuki Saito"
+ }
+ ],
+ "excerpt": "<a href='http://www.microsoft.com/en-us/download/details.aspx?id=9422'>Visual Studio Code Metrics PowerTool</a> execute plugin. And record the metrics report. ",
+ "gav": "org.jenkins-ci.plugins:vs-code-metrics:1.7",
+ "labels": [
+ "dotnet",
+ "report",
+ "builder"
+ ],
+ "name": "vs-code-metrics",
+ "previousTimestamp": "2013-06-26T20:44:42.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2014-03-14T21:54:48.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "R7ZcBRz4fX7DQSYGON7if3XmZaM=",
+ "title": "Jenkins Visual Studio Code Metrics Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vs-code-metrics/1.7/vs-code-metrics.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Visual+Studio+Code+Metrics+Plugin"
+ },
+ "vsphere-cloud": {
+ "buildDate": "Jun 07, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-basic-steps",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "node-iterator-api",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "ssh-slaves",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.28"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jswager",
+ "email": "jswager@alohaoi.com",
+ "name": "Jason Swager"
+ },
+ {
+ "developerId": "elordahl",
+ "email": "elordahl@vt.edu",
+ "name": "Eric Lordahl"
+ }
+ ],
+ "excerpt": "Add VMware vSphere support to Jenkins by making available multiple vSphere Build Steps and supporting the use of Virtual Machines as slaves. ",
+ "gav": "org.jenkins-ci.plugins:vsphere-cloud:2.13",
+ "labels": [
+ "cluster",
+ "slaves"
+ ],
+ "name": "vsphere-cloud",
+ "previousTimestamp": "2016-03-25T14:01:10.00Z",
+ "previousVersion": "2.12",
+ "releaseTimestamp": "2016-06-07T21:17:50.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "1ntsyVve4R1Y+NYygSO2aHhyR6w=",
+ "title": "vSphere Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vsphere-cloud/2.13/vsphere-cloud.hpi",
+ "version": "2.13",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/vSphere+Cloud+Plugin"
+ },
+ "vss": {
+ "buildDate": "Aug 08, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rioch",
+ "name": "Jon Black"
+ }
+ ],
+ "excerpt": "This plugin integrates Jenkins with Microsoft Visual SourceSafe ",
+ "gav": "org.jenkins-ci.plugins:vss:1.9",
+ "labels": [
+ "scm"
+ ],
+ "name": "vss",
+ "previousTimestamp": "2010-09-19T18:06:44.00Z",
+ "previousVersion": "1.8",
+ "releaseTimestamp": "2011-08-08T11:37:28.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "z7LRaabPUDNZpuDs7rAEafW4EOM=",
+ "title": "Visual SourceSafe Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vss/1.9/vss.hpi",
+ "version": "1.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Visual+SourceSafe+Plugin"
+ },
+ "vstestrunner": {
+ "buildDate": "Aug 31, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "yasu_s",
+ "name": "Yasuyuki Saito"
+ }
+ ],
+ "excerpt": "This plugin allow you to execute test using <a href='http://msdn.microsoft.com/en-us/library/vstudio/ms182486.aspx'>VsTest</a> command line tool. ",
+ "gav": "org.jenkins-ci.plugins:vstestrunner:1.0.4",
+ "labels": [
+ "dotnet",
+ "builder"
+ ],
+ "name": "vstestrunner",
+ "previousTimestamp": "2013-10-21T21:18:34.00Z",
+ "previousVersion": "1.0.3",
+ "releaseTimestamp": "2014-08-31T17:57:52.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "8Y2q8UbHo8sDLE3v6OBrU38452A=",
+ "title": "Jenkins VSTest Runner plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vstestrunner/1.0.4/vstestrunner.hpi",
+ "version": "1.0.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VsTestRunner+Plugin"
+ },
+ "vsts-cd": {
+ "buildDate": "Jun 18, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "angoya",
+ "email": "Goyal.Ankit@microsoft.com",
+ "name": "Ankit Goyal"
+ },
+ {
+ "developerId": "anangaur",
+ "email": "anangaur@microsoft.com",
+ "name": "Anand Gaurav"
+ }
+ ],
+ "excerpt": "This plugin triggers a release&amp;nbsp;in TFS or VS Team Services, when a build completes successfully.&amp;nbsp; For detailed documentation on how to use this plugin, please go <a href='https://github.com/jenkinsci/vsts-cd-plugin/blob/master/README.md'>here</a> ",
+ "gav": "org.jenkins-ci.plugins:vsts-cd:1.3",
+ "labels": [
+ "notifier"
+ ],
+ "name": "vsts-cd",
+ "previousTimestamp": "2016-05-25T15:20:04.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-06-18T13:45:34.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "q/ds3cqN8m8tgkVLEEa/nuaKE3Y=",
+ "title": "VS Team Services Continuous Deployment",
+ "url": "http://updates.jenkins-ci.org/download/plugins/vsts-cd/1.3/vsts-cd.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VS+Team+Services+Continuous+Deployment+Plugin"
+ },
+ "walti": {
+ "buildDate": "Nov 08, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "walti_io",
+ "email": "support@walti.io",
+ "name": "Walti,Inc"
+ }
+ ],
+ "excerpt": "This plugin enables you to execute security scan with <a href='https://walti.io/'>Walti</a> after build has completed.",
+ "gav": "org.jenkins-ci.plugins:walti:1.0.1",
+ "labels": [
+ "post-build",
+ "external"
+ ],
+ "name": "walti",
+ "previousTimestamp": "2015-11-08T11:22:16.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2015-11-08T15:42:58.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "sOtptKtL5dXuQDqmSalAgD4d0Lg=",
+ "title": "Walti Jenkins Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/walti/1.0.1/walti.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Walti+Plugin"
+ },
+ "waptpro": {
+ "buildDate": "May 31, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "waptpro",
+ "email": "support@loadtestingtool.com",
+ "name": "SoftLogica"
+ }
+ ],
+ "excerpt": "This plugin lets you run load tests for web application projects with help of <a href='http://www.loadtestingtool.com/help/Jenkins.shtml'>WAPT Pro</a>. During the test you can monitor the process through the Jenkins console. Test results are combined with other integration jobs in the dashboard. ",
+ "gav": "org.jenkins-ci.plugins:waptpro:1.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "waptpro",
+ "previousTimestamp": "2016-05-31T18:05:24.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2016-05-31T18:10:10.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "GhEf92BMDl0FK7BRx10UJJuPt7A=",
+ "title": "WAPT Pro plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/waptpro/1.1/waptpro.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WAPT+Pro+Plugin"
+ },
+ "warnings": {
+ "buildDate": "Jun 08, 2016",
+ "dependencies": [
+ {
+ "name": "analysis-core",
+ "optional": false,
+ "version": "1.77"
+ },
+ {
+ "name": "violations",
+ "optional": true,
+ "version": "0.7.11"
+ },
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.9"
+ },
+ {
+ "name": "dashboard-view",
+ "optional": true,
+ "version": "2.9.4"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.10"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "drulli",
+ "email": "ullrich.hafner@gmail.com",
+ "name": "Ulli Hafner"
+ }
+ ],
+ "excerpt": "This plugin generates the trend report for compiler warnings in the console log or in log files. ",
+ "gav": "org.jvnet.hudson.plugins:warnings:4.56",
+ "labels": [
+ "maven",
+ "report"
+ ],
+ "name": "warnings",
+ "previousTimestamp": "2016-06-04T13:55:52.00Z",
+ "previousVersion": "4.55",
+ "releaseTimestamp": "2016-06-08T22:55:12.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "BIuiFF3Ya6feFYUWvo8t01BEnQc=",
+ "title": "Warnings Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/warnings/4.56/warnings.hpi",
+ "version": "4.56",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Warnings+Plugin"
+ },
+ "was-builder": {
+ "buildDate": "Oct 20, 2011",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rseguy",
+ "email": "romain.seguy@gmail.com",
+ "name": "Romain Seguy"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to invoke IBM WebSphere Application Server's *wsadmin* as a build step.",
+ "gav": "org.jenkins-ci.plugins:was-builder:1.6.1",
+ "labels": [
+ "builder"
+ ],
+ "name": "was-builder",
+ "previousTimestamp": "2011-08-07T10:05:02.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2011-10-20T10:19:58.00Z",
+ "requiredCore": "1.409",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "ZjWAGywEpaL+0rhmyGNmBS5yyVg=",
+ "title": "WAS Builder Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/was-builder/1.6.1/was-builder.hpi",
+ "version": "1.6.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WAS+Builder+Plugin"
+ },
+ "webload": {
+ "buildDate": "Sep 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jane_king",
+ "email": "jenkins@radview.com",
+ "name": "Jane King"
+ }
+ ],
+ "excerpt": "This plugin allows Jenkins to execute <a href='http://www.radview.com/'>RadView WebLOAD</a> Console Load sessions and WebLOAD Analytics report generation.",
+ "gav": "hudson.plugins:webload:1.7",
+ "labels": [
+ "external",
+ "misc"
+ ],
+ "name": "webload",
+ "previousTimestamp": "2016-09-13T17:56:52.00Z",
+ "previousVersion": "1.6",
+ "releaseTimestamp": "2016-09-14T15:42:04.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "/d4zg3gFx7pKbd3Iz3Z+FMO2C+M=",
+ "title": "WebLOAD Load Testing Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/webload/1.7/webload.hpi",
+ "version": "1.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WebLOAD+Plugin"
+ },
+ "weblogic-deployer-plugin": {
+ "buildDate": "Sep 04, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.520"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "RaphC",
+ "email": "rcr@orange.fr",
+ "name": "Raphael CHAUMIER"
+ }
+ ],
+ "excerpt": "This plugin deploys any artifacts built on Jenkins to a weblogic target (managed server, cluster ...) as an application or a library component.",
+ "gav": "org.jenkins-ci.plugins:weblogic-deployer-plugin:3.5",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "weblogic-deployer-plugin",
+ "previousTimestamp": "2016-05-26T22:00:54.00Z",
+ "previousVersion": "3.4",
+ "releaseTimestamp": "2016-09-04T00:30:28.00Z",
+ "requiredCore": "1.520",
+ "scm": "github.com",
+ "sha1": "gchGaxbjLD4X4neyQ/Jaculbx80=",
+ "title": "Deploy WebLogic Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/weblogic-deployer-plugin/3.5/weblogic-deployer-plugin.hpi",
+ "version": "3.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WebLogic+Deployer+Plugin"
+ },
+ "websocket": {
+ "buildDate": "Jul 26, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mzp",
+ "email": "mzp@ocaml.jp",
+ "name": "MIZUNO Hiroki"
+ }
+ ],
+ "excerpt": "This plugin notifies build results via Websocket. ",
+ "gav": "org.codefirst.jenkins.wsnotifier:websocket:1.0.6",
+ "labels": [
+ "notifier"
+ ],
+ "name": "websocket",
+ "previousTimestamp": "2013-01-19T17:48:28.00Z",
+ "previousVersion": "1.0.5",
+ "releaseTimestamp": "2013-07-26T09:28:48.00Z",
+ "requiredCore": "1.499",
+ "scm": "github.com",
+ "sha1": "6rItNYW7zTnZbOtNxV4RunCGbkk=",
+ "title": "Jenkins Websocket Notifier",
+ "url": "http://updates.jenkins-ci.org/download/plugins/websocket/1.0.6/websocket.hpi",
+ "version": "1.0.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Websocket+Plugin"
+ },
+ "websphere-deployer": {
+ "buildDate": "Aug 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "email": "gregpeters00@gmail.com",
+ "name": "Greg Peters"
+ },
+ {
+ "name": "Valerio Ponte"
+ }
+ ],
+ "excerpt": "h4. *{_}{+}Attention Jenkins Customers:+{_}* *{_}{+}Support for this plugin is not provided by Cloudbees. If you're interested in enterprise support, contact me directly.+{_}* This is a collection of two separate plugins that provide deployment functionality to most versions of IBM WebSphere Application Server, IBM WebSphere Portal and IBM WebSphere Liberty Profile. ",
+ "gav": "org.jenkins-ci.plugins:websphere-deployer:1.3.4",
+ "labels": [
+ "post-build",
+ "notifier"
+ ],
+ "name": "websphere-deployer",
+ "previousTimestamp": "2014-01-18T18:23:12.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-08-15T23:15:24.00Z",
+ "requiredCore": "1.608",
+ "scm": "github.com",
+ "sha1": "/ExT3zGLSQ1uqvuooMM6lyBjIOs=",
+ "title": "WebSphere Deployer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/websphere-deployer/1.3.4/websphere-deployer.hpi",
+ "version": "1.3.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WebSphere+Deployer+Plugin"
+ },
+ "webtestpresenter": {
+ "buildDate": "Jan 15, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "aambrose",
+ "name": "Adam Ambrose"
+ }
+ ],
+ "excerpt": "This plugin publishes the reports generated by the <a href='http://webtest.canoo.com/'>Canoo WebTest</a> tool for each build.",
+ "gav": "org.jvnet.hudson.plugins:webtestpresenter:0.23",
+ "labels": [
+ "report"
+ ],
+ "name": "webtestpresenter",
+ "previousTimestamp": "2008-07-13T17:48:18.00Z",
+ "previousVersion": "0.22",
+ "releaseTimestamp": "2010-01-15T22:53:06.00Z",
+ "requiredCore": "1.319",
+ "scm": "svn.dev.java.net",
+ "sha1": "NcPT6lv6p4WnZU43WeB8mZ59rc4=",
+ "title": "WebTest Presenter plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/webtestpresenter/0.23/webtestpresenter.hpi",
+ "version": "0.23",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WebTest+Presenter+Plugin"
+ },
+ "weibo": {
+ "buildDate": "Oct 18, 2013",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "1.466"
+ },
+ {
+ "name": "token-macro",
+ "optional": true,
+ "version": "1.8.1"
+ },
+ {
+ "name": "javadoc",
+ "optional": false,
+ "version": "1.0"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jiafu1115",
+ "email": "fujian1115@gmail.com",
+ "name": "fu.jian"
+ }
+ ],
+ "excerpt": "This plugin allow you to post customized message to Sina microblog.",
+ "gav": "org.jenkins-ci.plugins:weibo:1.0.1",
+ "labels": [
+ "notifier"
+ ],
+ "name": "weibo",
+ "releaseTimestamp": "2013-10-18T14:55:38.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "yuq+kRG2+OYdXBXMqtBTj1jNu5o=",
+ "title": "Weibo Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/weibo/1.0.1/weibo.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Weibo+Plugin"
+ },
+ "whitesource": {
+ "buildDate": "Jun 26, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.8"
+ },
+ {
+ "name": "git",
+ "optional": true,
+ "version": "1.1.14"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "itaimarko",
+ "email": "itai.marko@whitesourcesoftware.com",
+ "name": "Itai Marko"
+ },
+ {
+ "developerId": "annarozin",
+ "email": "anna.rozin@whitesourcesoftware.com",
+ "name": "Anna Rozin"
+ },
+ {
+ "developerId": "sramakrishna",
+ "email": "ramakrishna.sharvirala@gmail.com",
+ "name": "Ramakrishna Sharvirala"
+ }
+ ],
+ "excerpt": "The plugin brings automatic open source management to Jenkins users. ",
+ "gav": "org.jenkins-ci.plugins:whitesource:1.7.2",
+ "labels": [
+ "report",
+ "external"
+ ],
+ "name": "whitesource",
+ "previousTimestamp": "2016-02-29T21:05:58.00Z",
+ "previousVersion": "1.7.1",
+ "releaseTimestamp": "2016-06-26T14:13:10.00Z",
+ "requiredCore": "1.609.3",
+ "scm": "github.com",
+ "sha1": "wvPXWoGDs2nm5dUwoFwxUjmJ06k=",
+ "title": "White Source Jenkins plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/whitesource/1.7.2/whitesource.hpi",
+ "version": "1.7.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Whitesource+Plugin"
+ },
+ "wildfly-deployer": {
+ "buildDate": "Apr 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "dandillingham",
+ "email": "dan.b.dillingham@gmail.com",
+ "name": "Dan B. Dillingham"
+ }
+ ],
+ "excerpt": "This plugin deploys applications (WAR or EAR files) to a WildFly or JBoss EAP server or server group.",
+ "gav": "org.jenkins-ci.plugins:wildfly-deployer:1.0.2",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "wildfly-deployer",
+ "previousTimestamp": "2015-11-06T21:29:18.00Z",
+ "previousVersion": "1.0.1",
+ "releaseTimestamp": "2016-04-14T19:50:38.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "4XoLLK28SfCRcwd9YuTy/U9YIhM=",
+ "title": "WildFly Deployer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/wildfly-deployer/1.0.2/wildfly-deployer.hpi",
+ "version": "1.0.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WildFly+Deployer+Plugin"
+ },
+ "windmill": {
+ "buildDate": "Feb 06, 2010",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "admc",
+ "name": "Adam Christian"
+ }
+ ],
+ "excerpt": "This plugin allows you to configure and run <a href='http://www.getwindmill.com/'>Windmill</a> functional tests.",
+ "gav": "org.jvnet.hudson.plugins:windmill:1.5",
+ "labels": [
+ "external"
+ ],
+ "name": "windmill",
+ "previousTimestamp": "2009-06-25T16:40:46.00Z",
+ "previousVersion": "1.4",
+ "releaseTimestamp": "2010-02-06T08:59:22.00Z",
+ "requiredCore": "1.319",
+ "scm": "svn.dev.java.net",
+ "sha1": "npNnBKCCpnFCi+Tsw/QA1mQyyyI=",
+ "title": "HudsonWindmillPlugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/windmill/1.5/windmill.hpi",
+ "version": "1.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Windmill+Plugin"
+ },
+ "windows-azure-storage": {
+ "buildDate": "May 26, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "martinsawicki",
+ "email": "marcins@microsoft.com",
+ "name": "Martin Sawicki"
+ },
+ {
+ "developerId": "snallami",
+ "email": "snallami@gmail.com",
+ "name": "Suresh Nallamilli"
+ }
+ ],
+ "excerpt": "A plugin for uploading build artifacts to, or downloading build dependencies from, Microsoft Azure Blob storage. ",
+ "gav": "org.jenkins-ci.plugins:windows-azure-storage:0.3.1",
+ "labels": [
+ "upload",
+ "post-build"
+ ],
+ "name": "windows-azure-storage",
+ "previousTimestamp": "2014-09-10T01:11:26.00Z",
+ "previousVersion": "0.3.0",
+ "releaseTimestamp": "2015-05-26T04:03:28.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "sFTXq/Sy6Cx7U7f1XEKTkuigOcE=",
+ "title": "Windows Azure Storage plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/windows-azure-storage/0.3.1/windows-azure-storage.hpi",
+ "version": "0.3.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Windows+Azure+Storage+Plugin"
+ },
+ "windows-exe-runner": {
+ "buildDate": "Aug 19, 2013",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "yasu_s",
+ "email": "yasuyuki.saito.2012@gmail.com",
+ "name": "Yasuyuki Saito"
+ }
+ ],
+ "excerpt": "This plug-in is used to run the Windows Exe. ",
+ "gav": "org.jenkins-ci.plugins:windows-exe-runner:1.2",
+ "labels": [
+ "builder"
+ ],
+ "name": "windows-exe-runner",
+ "previousTimestamp": "2013-04-06T21:10:10.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2013-08-19T21:51:18.00Z",
+ "requiredCore": "1.466",
+ "scm": "github.com",
+ "sha1": "8/6nNi5C1YT+x+8WXieu+pXfjT8=",
+ "title": "Jenkins Windows Exe Runner Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/windows-exe-runner/1.2/windows-exe-runner.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Windows+Exe+Runner+Plugin"
+ },
+ "windows-slaves": {
+ "buildDate": "Aug 10, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "andresrc"
+ }
+ ],
+ "excerpt": "Allows you to connect to Windows machines and start slave agents on them.",
+ "gav": "org.jenkins-ci.plugins:windows-slaves:1.2",
+ "labels": [
+ "slaves"
+ ],
+ "name": "windows-slaves",
+ "previousTimestamp": "2015-06-10T11:21:02.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2016-08-10T08:35:38.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "Ix+nWMcnJcPus+tnvxKhhmunuZA=",
+ "title": "Windows Slaves Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/windows-slaves/1.2/windows-slaves.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Windows+Slaves+Plugin"
+ },
+ "wix": {
+ "buildDate": "Jul 18, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "rollinhand",
+ "email": "rollin.hand@gmx.de",
+ "name": "Bjoern Berg"
+ }
+ ],
+ "excerpt": "With WIX Toolset Plugin you are able to build MSI packages from Windows Installer XML (WiX) files with Jenkins.",
+ "gav": "org.jenkins-ci.plugins:wix:1.12",
+ "labels": [
+ "post-build"
+ ],
+ "name": "wix",
+ "previousTimestamp": "2015-07-07T22:19:18.00Z",
+ "previousVersion": "1.11",
+ "releaseTimestamp": "2015-07-18T12:41:12.00Z",
+ "requiredCore": "1.579",
+ "scm": "github.com",
+ "sha1": "rigBn/HaqVeQ1b4qS5LNaH9GRHM=",
+ "title": "WIX Toolset Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/wix/1.12/wix.hpi",
+ "version": "1.12",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WIX+Toolset+Plugin"
+ },
+ "workflow-aggregator": {
+ "buildDate": "Sep 21, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.17"
+ },
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.5"
+ },
+ {
+ "name": "workflow-basic-steps",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "pipeline-input-step",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "pipeline-milestone-step",
+ "optional": false,
+ "version": "1.0"
+ },
+ {
+ "name": "pipeline-build-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "pipeline-stage-view",
+ "optional": false,
+ "version": "2.0"
+ },
+ {
+ "name": "workflow-multibranch",
+ "optional": false,
+ "version": "2.8"
+ },
+ {
+ "name": "workflow-durable-task-step",
+ "optional": false,
+ "version": "2.4"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "pipeline-stage-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-cps-global-lib",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "2.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "A suite of plugins that lets you orchestrate automation, simple or complex. See <a href='https://jenkins.io/solutions/pipeline/'>the Jenkins website</a> for more details.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-aggregator:2.4",
+ "labels": [
+ "misc",
+ "cli",
+ "trigger",
+ "slaves"
+ ],
+ "name": "workflow-aggregator",
+ "previousTimestamp": "2016-08-31T07:32:30.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2016-09-21T13:58:50.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "s1tTT1SgwA2l7SXFz+JKNB530Ao=",
+ "title": "Pipeline",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-aggregator/2.4/workflow-aggregator.hpi",
+ "version": "2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin"
+ },
+ "workflow-api": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "svanoort"
+ }
+ ],
+ "excerpt": "Plugin that defines Pipeline API.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-api:2.4",
+ "labels": [
+ "misc"
+ ],
+ "name": "workflow-api",
+ "previousTimestamp": "2016-09-07T14:07:44.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2016-09-23T18:12:46.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "mjSYLfjJO+lBj+6CDmADnf6ArSA=",
+ "title": "Pipeline: API",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-api/2.4/workflow-api.hpi",
+ "version": "2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+API+Plugin"
+ },
+ "workflow-basic-steps": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.13"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Commonly used steps for Pipelines.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-basic-steps:2.2",
+ "labels": [
+ "pipeline",
+ "misc"
+ ],
+ "name": "workflow-basic-steps",
+ "previousTimestamp": "2016-07-28T14:55:48.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2016-09-23T16:37:34.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "XlFXXbGDElq1KyFQtpOGjjkYlcQ=",
+ "title": "Pipeline: Basic Steps",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-basic-steps/2.2/workflow-basic-steps.hpi",
+ "version": "2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Basic+Steps+Plugin"
+ },
+ "workflow-cps": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.1"
+ },
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.6"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.23"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": false,
+ "version": "1.15"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.4"
+ },
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.5"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "jquery-detached",
+ "optional": false,
+ "version": "1.2.1"
+ },
+ {
+ "name": "support-core",
+ "optional": true,
+ "version": "2.32"
+ },
+ {
+ "name": "ace-editor",
+ "optional": false,
+ "version": "1.0.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Pipeline execution engine based on continuation passing style transformation of Groovy scripts.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-cps:2.18",
+ "labels": [
+ "misc"
+ ],
+ "name": "workflow-cps",
+ "previousTimestamp": "2016-09-13T09:13:24.00Z",
+ "previousVersion": "2.17",
+ "releaseTimestamp": "2016-09-23T15:58:10.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "7FQ/X/Z7rmMhGPqV4ajQUOEMXc4=",
+ "title": "Pipeline: Groovy",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-cps/2.18/workflow-cps.hpi",
+ "version": "2.18",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Groovy+Plugin"
+ },
+ "workflow-cps-global-lib": {
+ "buildDate": "Oct 05, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.14"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "git-client",
+ "optional": false,
+ "version": "1.19.7"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": false,
+ "version": "5.12"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "git-server",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Shared libraries for Pipeline scripts.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-cps-global-lib:2.4",
+ "labels": [
+ "misc"
+ ],
+ "name": "workflow-cps-global-lib",
+ "previousTimestamp": "2016-09-07T15:36:56.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2016-10-05T11:05:02.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "Mj2KWsoVk8GdzIiKqF3ED49E838=",
+ "title": "Pipeline: Shared Groovy Libraries",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-cps-global-lib/2.4/workflow-cps-global-lib.hpi",
+ "version": "2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Shared+Groovy+Libraries+Plugin"
+ },
+ "workflow-durable-task-step": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.1"
+ },
+ {
+ "name": "durable-task",
+ "optional": false,
+ "version": "1.12"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Pipeline steps locking agents and workspaces, and running external processes that may survive a Jenkins restart or slave reconnection.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-durable-task-step:2.5",
+ "labels": [
+ "pipeline",
+ "misc"
+ ],
+ "name": "workflow-durable-task-step",
+ "previousTimestamp": "2016-07-28T19:23:40.00Z",
+ "previousVersion": "2.4",
+ "releaseTimestamp": "2016-09-23T16:07:10.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "rDuS27F44vdqH+5eiSyjgGKfyVk=",
+ "title": "Pipeline: Nodes and Processes",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-durable-task-step/2.5/workflow-durable-task-step.hpi",
+ "version": "2.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Nodes+and+Processes+Plugin"
+ },
+ "workflow-job": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-support",
+ "optional": false,
+ "version": "2.2"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Defines a new job type for pipelines and provides their generic user interface.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-job:2.7",
+ "labels": [
+ "misc"
+ ],
+ "name": "workflow-job",
+ "previousTimestamp": "2016-08-26T14:28:28.00Z",
+ "previousVersion": "2.6",
+ "releaseTimestamp": "2016-09-23T15:25:30.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "p7ki947E3DRM8VeF444qs4ZH8bk=",
+ "title": "Pipeline: Job",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-job/2.7/workflow-job.hpi",
+ "version": "2.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Job+Plugin"
+ },
+ "workflow-multibranch": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-cps",
+ "optional": false,
+ "version": "2.17"
+ },
+ {
+ "name": "branch-api",
+ "optional": false,
+ "version": "1.11"
+ },
+ {
+ "name": "workflow-scm-step",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "cloudbees-folder",
+ "optional": false,
+ "version": "5.12"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.23"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.3"
+ },
+ {
+ "name": "scm-api",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "workflow-job",
+ "optional": false,
+ "version": "2.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Enhances Pipeline plugin to handle branches better by automatically grouping builds from different branches.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-multibranch:2.9",
+ "labels": [
+ "misc",
+ "scm-related"
+ ],
+ "name": "workflow-multibranch",
+ "previousTimestamp": "2016-06-15T15:11:16.00Z",
+ "previousVersion": "2.8",
+ "releaseTimestamp": "2016-09-23T16:21:08.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "eJ7DPdQQg7aCAI/fZpTv/JfcNhQ=",
+ "title": "Pipeline: Multibranch",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-multibranch/2.9/workflow-multibranch.hpi",
+ "version": "2.9",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Multibranch+Plugin"
+ },
+ "workflow-remote-loader": {
+ "buildDate": "Sep 10, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-aggregator",
+ "optional": false,
+ "version": "1.11"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "oleg_nenashev",
+ "email": "o.v.nenashev@gmail.com",
+ "name": "Oleg Nenashev"
+ }
+ ],
+ "excerpt": "Allows loading <a href='https://github.com/jenkinsci/workflow-plugin'>Pipeline</a> scripts from remote locations (enhanced version of the built-in load command) ",
+ "gav": "org.jenkins-ci.plugins:workflow-remote-loader:1.3",
+ "labels": [],
+ "name": "workflow-remote-loader",
+ "previousTimestamp": "2016-05-09T12:59:42.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2016-09-10T00:08:28.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "jB4mYFcZG12DN2vj12f/8dmMj/s=",
+ "title": "Jenkins Pipeline Remote Loader Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-remote-loader/1.3/workflow-remote-loader.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Remote+Loader+Plugin"
+ },
+ "workflow-scm-step": {
+ "buildDate": "Jul 05, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "1.15"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "Adds Pipeline steps to check out or update working sources from various SCMs (version control).",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-scm-step:2.2",
+ "labels": [
+ "misc",
+ "scm-related"
+ ],
+ "name": "workflow-scm-step",
+ "previousTimestamp": "2016-06-09T14:17:34.00Z",
+ "previousVersion": "2.1",
+ "releaseTimestamp": "2016-07-05T10:36:38.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "npi8zzPRkqO45Cxjn3DGIpEYW38=",
+ "title": "Pipeline: SCM Step",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-scm-step/2.2/workflow-scm-step.hpi",
+ "version": "2.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+SCM+Step+Plugin"
+ },
+ "workflow-step-api": {
+ "buildDate": "Sep 23, 2016",
+ "dependencies": [
+ {
+ "name": "structs",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jglick"
+ }
+ ],
+ "excerpt": "API for asynchronous build step primitive.",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-step-api:2.4",
+ "labels": [
+ "misc"
+ ],
+ "name": "workflow-step-api",
+ "previousTimestamp": "2016-07-28T12:36:24.00Z",
+ "previousVersion": "2.3",
+ "releaseTimestamp": "2016-09-23T15:12:34.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "5IRAJ/tbu6TLznQ+nUD2jgsvbbw=",
+ "title": "Pipeline: Step API",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-step-api/2.4/workflow-step-api.hpi",
+ "version": "2.4",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Step+API+Plugin"
+ },
+ "workflow-support": {
+ "buildDate": "Sep 26, 2016",
+ "dependencies": [
+ {
+ "name": "workflow-step-api",
+ "optional": false,
+ "version": "2.2"
+ },
+ {
+ "name": "script-security",
+ "optional": false,
+ "version": "1.21"
+ },
+ {
+ "name": "workflow-api",
+ "optional": false,
+ "version": "2.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "svanoort"
+ }
+ ],
+ "excerpt": "Common utility implementations to build Pipeline Plugin",
+ "gav": "org.jenkins-ci.plugins.workflow:workflow-support:2.8",
+ "labels": [
+ "misc"
+ ],
+ "name": "workflow-support",
+ "previousTimestamp": "2016-09-23T15:07:32.00Z",
+ "previousVersion": "2.6",
+ "releaseTimestamp": "2016-09-26T12:19:56.00Z",
+ "requiredCore": "1.642.3",
+ "scm": "github.com",
+ "sha1": "91Mdx0QUYp7nmIsB+C7Fh4zk6Y8=",
+ "title": "Pipeline: Supporting APIs",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workflow-support/2.8/workflow-support.hpi",
+ "version": "2.8",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Supporting+APIs+Plugin"
+ },
+ "workplace-notifier": {
+ "buildDate": "Jun 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "sameerElance",
+ "email": "sshah@elance-odesk.com",
+ "name": "Sameer Shah"
+ }
+ ],
+ "excerpt": "This plugin allows to send build status related notifications to&amp;nbsp;<a href='http://www.upwork.com/'>Upwork</a>&amp;nbsp;workplace messaging system in the form of webhooks.",
+ "gav": "jenkins.plugins.elanceodesk:workplace-notifier:1.16",
+ "labels": [
+ "notifier"
+ ],
+ "name": "workplace-notifier",
+ "previousTimestamp": "2015-05-13T16:41:32.00Z",
+ "previousVersion": "1.15",
+ "releaseTimestamp": "2015-06-15T11:45:28.00Z",
+ "requiredCore": "1.576",
+ "scm": "github.com",
+ "sha1": "6yKHLNljxTiJvrkZkt8Bf6AP6Hs=",
+ "title": "Workplace Notifier Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/workplace-notifier/1.16/workplace-notifier.hpi",
+ "version": "1.16",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Workplace+Notifier+Plugin"
+ },
+ "ws-cleanup": {
+ "buildDate": "Jul 24, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.7.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "vjuranek",
+ "name": "Vojtech Juranek"
+ },
+ {
+ "developerId": "olivergondza",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "This plugin deletes the workspace before the build or when a build is finished and artifacts saved.",
+ "gav": "org.jenkins-ci.plugins:ws-cleanup:0.30",
+ "labels": [
+ "post-build",
+ "buildwrapper"
+ ],
+ "name": "ws-cleanup",
+ "previousTimestamp": "2016-05-04T09:54:16.00Z",
+ "previousVersion": "0.29",
+ "releaseTimestamp": "2016-07-24T10:11:06.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "1BMv6X3mnMt2fWfpt0wikkIRgCA=",
+ "title": "Jenkins Workspace Cleanup Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ws-cleanup/0.30/ws-cleanup.hpi",
+ "version": "0.30",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Workspace+Cleanup+Plugin"
+ },
+ "ws-ws-replacement": {
+ "buildDate": "Jun 17, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "leewinder",
+ "email": "lee.winder@gmail.com",
+ "name": "Lee Winder"
+ }
+ ],
+ "excerpt": "Replaces any spaces in a job name when it is created on a Jenkins agent. This allows Job names to have spaces without spaces being used in the workspace folder.",
+ "gav": "org.jenkins-ci.plugins:ws-ws-replacement:1.0.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "ws-ws-replacement",
+ "releaseTimestamp": "2016-06-17T18:20:44.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "bxI+zr1Hx2m+Cz/h+UUW0/7gSoY=",
+ "title": "Workspace Whitespace Replacement",
+ "url": "http://updates.jenkins-ci.org/download/plugins/ws-ws-replacement/1.0.1/ws-ws-replacement.hpi",
+ "version": "1.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Workspace+Whitespace+Replacement+Plugin"
+ },
+ "wwpass-plugin": {
+ "buildDate": "Dec 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "spanyushkin",
+ "email": "s.panyushkin@wwpass.com",
+ "name": "Stanislav Panyushkin"
+ }
+ ],
+ "excerpt": "Plugin for Jenkins CI implements authentication via WWPass Keyset. This plugin may used as primary security realm or as federated login service.",
+ "gav": "org.jenkins-ci.plugins:wwpass-plugin:2.0",
+ "labels": [
+ "user"
+ ],
+ "name": "wwpass-plugin",
+ "previousTimestamp": "2014-02-06T15:51:56.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2015-12-15T15:00:54.00Z",
+ "requiredCore": "1.641",
+ "scm": "github.com",
+ "sha1": "HFaPt6IuntKrUzwqEFRSqTwQRtE=",
+ "title": "WWPass Authentication Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/wwpass-plugin/2.0/wwpass-plugin.hpi",
+ "version": "2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WWPass+Authentication+Plugin"
+ },
+ "xcode-plugin": {
+ "buildDate": "Sep 21, 2016",
+ "dependencies": [
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.5.1"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.21"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "rayhilton",
+ "email": "ray.hilton@gmail.com",
+ "name": "Ray Yamamoto Hilton"
+ },
+ {
+ "developerId": "aheritier",
+ "email": "aheritier@apache.org",
+ "name": "Arnaud Heritier"
+ },
+ {
+ "developerId": "lacostej",
+ "email": "jerome.lacoste@gmail.com",
+ "name": "Jerome Lacoste"
+ }
+ ],
+ "excerpt": "This plugin adds the ability to call Xcode command line tools to automate build and packaging iOS applications (iPhone, iPad, ...).",
+ "gav": "org.jenkins-ci.plugins:xcode-plugin:1.4.11",
+ "labels": [],
+ "name": "xcode-plugin",
+ "previousTimestamp": "2016-09-20T13:17:22.00Z",
+ "previousVersion": "1.4.10",
+ "releaseTimestamp": "2016-09-21T14:53:14.00Z",
+ "requiredCore": "1.509",
+ "scm": "github.com",
+ "sha1": "BjqiBMEREqw8Ch1WLLo8VxbYIOs=",
+ "title": "Xcode integration",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xcode-plugin/1.4.11/xcode-plugin.hpi",
+ "version": "1.4.11",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Xcode+Plugin"
+ },
+ "xcp-ci": {
+ "buildDate": "Mar 22, 2016",
+ "dependencies": [
+ {
+ "name": "maven-plugin",
+ "optional": false,
+ "version": "2.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "joao.ribeiro",
+ "email": "joao.ribeiro@vilt-group.com",
+ "name": "João Ribeiro"
+ }
+ ],
+ "excerpt": "Eases the generation and deployment of Documentum xCP applications.",
+ "gav": "com.viltgroup.xcp.jenkins:xcp-ci:0.5.5",
+ "labels": [
+ "external"
+ ],
+ "name": "xcp-ci",
+ "previousTimestamp": "2016-03-02T22:20:04.00Z",
+ "previousVersion": "0.5.4",
+ "releaseTimestamp": "2016-03-22T22:23:18.00Z",
+ "requiredCore": "1.617",
+ "scm": "github.com",
+ "sha1": "bQDToI6s3oXNRqNuUZBGDsfSQC4=",
+ "title": "Documentum xCP Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xcp-ci/0.5.5/xcp-ci.hpi",
+ "version": "0.5.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/xCP+CI+Plugin"
+ },
+ "xfpanel": {
+ "buildDate": "Sep 18, 2015",
+ "dependencies": [
+ {
+ "name": "claim",
+ "optional": false,
+ "version": "1.7"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "jrenaut",
+ "email": "julienrenaut@gmail.com",
+ "name": "Julien RENAUT"
+ },
+ {
+ "developerId": "hoodja",
+ "email": "hoodja@gmail.com",
+ "name": "James Hood"
+ },
+ {
+ "developerId": "nikom",
+ "email": "niko.mahle@googlemail.com",
+ "name": "Niko Mahle"
+ },
+ {
+ "developerId": "tblue468",
+ "email": "tilman+jenkins@ax86.net",
+ "name": "Tilman Blumenbach"
+ },
+ {
+ "developerId": "tomaszbechdev",
+ "email": "tomaszbechdev@gmail.com",
+ "name": "Tomasz Bech"
+ }
+ ],
+ "excerpt": "This plugin provides an eXtreme Feedback Panel that can be used to expose the status of a selected number of Jobs.",
+ "gav": "org.jenkins-ci.plugins:xfpanel:2.0.1",
+ "labels": [
+ "report",
+ "ui"
+ ],
+ "name": "xfpanel",
+ "previousTimestamp": "2015-07-21T12:47:18.00Z",
+ "previousVersion": "2.0.0",
+ "releaseTimestamp": "2015-09-18T09:56:00.00Z",
+ "requiredCore": "1.475",
+ "scm": "github.com",
+ "sha1": "eQRRd42X16KarZZq9I7S7WB2UVo=",
+ "title": "eXtreme Feedback Panel",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xfpanel/2.0.1/xfpanel.hpi",
+ "version": "2.0.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/eXtreme+Feedback+Panel+Plugin"
+ },
+ "xframe-filter-plugin": {
+ "buildDate": "Jun 30, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "jieryn",
+ "email": "jieryn@gmail.com",
+ "name": "Jesse Farinacci"
+ }
+ ],
+ "excerpt": "Provides a very simple filter which adds a response header indicating how frame/iframe requests should be handled.",
+ "gav": "org.jenkins-ci.plugins:xframe-filter-plugin:1.2",
+ "labels": [
+ "page-decorator",
+ "misc"
+ ],
+ "name": "xframe-filter-plugin",
+ "previousTimestamp": "2014-02-21T13:00:32.00Z",
+ "previousVersion": "1.1",
+ "releaseTimestamp": "2014-06-30T14:03:14.00Z",
+ "requiredCore": "1.532.2",
+ "scm": "github.com",
+ "sha1": "zH5a9QKGNbsCK8bAV3M1VOG/7jA=",
+ "title": "XFrame Filter Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xframe-filter-plugin/1.2/xframe-filter-plugin.hpi",
+ "version": "1.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XFrame+Filter+Plugin"
+ },
+ "xlrelease-plugin": {
+ "buildDate": "Oct 07, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.16.1"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "XebiaLabsCI",
+ "email": "xl-developers (at) xebialabs (dot) com",
+ "name": "XebiaLabs"
+ }
+ ],
+ "excerpt": "Package and deploy your applications from Jenkins with &amp;lt;a href='http://www.xebialabs.com'&amp;gt;XebiaLabs XL Release&amp;lt;/a&amp;gt;.",
+ "gav": "com.xebialabs.ci:xlrelease-plugin:5.0.0",
+ "labels": [],
+ "name": "xlrelease-plugin",
+ "previousTimestamp": "2015-12-16T14:57:18.00Z",
+ "previousVersion": "4.8.0",
+ "releaseTimestamp": "2016-10-07T16:37:06.00Z",
+ "requiredCore": "1.509.4",
+ "scm": "github.com",
+ "sha1": "xkCE5Hktd/cd+Y4LyALj1I2OX2E=",
+ "title": "XebiaLabs XL Release Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xlrelease-plugin/5.0.0/xlrelease-plugin.hpi",
+ "version": "5.0.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XL+Release+Plugin"
+ },
+ "xltestview-plugin": {
+ "buildDate": "Aug 03, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.22"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "XebiaLabsCI",
+ "email": "xl-developers (at) xebialabs (dot) com",
+ "name": "XebiaLabs"
+ }
+ ],
+ "excerpt": "The XL TestView Plugin integrates Jenkins with <a href='https://xebialabs.com/products/xl-test/'>XebiaLabs XL TestView</a> ",
+ "gav": "com.xebialabs.xlt.ci:xltestview-plugin:1.2.0",
+ "labels": [
+ "post-build",
+ "external"
+ ],
+ "name": "xltestview-plugin",
+ "previousTimestamp": "2016-02-15T11:38:02.00Z",
+ "previousVersion": "1.1.1",
+ "releaseTimestamp": "2016-08-03T15:34:02.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "pIZpaVOLFz/zDqkG0Bk6LScC8dg=",
+ "title": "XL TestView Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xltestview-plugin/1.2.0/xltestview-plugin.hpi",
+ "version": "1.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XL+TestView+Plugin"
+ },
+ "xpath-config-viewer": {
+ "buildDate": "May 21, 2012",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "ffromm",
+ "email": "frederik.fromm@gmail.com",
+ "name": "Frederik Fromm"
+ }
+ ],
+ "excerpt": "This plugin adds a new link &quot;XPath Configuration Viewer&quot; to the Jenkins Managagement page. It provides a simple and easy way to check job configurations having a huge number of jobs.",
+ "gav": "org.jenkins-ci.plugins:xpath-config-viewer:1.1.1",
+ "labels": [
+ "misc"
+ ],
+ "name": "xpath-config-viewer",
+ "previousTimestamp": "2012-03-07T08:35:10.00Z",
+ "previousVersion": "1.1.0",
+ "releaseTimestamp": "2012-05-21T18:03:38.00Z",
+ "requiredCore": "1.424",
+ "scm": "github.com",
+ "sha1": "DSL/usWSQU9THJRxm1rd5Uw2Yi4=",
+ "title": "XPath Configuration Viewer plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xpath-config-viewer/1.1.1/xpath-config-viewer.hpi",
+ "version": "1.1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XPath+Configuration+Viewer"
+ },
+ "xpdev": {
+ "buildDate": "Jun 26, 2012",
+ "dependencies": [
+ {
+ "name": "git",
+ "optional": false,
+ "version": "1.1.17"
+ },
+ {
+ "name": "mercurial",
+ "optional": false,
+ "version": "1.41"
+ },
+ {
+ "name": "subversion",
+ "optional": false,
+ "version": "1.40"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ndeloof",
+ "name": "Nicolas De Loof"
+ }
+ ],
+ "excerpt": "",
+ "gav": "com.cloudbees.jenkins.plugins:xpdev:1.0",
+ "labels": [],
+ "name": "xpdev",
+ "releaseTimestamp": "2012-06-26T11:42:22.00Z",
+ "requiredCore": "1.447",
+ "scm": "github.com",
+ "sha1": "jtb/FToA+IR4YXH/lTCNu6uBW5Y=",
+ "title": "XP-Dev plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xpdev/1.0/xpdev.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XP-Dev+plugin"
+ },
+ "xshell": {
+ "buildDate": "Jul 28, 2014",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "mambu",
+ "email": "marco.ambu+jenkins@gmail.com",
+ "name": "Marco Ambu"
+ }
+ ],
+ "excerpt": "This plugin defines a new build type to execute a shell command in a cross-platform environment.",
+ "gav": "org.jenkins-ci.plugins:xshell:0.10",
+ "labels": [
+ "builder"
+ ],
+ "name": "xshell",
+ "previousTimestamp": "2013-11-10T17:47:58.00Z",
+ "previousVersion": "0.9",
+ "releaseTimestamp": "2014-07-28T21:50:26.00Z",
+ "requiredCore": "1.499",
+ "scm": "github.com",
+ "sha1": "lnpL/tzmipQHzDbSlcaHUHRJhSQ=",
+ "title": "Jenkins cross-platform shell plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xshell/0.10/xshell.hpi",
+ "version": "0.10",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XShell+Plugin"
+ },
+ "xtrigger": {
+ "buildDate": "May 08, 2013",
+ "dependencies": [
+ {
+ "name": "ivytrigger",
+ "optional": false,
+ "version": "0.26"
+ },
+ {
+ "name": "buildresult-trigger",
+ "optional": false,
+ "version": "0.10"
+ },
+ {
+ "name": "urltrigger",
+ "optional": false,
+ "version": "0.31"
+ },
+ {
+ "name": "fstrigger",
+ "optional": false,
+ "version": "0.34"
+ },
+ {
+ "name": "scripttrigger",
+ "optional": false,
+ "version": "0.28"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "The XTrigger plugin makes it possible to monitor different environments (filesystem, jobs result, url response, binary repository and so on) and triggers a build if there is at least one change between two checks.",
+ "gav": "org.jenkins-ci.plugins:xtrigger:0.54",
+ "labels": [
+ "trigger"
+ ],
+ "name": "xtrigger",
+ "previousTimestamp": "2012-07-28T00:28:14.00Z",
+ "previousVersion": "0.53",
+ "releaseTimestamp": "2013-05-08T17:09:42.00Z",
+ "requiredCore": "1.461",
+ "scm": "github.com",
+ "sha1": "a2G0J3ENQVq3T8EuNx1abg1RXdg=",
+ "title": "Jenkins XTrigger Plug-in",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xtrigger/0.54/xtrigger.hpi",
+ "version": "0.54",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XTrigger+Plugin"
+ },
+ "xunit": {
+ "buildDate": "May 07, 2016",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gboissinot",
+ "email": "gregory.boissinot@gmail.com",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin makes it possible to publish the test results of an execution of a testing tool in Jenkins.",
+ "gav": "org.jenkins-ci.plugins:xunit:1.102",
+ "labels": [],
+ "name": "xunit",
+ "previousTimestamp": "2016-02-21T20:51:44.00Z",
+ "previousVersion": "1.101",
+ "releaseTimestamp": "2016-05-07T22:53:56.00Z",
+ "requiredCore": "1.596.1",
+ "scm": "github.com",
+ "sha1": "M/q9iaRw8hrmaCEYT/Noc6brQWE=",
+ "title": "xUnit plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xunit/1.102/xunit.hpi",
+ "version": "1.102",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/xUnit+Plugin"
+ },
+ "xvfb": {
+ "buildDate": "Mar 20, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "zregvart",
+ "email": "zregvart+xvfbjenkins@gmail.com",
+ "name": "Zoran Regvart"
+ }
+ ],
+ "excerpt": "Lets you control&amp;nbsp;<a href='http://www.x.org/archive/current/doc/man/man1/Xvfb.1.xhtml'>Xvfb</a> virtual frame buffer X11 server with each build. It starts Xvfb before the build starts, and stops it with the build. This is very useful if your build requires X11 access, for instance runs tests that require GUI. ",
+ "gav": "org.jenkins-ci.plugins:xvfb:1.1.3",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "xvfb",
+ "previousTimestamp": "2015-12-10T17:24:48.00Z",
+ "previousVersion": "1.1.2",
+ "releaseTimestamp": "2016-03-20T18:13:18.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "HcxTWi5XX1BQN/TuNZa1iwJgYOI=",
+ "title": "Jenkins Xvfb plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xvfb/1.1.3/xvfb.hpi",
+ "version": "1.1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Xvfb+Plugin"
+ },
+ "xvnc": {
+ "buildDate": "Jul 22, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "levsa",
+ "email": "levon.sa@gmail.com",
+ "name": "Levon Saldamli"
+ },
+ {
+ "developerId": "olivergondza",
+ "email": "ogondza@gmail.com",
+ "name": "Oliver Gondža"
+ }
+ ],
+ "excerpt": "This plugin lets you run an <a href='http://www.hep.phy.cam.ac.uk/vnc_docs/xvnc.html'>Xvnc</a> session during a build. This is handy if your build includes UI testing that needs a display available. ",
+ "gav": "org.jenkins-ci.plugins:xvnc:1.24",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "xvnc",
+ "previousTimestamp": "2015-08-28T15:55:44.00Z",
+ "previousVersion": "1.23",
+ "releaseTimestamp": "2016-07-22T09:26:32.00Z",
+ "requiredCore": "1.609.1",
+ "scm": "github.com",
+ "sha1": "Cu4IMXvDDrewrW4t0PohGo+BMtA=",
+ "title": "Jenkins Xvnc plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/xvnc/1.24/xvnc.hpi",
+ "version": "1.24",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Xvnc+Plugin"
+ },
+ "yaml-axis": {
+ "buildDate": "Feb 03, 2016",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.6"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "sue445",
+ "email": "sue445@sue445.net",
+ "name": "sue445"
+ }
+ ],
+ "excerpt": "Matrix project axis creation and exclusion plugin using yaml file (It's similar to .travis.yml) ",
+ "gav": "org.jenkins-ci.plugins:yaml-axis:0.2.0",
+ "labels": [
+ "misc"
+ ],
+ "name": "yaml-axis",
+ "previousTimestamp": "2016-01-27T07:43:30.00Z",
+ "previousVersion": "0.1.2",
+ "releaseTimestamp": "2016-02-03T00:25:54.00Z",
+ "requiredCore": "1.609",
+ "scm": "github.com",
+ "sha1": "3nUAgW6z/40AvZkyNOuiEsi+a4U=",
+ "title": "Yaml Axis plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/yaml-axis/0.2.0/yaml-axis.hpi",
+ "version": "0.2.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Yaml+Axis+Plugin"
+ },
+ "yammer": {
+ "buildDate": "Jul 19, 2013",
+ "dependencies": [
+ {
+ "name": "ruby-runtime",
+ "optional": false,
+ "version": "0.12"
+ },
+ {
+ "name": "token-macro",
+ "optional": false,
+ "version": "1.8"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "matthewriley"
+ }
+ ],
+ "excerpt": "Sends build notifications to Yammer.",
+ "gav": "org.jenkins-ci.ruby-plugins:yammer:1.1.0",
+ "labels": [
+ "notifier"
+ ],
+ "name": "yammer",
+ "previousTimestamp": "2013-03-15T21:40:08.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2013-07-19T19:16:06.00Z",
+ "requiredCore": "1.432",
+ "scm": "github.com",
+ "sha1": "B6WLNgpmp5jClFMCXu/hYzgmG0U=",
+ "title": "Yammer Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/yammer/1.1.0/yammer.hpi",
+ "version": "1.1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Yammer+Plugin"
+ },
+ "yandex-metrica": {
+ "buildDate": "Oct 03, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "vbauer",
+ "email": "bauer.vlad@gmail.com",
+ "name": "Vladislav Bauer"
+ }
+ ],
+ "excerpt": "Yandex Metrica plugin allows to decorate all Jenkins pages with <a href='https://metrica.yandex.com'>Yandex.Metrica</a> tracking code. It helps you get descriptive reports and record the actions of individual users, find out what they are searching&amp;nbsp;for on the build system, and how do they use it. ",
+ "gav": "org.jenkins-ci.plugins:yandex-metrica:1.0",
+ "labels": [
+ "page-decorator"
+ ],
+ "name": "yandex-metrica",
+ "releaseTimestamp": "2015-10-03T06:09:14.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "kw1tog/5AB6ffxc2n+g3X+b/iJY=",
+ "title": "Yandex Metrica Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/yandex-metrica/1.0/yandex-metrica.hpi",
+ "version": "1.0",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Yandex+Metrica+Plugin"
+ },
+ "yet-another-docker-plugin": {
+ "buildDate": "Oct 04, 2016",
+ "dependencies": [
+ {
+ "name": "durable-task",
+ "optional": false,
+ "version": "1.3"
+ },
+ {
+ "name": "jucies",
+ "optional": true,
+ "version": "0.2.0"
+ },
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "2.1.3"
+ },
+ {
+ "name": "ssh-slaves",
+ "optional": false,
+ "version": "1.10"
+ },
+ {
+ "name": "docker-commons",
+ "optional": false,
+ "version": "1.3.1"
+ },
+ {
+ "name": "ssh-credentials",
+ "optional": true,
+ "version": "1.11"
+ },
+ {
+ "name": "icon-shim",
+ "optional": false,
+ "version": "1.0.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "KostyaSha",
+ "name": "Kanstantsin Shautsou"
+ }
+ ],
+ "excerpt": "Allows to run Docker Jenkins Cloud Slaves.",
+ "gav": "com.github.kostyasha.yet-another-docker:yet-another-docker-plugin:0.1.0-rc27",
+ "labels": [
+ "cluster",
+ "cloud",
+ "slaves"
+ ],
+ "name": "yet-another-docker-plugin",
+ "previousTimestamp": "2016-10-02T02:50:08.00Z",
+ "previousVersion": "0.1.0-rc26",
+ "releaseTimestamp": "2016-10-04T20:32:30.00Z",
+ "requiredCore": "1.625.3",
+ "scm": "github.com",
+ "sha1": "0ezqyf8UJc1ywWCM2eaLTBH+K8s=",
+ "title": "Yet Another Docker Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/yet-another-docker-plugin/0.1.0-rc27/yet-another-docker-plugin.hpi",
+ "version": "0.1.0-rc27",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Yet+Another+Docker+Plugin"
+ },
+ "youtrack-plugin": {
+ "buildDate": "Sep 16, 2015",
+ "dependencies": [
+ {
+ "name": "mailer",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "erikzielke",
+ "email": "erikzielke@hotmail.com",
+ "name": "Erik Zielke"
+ }
+ ],
+ "excerpt": "This plugin provides some integration with <a href='http://jetbrains.com/youtrack'>YouTrack</a>. ",
+ "gav": "org.jenkins-ci.plugins:youtrack-plugin:0.6.6",
+ "labels": [
+ "external"
+ ],
+ "name": "youtrack-plugin",
+ "previousTimestamp": "2015-08-31T20:54:18.00Z",
+ "previousVersion": "0.6.5",
+ "releaseTimestamp": "2015-09-16T19:05:48.00Z",
+ "requiredCore": "1.494",
+ "scm": "github.com",
+ "sha1": "IoUpdeFaVp/xC9/NI0RygRS7dNQ=",
+ "title": "YouTrack Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/youtrack-plugin/0.6.6/youtrack-plugin.hpi",
+ "version": "0.6.6",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/YouTrack+Plugin"
+ },
+ "zapper": {
+ "buildDate": "May 07, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "adedayo",
+ "email": "dayo.dev@gmail.com",
+ "name": "Adedayo Adetoye"
+ }
+ ],
+ "excerpt": "Zapper is a Jenkins Continuous Integration system plugin that helps you run OWASP ZAP as part of your automated security assessment regime. The plugin can use a pre-installed version of ZAP when given the path to the ZAP installation. Alternatively, it can automatically download and build a version of ZAP to be used by your security tests.",
+ "gav": "org.jenkins-ci.plugins:zapper:1.0.7",
+ "labels": [
+ "post-build"
+ ],
+ "name": "zapper",
+ "previousTimestamp": "2014-08-10T22:57:52.00Z",
+ "previousVersion": "1.0.0",
+ "releaseTimestamp": "2015-05-07T13:37:22.00Z",
+ "requiredCore": "1.580.3",
+ "scm": "github.com",
+ "sha1": "34UIvZ0vshwvRhzAxmT8PT25PQc=",
+ "title": "Jenkins OWASP ZAP Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/zapper/1.0.7/zapper.hpi",
+ "version": "1.0.7",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Zapper+Plugin"
+ },
+ "zaproxy": {
+ "buildDate": "Feb 27, 2016",
+ "dependencies": [
+ {
+ "name": "credentials",
+ "optional": false,
+ "version": "1.9.4"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "ludovicroucoux",
+ "email": "ludovic.roucoux@gmail.com",
+ "name": "Ludovic Roucoux"
+ },
+ {
+ "developerId": "johannol",
+ "email": "johann.ollivierlapeyre@gmail.com",
+ "name": "Johann Ollivier-Lapeyre"
+ },
+ {
+ "developerId": "thilina27",
+ "email": "madhusanka.thilina@gmail.com",
+ "name": "Thilina Madhusanka"
+ },
+ {
+ "developerId": "hackthem",
+ "email": "abdellah.azougarh@gmail.com",
+ "name": "Abdellah AZOUGARH"
+ }
+ ],
+ "excerpt": "This plugin allows you to launch the security software ZAProxy ([https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project]) via Jenkins. ",
+ "gav": "fr.novia:zaproxy:1.2.1",
+ "labels": [],
+ "name": "zaproxy",
+ "previousTimestamp": "2016-01-26T00:23:36.00Z",
+ "previousVersion": "1.2.0",
+ "releaseTimestamp": "2016-02-27T13:55:04.00Z",
+ "requiredCore": "1.580.1",
+ "scm": "github.com",
+ "sha1": "Jn85bW48jIP+GmdKvavl78bI+80=",
+ "title": "ZAProxy Plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/zaproxy/1.2.1/zaproxy.hpi",
+ "version": "1.2.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ZAProxy+Plugin"
+ },
+ "zentimestamp": {
+ "buildDate": "Jul 25, 2015",
+ "dependencies": [
+ {
+ "name": "matrix-project",
+ "optional": false,
+ "version": "1.3"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "gbois",
+ "name": "Gregory Boissinot"
+ }
+ ],
+ "excerpt": "This plugin export a {{BUILD_TIMESTAMP}} variable. ",
+ "gav": "org.jenkins-ci.plugins:zentimestamp:4.2",
+ "labels": [
+ "buildwrapper"
+ ],
+ "name": "zentimestamp",
+ "previousTimestamp": "2015-05-25T12:18:40.00Z",
+ "previousVersion": "4.1",
+ "releaseTimestamp": "2015-07-25T23:42:50.00Z",
+ "requiredCore": "1.597",
+ "scm": "github.com",
+ "sha1": "B/foBT1yVu4BJWLJhDXUUKc7Nac=",
+ "title": "Jenkins Zentimestamp plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/zentimestamp/4.2/zentimestamp.hpi",
+ "version": "4.2",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ZenTimestamp+Plugin"
+ },
+ "zephyr-enterprise-test-management": {
+ "buildDate": "Jul 28, 2015",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "developer",
+ "email": "developer@getzephyr.com",
+ "name": "Zephyr Developer"
+ }
+ ],
+ "excerpt": "Creates test cases and publishes test results in <a href='http://www.getzephyr.com'>Zephyr</a> Enterprise for JUnit test cases ",
+ "gav": "org.jenkins-ci.plugins:zephyr-enterprise-test-management:1.1",
+ "labels": [
+ "post-build",
+ "external"
+ ],
+ "name": "zephyr-enterprise-test-management",
+ "previousTimestamp": "2015-07-14T01:46:22.00Z",
+ "previousVersion": "1.0",
+ "releaseTimestamp": "2015-07-28T16:51:50.00Z",
+ "requiredCore": "1.605",
+ "scm": "github.com",
+ "sha1": "EOMsqOd8lJNrTx+msotrOKdjWAY=",
+ "title": "Zephyr Enterprise Test Management plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/zephyr-enterprise-test-management/1.1/zephyr-enterprise-test-management.hpi",
+ "version": "1.1",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Zephyr+Enterprise+Test+Management+Plugin"
+ },
+ "zephyr-for-jira-test-management": {
+ "buildDate": "Oct 15, 2015",
+ "dependencies": [
+ {
+ "name": "junit",
+ "optional": false,
+ "version": "1.5"
+ }
+ ],
+ "developers": [
+ {
+ "developerId": "developer",
+ "email": "developer@getzephyr.com",
+ "name": "Zephyr Developer"
+ }
+ ],
+ "excerpt": "Creates test cases and publishes test results in&amp;nbsp;<a href='http://www.getzephyr.com/products/test-management-add-ons-for-atlassian'>Zephyr&amp;nbsp;For JIRA</a> for JUnit test cases",
+ "gav": "org.jenkins-ci.plugins:zephyr-for-jira-test-management:1.3",
+ "labels": [
+ "post-build",
+ "external"
+ ],
+ "name": "zephyr-for-jira-test-management",
+ "previousTimestamp": "2015-08-07T11:53:58.00Z",
+ "previousVersion": "1.2",
+ "releaseTimestamp": "2015-10-15T11:19:06.00Z",
+ "requiredCore": "1.605",
+ "scm": "github.com",
+ "sha1": "1ngrep0mmC7FBaTRqOKX/L2ZhIA=",
+ "title": "Zephyr for JIRA Test Management plugin",
+ "url": "http://updates.jenkins-ci.org/download/plugins/zephyr-for-jira-test-management/1.3/zephyr-for-jira-test-management.hpi",
+ "version": "1.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Zephyr+For+Jira+Test+Management+Plugin"
+ },
+ "zmq-event-publisher": {
+ "buildDate": "Apr 14, 2016",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "clarkb",
+ "email": "clark.boylan@gmail.com",
+ "name": "Clark Boylan"
+ }
+ ],
+ "excerpt": "",
+ "gav": "org.jenkins-ci.plugins:zmq-event-publisher:0.0.5",
+ "labels": [
+ "external"
+ ],
+ "name": "zmq-event-publisher",
+ "previousTimestamp": "2016-02-18T01:09:14.00Z",
+ "previousVersion": "0.0.4",
+ "releaseTimestamp": "2016-04-14T22:15:26.00Z",
+ "requiredCore": "1.460",
+ "scm": "svn.jenkins-ci.org",
+ "sha1": "P7twQcZbuP26TyQfH1kf2ehcn0g=",
+ "title": "Jenkins Event Publisher (via ZMQ PUB SUB)",
+ "url": "http://updates.jenkins-ci.org/download/plugins/zmq-event-publisher/0.0.5/zmq-event-publisher.hpi",
+ "version": "0.0.5",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ZMQ+Event+Publisher+Plugin"
+ },
+ "zos-connector": {
+ "buildDate": "Dec 15, 2015",
+ "dependencies": [],
+ "developers": [
+ {
+ "developerId": "CandidusLynx",
+ "email": "candiduslynx@gmail.com",
+ "name": "Alexander Shcherbakov"
+ }
+ ],
+ "excerpt": "IBM z/OS Connector&amp;nbsp;is a plugin which lets you connect your Jenkins to z/OS. ",
+ "gav": "org.jenkins-ci.plugins:zos-connector:1.2.3",
+ "labels": [
+ "scm",
+ "builder",
+ "misc"
+ ],
+ "name": "zos-connector",
+ "previousTimestamp": "2015-12-15T12:49:14.00Z",
+ "previousVersion": "1.2.2",
+ "releaseTimestamp": "2015-12-15T13:43:34.00Z",
+ "requiredCore": "1.608",
+ "scm": "github.com",
+ "sha1": "kjOzmCPxyw0bPciMsGSh5q+bT9g=",
+ "title": "IBM z/OS Connector",
+ "url": "http://updates.jenkins-ci.org/download/plugins/zos-connector/1.2.3/zos-connector.hpi",
+ "version": "1.2.3",
+ "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IBM+zOS+Connector"
+ }
+ },
+ "signature": {
+ "certificates": [
+ "MIIC3TCCAcUCBQDerb73MA0GCSqGSIb3DQEBDQUAMIGKMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxGDAWBgNVBAoTD0plbmtpbnMgUHJvamVjdDEaMBgGA1UEAxMRS29oc3VrZSBLYXdhZ3VjaGkxHTAbBgkqhkiG9w0BCQEWDmtrQGtvaHN1a2Uub3JnMB4XDTE2MDEyOTEwNDYwMloXDTE3MDEyODEwNDYwMlowXjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExGDAWBgNVBAoTD0plbmtpbnMgUHJvamVjdDEgMB4GA1UEAxMXQ29tbXVuaXR5IFVwZGF0ZSBDZW50ZXIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKTDDxjInVBgniu4TpRQoI29ci8lwzXsPX4anFI+1LiPsPk2RmIg05WEohD6RCzldgiNtaPGujyeR/+xXYd8Gev3Abm1OjlN6bZbzZHAX8FoDr4PJJWftq0LDg+YVki1p8eF65ByoHIVHmNeE7NH09kAnbT4w2DNGstwHcFO90RbAgMBAAEwDQYJKoZIhvcNAQENBQADggEBAH96iGUruYwF4Pv/DffI3AmCOlE4/hG/2uqacBrRN52LjIbVWEOOUesEIFMmyjbFcGKMzMwndOF+f8N6MAA4/EONvbLgJyC0VrL66VX0OrTfk1NZcfZkIMh5rrPoCpuIi8TF5GGM9ulwa82o50POjbdjInFvbW7L927Zil2dP/UvugeRnGYKCi9o62h96foJu/N1e3aSzEKA8KUwoW4peCPiv6LJ2xrnQXbYG1UN0hO4n4Cdw3Vebgewl31qRUJGFLKF6tslt/LAGk66y5XcKhel2guCfUa1Dhz4/6UlEK1NrnldiAsYBa4pnp4BcZ0RJcEdCiYe0b9D6BplUx1DDTo="
+ ],
+ "correct_digest": "wZ+PTpr+LmQLwCTccwRNSKQxU5g=",
+ "correct_signature": "HYTikU6kuUkJuFxhcx+a1rQxO1aPPTeHhYzWS2EzGjKxVWBmfm1wfilrXinTByDV3bQwXm1lt+kxnQ4+CX9p7FWKwz6NDUY9J4/3DTtRz0rg8UfKuADIr7wugOVgT5+q4A2lrmf5eRn/ORJyjl2iS8BmBYEADeC1VCCB7I3IwfU=",
+ "digest": "bHyAutK88B82AzUKvil1OO92rlI=",
+ "signature": "XTm44MdgbBXWuolyXnZKqc24zIid0bHs9V8vMxdJkF20LIUPfjWwMK0QRYo/Et40tiz+7Ogdh0Lw2rRycoxgYwlBL4Un1LtciDEYcG01y78Lv1ELdBKoVzTAtXKWp4RrvqTETG0s4xRGY/E6PtW3fVqL5aHTUnSvTeqmzSGpP1k="
+ },
+ "updateCenterVersion": "1"
+}