From 7ec9dc981f4678d567491df34846a63295c09e55 Mon Sep 17 00:00:00 2001 From: Steve Hill Date: Mon, 28 Aug 2023 17:17:57 -0700 Subject: [PATCH] feat(AddTeamToCodeOwners): override and exclude known team names Fixes #47 --- .../github/ArtifactIdTeamNameGenerator.java | 31 +- .../github/InMemoryTeamNameValidator.java | 1 - .../jenkins/github/teams.properties | 286 +++ .../github/AddTeamToCodeownersTest.java | 2 +- .../ArtifactIdTeamNameGeneratorTest.java | 31 + .../github/InMemoryTeamNameValidatorTest.java | 1 - .../resources/plugin-developers-teams.txt | 2257 +++++++++++++++++ .../resources/updatecenter-artifactIds.txt | 1911 ++++++++++++++ 8 files changed, 4516 insertions(+), 4 deletions(-) create mode 100644 src/main/resources/org/openrewrite/jenkins/github/teams.properties create mode 100644 src/test/resources/plugin-developers-teams.txt create mode 100644 src/test/resources/updatecenter-artifactIds.txt diff --git a/src/main/java/org/openrewrite/jenkins/github/ArtifactIdTeamNameGenerator.java b/src/main/java/org/openrewrite/jenkins/github/ArtifactIdTeamNameGenerator.java index 5c1bffd..006b267 100644 --- a/src/main/java/org/openrewrite/jenkins/github/ArtifactIdTeamNameGenerator.java +++ b/src/main/java/org/openrewrite/jenkins/github/ArtifactIdTeamNameGenerator.java @@ -15,17 +15,46 @@ */ package org.openrewrite.jenkins.github; +import java.io.IOException; +import java.io.InputStream; +import java.util.HashMap; import java.util.Locale; +import java.util.Map; +import java.util.Properties; class ArtifactIdTeamNameGenerator implements TeamNameGenerator { + private static final String EXCLUDE = "EXCLUDE"; + private static final String ORG = "@jenkinsci/"; + private final Map artifactIdAdvice = loadAdvice(); @Override public String generate(TeamNameInput input) { String artifactId = input.getArtifactId(); + String advice = artifactIdAdvice.get(artifactId); + if (EXCLUDE.equalsIgnoreCase(advice)) { + return ""; + } + if (advice != null) { + return ORG + advice; + } String withoutParent = artifactId; if (artifactId.endsWith("-parent") || artifactId.endsWith("-plugin")) { withoutParent = artifactId.substring(0, artifactId.lastIndexOf('-')); } - return ("@jenkinsci/" + (withoutParent + "-plugin-developers")).toLowerCase(Locale.ROOT); + return (ORG + (withoutParent + "-plugin-developers")).toLowerCase(Locale.ROOT); + } + + private static Map loadAdvice() { + Properties p = new Properties(); + try (InputStream is = ArtifactIdTeamNameGenerator.class.getResourceAsStream("teams.properties")) { + Map o = new HashMap<>(); + p.load(is); + for (Map.Entry entry : p.entrySet()) { + o.put((String) entry.getKey(), (String) entry.getValue()); + } + return o; + } catch (IOException e) { + throw new RuntimeException(e); + } } } diff --git a/src/main/java/org/openrewrite/jenkins/github/InMemoryTeamNameValidator.java b/src/main/java/org/openrewrite/jenkins/github/InMemoryTeamNameValidator.java index 20291b7..d8d819b 100644 --- a/src/main/java/org/openrewrite/jenkins/github/InMemoryTeamNameValidator.java +++ b/src/main/java/org/openrewrite/jenkins/github/InMemoryTeamNameValidator.java @@ -41,7 +41,6 @@ public boolean isValid(@Nullable String name) { */ private static Set banned() { Set banned = new HashSet<>(); - banned.add("@jenkinsci/custom-tools-plugin-developers"); banned.add("@jenkinsci/-plugin-developers"); return banned; } diff --git a/src/main/resources/org/openrewrite/jenkins/github/teams.properties b/src/main/resources/org/openrewrite/jenkins/github/teams.properties new file mode 100644 index 0000000..046212b --- /dev/null +++ b/src/main/resources/org/openrewrite/jenkins/github/teams.properties @@ -0,0 +1,286 @@ +# +# Copyright 2023 the original author or authors. +#

+# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +#

+# https://www.apache.org/licenses/LICENSE-2.0 +#

+# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +ace-editor=EXCLUDE +adaptive-disconnector=EXCLUDE +allure-jenkins-plugin=allure-plugin-developers +AnchorChain=anchor-chain-plugin-developers +ApicaLoadtest=apica-loadtest-plugin-developers +appdynamics-dashboard=codecentric-appdynamics-plugin-developers +appscan=ibm-asoc-plugin-developers +archived-artifact-url-viewer=EXCLUDE +asakusa-satellite-plugin=EXCLUDE +assembla-auth=EXCLUDE +attention=EXCLUDE +aws-java-sdk-cloudformation=aws-java-sdk-plugin-developers +aws-java-sdk-codebuild=aws-java-sdk-plugin-developers +aws-java-sdk-ec2=aws-java-sdk-plugin-developers +aws-java-sdk-ecr=aws-java-sdk-plugin-developers +aws-java-sdk-ecs=aws-java-sdk-plugin-developers +aws-java-sdk-efs=aws-java-sdk-plugin-developers +aws-java-sdk-elasticbeanstalk=aws-java-sdk-plugin-developers +aws-java-sdk-iam=aws-java-sdk-plugin-developers +aws-java-sdk-kinesis=aws-java-sdk-plugin-developers +aws-java-sdk-logs=aws-java-sdk-plugin-developers +aws-java-sdk-minimal=aws-java-sdk-plugin-developers +aws-java-sdk-parent=aws-java-sdk-plugin-developers +aws-java-sdk-secretsmanager=aws-java-sdk-plugin-developers +aws-java-sdk-sns=aws-java-sdk-plugin-developers +aws-java-sdk-sqs=aws-java-sdk-plugin-developers +aws-java-sdk-ssm=aws-java-sdk-plugin-developers +aws-yum-parameter=EXCLUDE +backlog=EXCLUDE +backup-interrupt-plugin=EXCLUDE +bds-plugin=EXCLUDE +behave-testresults-publisher=EXCLUDE +bigpanda-jenkins=bigpanda-plugin-developers +bitbucket-oauth=EXCLUDE +bitbucket-scm-filter-aged-refs=EXCLUDE +bitbucket-scm-filter-jira-validator=EXCLUDE +bitbucket-scm-trait-commit-skip=EXCLUDE +BlameSubversion=EXCLUDE +BlazeMeterJenkinsPlugin=blazemeter-plugin-developers +blueocean-bitbucket-pipeline=blueocean-plugin-developers +blueocean-commons=blueocean-plugin-developers +blueocean-config=blueocean-plugin-developers +blueocean-core-js=blueocean-plugin-developers +blueocean-dashboard=blueocean-plugin-developers +blueocean-events=blueocean-plugin-developers +blueocean-github-pipeline=blueocean-plugin-developers +blueocean-git-pipeline=blueocean-plugin-developers +blueocean-i18n=blueocean-plugin-developers +blueocean-jira=blueocean-plugin-developers +blueocean-jwt=blueocean-plugin-developers +blueocean-personalization=blueocean-plugin-developers +blueocean-pipeline-api-impl=blueocean-plugin-developers +blueocean-pipeline-scm-api=blueocean-plugin-developers +blueocean-rest=blueocean-plugin-developers +blueocean-rest-impl=blueocean-plugin-developers +blueocean-web=blueocean-plugin-developers +bootstrap=EXCLUDE +browser-axis-plugin=EXCLUDE +bugzilla=EXCLUDE +build-environment=EXCLUDE +build-env-propagator=EXCLUDE +buildgraph-view=buildgraph-view-developers +build-requester=EXCLUDE +build-steps-from-json=EXCLUDE +build-token-root=EXCLUDE +build-view-column=EXCLUDE +built-on-column=builton-column-plugin-developers +carl=EXCLUDE +chosen-views-tabbar=EXCLUDE +cli-commander=EXCLUDE +clone-workspace-scm=jenkins-clone-workspace-scm-plugin-developers +cloudbees-bitbucket-branch-source=bitbucket-branch-source-plugin-developers +cluster-stats=EXCLUDE +cocoapods-integration=EXCLUDE +codedeploy=aws-codedeploy-plugin-developers +collabnet-automic-deploy=collabnet-uc4-deploy-plugin-developers +ColumnsPlugin=EXCLUDE +cucumber-perf=cucumber-performance-plugin-developers +cucumber-trends-report=cucumber-trend-report-plugin-developers +CustomHistory=custom-history-plugin-developers +custom-tools-plugin=customtools-plugin-developers +cygwin-process-killer=EXCLUDE +dark-theme=dark-theme-developers +declarative-pipeline-migration-assistant-api=convert-to-declarative-developers +declarative-pipeline-migration-assistant=convert-to-declarative-developers +declarative-pipeline-migration-assistant-parent=convert-to-declarative-developers +delete-log-plugin=EXCLUDE +delivery-pipeline-plugin=EXCLUDE +delta-cloud=EXCLUDE +dependencyanalyzer=EXCLUDE +dependency-check-jenkins-plugin=dependency-check-plugin-developers +deploydb=EXCLUDE +deployhub=deploy-hub-plugin-developers +description-column-plugin=EXCLUDE +design-library=EXCLUDE +drecycler=EXCLUDE +dtkit-api=dtkit-plugin-developers +dumpling=EXCLUDE +dynamic_extended_choice_parameter=dynamic-extended-choice-parameter-plugin-developers +dynatrace-dashboard=dynatrace-plugin-developers +ec2-cloud-axis=EXCLUDE +ec2-deployment-dashboard=EXCLUDE +embotics-vcommander=EXCLUDE +emmacoveragecolumn=EXCLUDE +emotional-jenkins-plugin=EXCLUDE +enhanced-old-build-discarder=EXCLUDE +environment-labels-setter=EXCLUDE +environment-manager=environment-manager-tools-plugin-developers +escaped-markup-plugin=EXCLUDE +event-announcer=EXCLUDE +excludeMatrixParent=exclude-matrix-parent-developers +exclusive-label-plugin=EXCLUDE +feature-branch-notifier=EXCLUDE +flow=EXCLUDE +GatekeeperPlugin=gatekeeper-plugin-developers +gerrit-code-review=gerrit-plugin-developers +github-organization-folder=EXCLUDE +github-scm-filter-aged-refs=scm-filter-aged-refs-plugin-developers +github-scm-filter-jira-validator=scm-filter-jira-validator-plugin-developers +github-scm-trait-commit-skip=scm-trait-commit-skip-plugin-developers +gitlab-merge-request-jenkins=gitlab-merge-request-builder-plugin-developers +google-api-client-plugin=EXCLUDE +google-git-notes-publisher=EXCLUDE +graphiteIntegrator=graphiteintegrator-developers +groovy-remote=EXCLUDE +handlebars=js-libs-developers +hp-operations-orchestration-automation-execution-plugin=EXCLUDE +http_request=http-request-plugin-developers +hudson-pview-plugin=EXCLUDE +hudson-wsclean-plugin=wsclean-plugin-developers +ibm-application-security=ibm-asoc-plugin-developers +icon-shim=EXCLUDE +idobata-notifier=EXCLUDE +inedo-buildmaster=buildmaster-plugin-developers +instance-identity=instance-identity-module-developers +internetmeme=internet-meme-plugin-developers +ios-device-connector=EXCLUDE +issue-link=EXCLUDE +itms-for-jira=itms-junit-report-publisher-plugin-developers +jbpm-embedded-plugin=EXCLUDE +jclouds-jenkins=jclouds-plugin-developers +jenkinsci-appspider-plugin=appspider-build-scanner-plugin-developers +jenkins-design-language=jenkins-design-language-developers +jenkins-flowdock-plugin=flowdock-plugin-developers +jenkins-jira-issue-updater=jira-issue-updater-plugin-developers +jenkins-multijob-plugin=tikal-multijob-plugin-developers +jenkins-reviewbot=EXCLUDE +jenkins-tag-cloud-plugin=tag-cloud-plugin-developers +jenkins-testswarm-plugin=testswarm-plugin-developers +jenkinswalldisplay=walldisplay-plugin-developers +job-parameter-summary=EXCLUDE +jobtemplates=EXCLUDE +jquery-detached=jquery-detached-developers +jslint=jslint-jenkins-plugin-developers +jucies=EXCLUDE +kanboard=kanboard-publisher-plugin-developers +keepSlaveOffline=keep-slave-offline-developers +kiuwanJenkinsPlugin=kiuwan-plugin-developers +kubernetes-pipeline-devops-steps=kubernetes-pipeline-plugin-developers +labmanager=EXCLUDE +lenientshutdown=lenient-shutdown-plugin-developers +list-git-branches-parameter=list-git-branches-plugin-developers +loaderio-jenkins-plugin=loaderio-plugin-developers +mailcommander=mail-commander-plugin-developers +matrix-combinations-parameter=matrix-combinations-plugin-developers +maven-release-cascade=EXCLUDE +mina-sshd-api-common=mina-sshd-api-plugin-developers +mina-sshd-api-core=mina-sshd-api-plugin-developers +mina-sshd-api-scp=mina-sshd-api-plugin-developers +mina-sshd-api-sftp=mina-sshd-api-plugin-developers +mission-control-view=mission-control-view-developers +momentjs=EXCLUDE +multi-branch-project-plugin=EXCLUDE +multi-module-tests-publisher=EXCLUDE +NegotiateSSO=negotiate-sso-plugin-developers +neoload-jenkins-plugin=neoload-plugin-developers +nexus-jenkins-plugin=nexus-platform-plugin-developers +nexus-task-runner=EXCLUDE +node-sharing-executor=foreman-node-sharing-plugin-developers +node-sharing-orchestrator=foreman-node-sharing-plugin-developers +node-sharing-parent=foreman-node-sharing-plugin-developers +nopmdcheck=EXCLUDE +nopmdverifytrac=EXCLUDE +numeraljs=EXCLUDE +octoperf=octoperf-jci-plugin-developers +openscada-jenkins-exporter=EXCLUDE +openshift-k8s-credentials=openshift-token-kubernetes-credentials-plugin-developers +paaslane-estimate=paaslane-plugin-developers +package-drone=EXCLUDE +package-parameter=EXCLUDE +parent-pom=EXCLUDE +pegdown-formatter=EXCLUDE +pending-changes=pendingchanges-plugin-developers +performance-signature-dynatrace=performance-signature-dynatrace-plugin-developers +performance-signature-dynatracesaas=performance-signature-dynatrace-plugin-developers +performance-signature-parent-pom=performance-signature-dynatrace-plugin-developers +performance-signature-ui=performance-signature-dynatrace-plugin-developers +performance-signature-viewer=performance-signature-dynatrace-plugin-developers +periodic-reincarnation=EXCLUDE +pipeline-aggregator-view=aggregated-pipeline-view-plugin-developers +pipeline-model-api=pipeline-model-definition-plugin-developers +pipeline-model-declarative-agent=pipeline-model-definition-plugin-developers +pipeline-model-extensions=pipeline-model-definition-plugin-developers +pipeline-model-parent=pipeline-model-definition-plugin-developers +pipeline-rest-api=pipeline-stage-view-plugin-developers +pipeline-stage-tags-metadata=pipeline-model-definition-plugin-developers +pipeline-utility-steps=workflow-utility-steps-plugin-developers +pom2config=EXCLUDE +pom=EXCLUDE +portshift-scanner=EXCLUDE +pragprog=EXCLUDE +prereq-buildstep=EXCLUDE +preSCMbuildstep=pre-scm-buildstep-plugin-developers +PrioritySorter=priority-sorter-plugin-developers +project-description-setter=EXCLUDE +project-health-report=EXCLUDE +project-inheritance=EXCLUDE +radiatorviewplugin=radiatorview-plugin-developers +rallyBuild=EXCLUDE +rapiddeploy-jenkins=rapiddeploy-plugin-developers +readonly-parameters=EXCLUDE +repository=maven-repository-plugin-developers +restricted-register=EXCLUDE +rocketchatnotifier=rocket-chat-notifier-plugin-developers +rubymotion=EXCLUDE +run-condition-extras=EXCLUDE +run-selector=EXCLUDE +scalable-amazon-ecs=EXCLUDE +search-all-results-plugin=EXCLUDE +seleniumhtmlreport=seleniumhtmlreport-developers +show-build-parameters=EXCLUDE +sicci_for_xcode=sicci-for-xcode-plugin-developers +signal-killer=signal-killer-developers +simpleclearcase=EXCLUDE +skype-notifier=skype-im-plugin-developers +skytap=skytap-cloud-plugin-developers +sladiator-notifier=EXCLUDE +slave-proxy=EXCLUDE +slave-status=EXCLUDE +snakeyaml-api=snakeyaml-plugin-developers +splunk-devops-extend=splunk-devops-plugin-developers +SSSCM=EXCLUDE +startup-trigger-plugin=startup-trigger-plugin-plugin-developers +StashBranchParameter=stash-branch-parameters-plugin-developers +suite-test-groups-publisher=EXCLUDE +summary_report=EXCLUDE +svn-workspace-cleaner=EXCLUDE +synergy=synergy_scm-plugin-developers +tag-profiler=EXCLUDE +tap=EXCLUDE +terminate-ssh-processes-plugin=EXCLUDE +testflo-for-jira-test-management-automation=testflo-test-results-publisher-plugin-developers +testng-plugin=testng-plugin-plugin-developers +teststudiomobiletesting=EXCLUDE +thinBackup=thin-backup-plugin-developers +throttle-concurrents=throttle-concurrent-builds-plugin-developers +tinfoil-scan=tinfoil-security-plugin-developers +tool-labels-plugin=EXCLUDE +TwilioNotifier=twilio-notifier-plugin-developers +uno-choice=active-choices-plugin-developers +update-sites-manager=EXCLUDE +url-auth=EXCLUDE +view-cloner=EXCLUDE +violation-columns=EXCLUDE +workplace-notifier=workplace-plugin-developers +writable-filesystem-monitor=EXCLUDE +xtrigger-api=xtrigger-lib-developers +yet-another-docker-plugin=EXCLUDE +zdevops=EXCLUDE +zmq-event-publisher=EXCLUDE diff --git a/src/test/java/org/openrewrite/jenkins/github/AddTeamToCodeownersTest.java b/src/test/java/org/openrewrite/jenkins/github/AddTeamToCodeownersTest.java index b6146ca..6aa1915 100644 --- a/src/test/java/org/openrewrite/jenkins/github/AddTeamToCodeownersTest.java +++ b/src/test/java/org/openrewrite/jenkins/github/AddTeamToCodeownersTest.java @@ -203,7 +203,7 @@ void shouldNoOpIfInvalidTeamGenerated() { plugin 4.72 - custom-tools-plugin + tool-labels-plugin 0.1 diff --git a/src/test/java/org/openrewrite/jenkins/github/ArtifactIdTeamNameGeneratorTest.java b/src/test/java/org/openrewrite/jenkins/github/ArtifactIdTeamNameGeneratorTest.java index e41ffc5..682d5a8 100644 --- a/src/test/java/org/openrewrite/jenkins/github/ArtifactIdTeamNameGeneratorTest.java +++ b/src/test/java/org/openrewrite/jenkins/github/ArtifactIdTeamNameGeneratorTest.java @@ -16,8 +16,14 @@ package org.openrewrite.jenkins.github; import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvFileSource; import org.junit.jupiter.params.provider.CsvSource; +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; + import static org.assertj.core.api.Assertions.assertThat; class ArtifactIdTeamNameGeneratorTest { @@ -38,4 +44,29 @@ void shouldGenerateExpectedTeamName(String artifactId, String expected) { String actual = generator.generate(new TeamNameInput(artifactId)); assertThat(actual).isEqualTo(expected); } + + @ParameterizedTest + @CsvFileSource(resources = "/updatecenter-artifactIds.txt") + void shouldGenerateValidTeamName(String artifactId) { + String actual = generator.generate(new TeamNameInput(artifactId)); + if (!actual.isEmpty()) { + boolean exists = exists(actual); + assertThat(exists).as("artifactId %s's team name is %s", artifactId, actual).isTrue(); + } + } + + private static boolean exists(String team) { + try (InputStream is = ArtifactIdTeamNameGeneratorTest.class.getResourceAsStream("/plugin-developers-teams.txt")) { + assertThat(is).isNotNull(); + try (BufferedReader br = new BufferedReader(new InputStreamReader(is))) { + return br.lines() + .filter(s -> !s.isBlank()) + .map(String::trim) + .map(s -> "@jenkinsci/" + s) + .anyMatch(s -> s.equals(team)); + } + } catch (IOException e) { + throw new RuntimeException(e); + } + } } diff --git a/src/test/java/org/openrewrite/jenkins/github/InMemoryTeamNameValidatorTest.java b/src/test/java/org/openrewrite/jenkins/github/InMemoryTeamNameValidatorTest.java index e6617ac..ab15422 100644 --- a/src/test/java/org/openrewrite/jenkins/github/InMemoryTeamNameValidatorTest.java +++ b/src/test/java/org/openrewrite/jenkins/github/InMemoryTeamNameValidatorTest.java @@ -35,7 +35,6 @@ void shouldValidate() { @ParameterizedTest @NullAndEmptySource @ValueSource(strings = { - "@jenkinsci/custom-tools-plugin-developers", // actual: @jenkinsci/customtools-plugin-developers "@jenkinsci/-plugin-developers", // we didn't get anything for the artifactId }) void shouldNotValidate(String input) { diff --git a/src/test/resources/plugin-developers-teams.txt b/src/test/resources/plugin-developers-teams.txt new file mode 100644 index 0000000..6849614 --- /dev/null +++ b/src/test/resources/plugin-developers-teams.txt @@ -0,0 +1,2257 @@ +42crunch-security-audit-plugin-developers +abap-ci-plugin-developers +absint-a3-plugin-developers +absint-astree-plugin-developers +accelerated-build-now-plugin-developers +accelq-ci-connect-plugin-developers +accurev-plugin-developers +active-choices-plugin-developers +active-directory-plugin-developers +activiti-explorer-plugin-developers +acunetix-360-scan-plugin-developers +acunetix-plugin-developers +add-changes-to-build-changelog-plugin-developers +additional-identities-plugin-developers +additional-metrics-plugin-developers +adobe-cloud-manager-plugin-developers +adoptopenjdk-plugin-developers +advanced-installer-msi-builder-plugin-developers +agc-app-upload-plugin-developers +agent-loadbalance-plugin-developers +agent-maintenance-plugin-developers +agent-server-parameter-plugin-developers +agent-status-plugin-developers +aggregated-pipeline-view-plugin-developers +agile-cockpit-notification-plugin-developers +aio-tests-plugin-developers +ajax-list-view-plugin-developers +alauda-devops-credentials-provider-plugin-developers +alauda-devops-pipeline-plugin-developers +alauda-devops-sync-plugin-developers +alauda-kubernetes-support-plugin-developers +alauda-pipeline-plugin-developers +alibabacloud-credentials-plugin-developers +alibabacloud-ecs-plugin-developers +alibabacloud-edas-plugin-developers +alibabacloud-pkg-deployment-plugin-developers +aliyun-container-service-deploy-plugin-developers +aliyun-oss-uploader-plugin-developers +all-changes-plugin-developers +allure-plugin-developers +amazon-ecr-plugin-developers +amazon-ecs-plugin-developers +amqp-build-trigger-plugin-developers +analysis-model-api-plugin-developers +analysis-pom-plugin-developers +anchor-chain-plugin-developers +anchore-container-scanner-plugin-developers +android-apk-size-watcher-plugin-developers +android-emulator-plugin-developers +android-lint-plugin-developers +android-signing-plugin-developers +anka-build-plugin-developers +anonymous-uptime-check-plugin-developers +ansible-plugin-developers +ansible-tower-plugin-developers +ansicolor-plugin-developers +antexec-plugin-developers +ant-in-workspace-plugin-developers +antisamy-markup-formatter-plugin-developers +ant-plugin-developers +any-buildstep-plugin-developers +anything-goes-formatter-plugin-developers +apache-httpcomponents-client-4-api-plugin-developers +apache-httpcomponents-client-5-api-plugin-developers +apica-loadtest-plugin-developers +apifortress-plugin-developers +apimap-plugin-developers +appaloosa-plugin-developers +appcenter-plugin-developers +app-detector-plugin-developers +appdome-build-2secure-plugin-developers +appetize-plugin-developers +app-io-plugin-developers +applatix-plugin-developers +application-director-plugin-developers +applitools-eyes-plugin-developers +appray-plugin-developers +apprenda-plugin-developers +appspider-build-scanner-plugin-developers +appthwack-plugin-developers +aptly-publisher-plugin-developers +aqua-microscanner-plugin-developers +aqua-security-scanner-plugin-developers +aqua-serverless-plugin-developers +arachni-scanner-plugin-developers +arbitrary-parameters-plugin-developers +archive-files-scm-plugin-developers +arestocats-plugin-developers +argus-notifier-plugin-developers +aribot-plugin-developers +artifactdeployer-plugin-developers +artifact-diff-plugin-developers +artifact-manager-s3-plugin-developers +artifactory-plugin-developers +artifact-parameter-plugin-developers +artifact-promotion-plugin-developers +artifact-repository-parameter-plugin-developers +artifact-version-recorder-plugin-developers +artifactz-plugin-developers +ascentialtest-cmd-line-plugin-developers +ascii-magician-plugin-developers +assembla-merge-request-builder-plugin-developers +assembla-plugin-developers +assertthat-bdd-jira-plugin-developers +associated-files-plugin-developers +async-http-client-plugin-developers +async-job-plugin-developers +atlassian-bitbucket-server-integration-plugin-developers +atlassian-jira-software-cloud-plugin-developers +audit2db-plugin-developers +audit-log-plugin-developers +audit-trail-plugin-developers +authentication-tokens-plugin-developers +authorize-project-plugin-developers +autify-plugin-developers +autoaction-step-plugin-developers +autocancel-plugin-developers +autocomplete-parameter-plugin-developers +autograding-plugin-developers +autonomiq-plugin-developers +avatar-plugin-developers +aws-batch-plugin-developers +aws-beanstalk-publisher-plugin-developers +aws-beanstalk-releaser-plugin-developers +aws-bucket-credentials-plugin-developers +aws-cloudwatch-logs-publisher-plugin-developers +aws-codebuild-plugin-developers +aws-codecommit-jobs-plugin-developers +aws-codecommit-trigger-plugin-developers +aws-codedeploy-plugin-developers +aws-codepipeline-plugin-developers +aws-credentials-plugin-developers +aws-device-farm-plugin-developers +awseb-deployment-plugin-developers +aws-global-configuration-plugin-developers +aws-java-sdk-plugin-developers +aws-kinesis-consumer-plugin-developers +aws-lambda-cloud-plugin-developers +aws-lambda-plugin-developers +aws-parameter-store-plugin-developers +aws-s3-cleaner-plugin-developers +aws-sam-plugin-developers +aws-secrets-manager-credentials-provider-plugin-developers +aws-secrets-manager-secret-source-plugin-developers +aws-sqs-plugin-developers +aws-sqs-trigger-plugin-developers +azure-acs-plugin-developers +azure-ad-plugin-developers +azure-app-service-plugin-developers +azure-artifact-manager-plugin-developers +azure-batch-parallel-plugin-developers +azure-cli-plugin-developers +azure-commons-plugin-developers +azure-container-agents-plugin-developers +azure-container-registry-tasks-plugin-developers +azure-cosmosdb-plugin-developers +azure-credentials-ext-plugin-developers +azure-credentials-plugin-developers +azure-dev-spaces-plugin-developers +azure-event-grid-notifier-plugin-developers +azure-function-plugin-developers +azure-iot-edge-plugin-developers +azure-keyvault-plugin-developers +azure-publishersettings-credentials-plugin-developers +azure-sdk-plugin-developers +azure-slave-plugin-developers +azure-vm-agents-plugin-developers +azure-vmss-plugin-developers +backup-jobs-plugin-developers +backup-plugin-developers +badge-plugin-developers +bart-plugin-developers +basic-branch-build-strategies-plugin-developers +batch-task-plugin-developers +bazaar-plugin-developers +beagle-security-plugin-developers +beaker-builder-plugin-developers +bearychat-plugin-developers +beer-plugin-developers +benchmark-evaluator-plugin-developers +benchmark-plugin-developers +bevigil-ci-plugin-developers +bigpanda-plugin-developers +bitbucket-approval-filter-plugin-developers +bitbucket-approve-plugin-developers +bitbucket-branch-source-plugin-developers +bitbucket-build-status-notifier-plugin-developers +bitbucket-filter-project-trait-plugin-developers +bitbucket-kubernetes-credentials-plugin-developers +bitbucket-plugin-developers +bitbucket-pullrequest-builder-plugin-developers +bitbucket-pullrequests-filter-plugin-developers +bitbucket-push-and-pull-request-plugin-developers +bitkeeper-plugin-developers +blackduck-detect-plugin-developers +blackduck-hub-plugin-developers +blackduck-installer-plugin-developers +blazemeter-plugin-developers +blink1-plugin-developers +blitz_io-plugin-developers +block-build-final-project-plugin-developers +block-queued-job-plugin-developers +block-same-builds-plugin-developers +blueocean-autofavorite-plugin-developers +blueocean-display-url-plugin-developers +blueocean-executor-info-plugin-developers +blueocean-maven-plugin-developers +blueocean-pipeline-editor-plugin-developers +blueocean-plugin-developers +bmc-cfa-plugin-developers +bmc-change-manager-imstm-plugin-developers +bmc-policy-plugin-developers +bmc-rpd-plugin-developers +boot-clj-plugin-developers +bootstrap4-api-plugin-developers +bootstrap5-api-plugin-developers +bootstraped-multi-test-results-report-plugin-developers +bouncycastle-api-plugin-developers +brakeman-plugin-developers +branch-api-plugin-developers +branch-source-aged-refs-traits-plugin-developers +branch-source-commit-skip-traits-plugin-developers +branch-source-jira-validator-traits-plugin-developers +breachlock-dast-plugin-developers +browserstack-integration-plugin-developers +btc-embeddedplatform-plugin-developers +btrfs-workspace-plugin-developers +buckminster-plugin-developers +buddycloud-plugin-developers +build-alias-setter-plugin-developers +build-blocker-plugin-developers +build-cause-run-condition-plugin-developers +buildcoin-plugin-developers +build-configurator-plugin-developers +buildcontext-capture-plugin-developers +build-description-plugin-developers +build-discarder-plugin-developers +build-executors-filter-offline-plugin-developers +build-failure-analyzer-plugin-developers +buildflow-extensions-plugin-developers +build-flow-plugin-developers +buildgraph-view-developers +build-health-cache-updater-plugin-developers +buildheroes-plugin-developers +build-history-manager-plugin-developers +build-history-metrics-plugin-developers +build-keeper-plugin-developers +build-line-plugin-developers +buildmaster-plugin-developers +build-metrics-plugin-developers +build-monitor-plugin-developers +build-name-setter-plugin-developers +build-node-column-plugin-developers +build-notifications-plugin-developers +build-pipeline-extension-layout-plugin-developers +build-pipeline-plugin-developers +build-publisher-plugin-developers +buildresult-trigger-plugin-developers +buildrotator-plugin-developers +builds-chain-fingerprinter-plugin-developers +buildsteps-as-code-plugin-developers +build-symlink-plugin-developers +build-time-blame-plugin-developers +build-timeout-plugin-developers +build-timestamp-plugin-developers +build-token-trigger-plugin-developers +buildtriggerbadge-plugin-developers +build-user-vars-plugin-developers +build-with-parameters-plugin-developers +builton-column-plugin-developers +bulk-builder-plugin-developers +bumblebee-plugin-developers +byteguard-build-actions-plugin-developers +ca-apm-plugin-developers +cachet-gating-plugin-developers +caffeine-api-plugin-developers +calendar-view-plugin-developers +caliper-ci-plugin-developers +callback-buildstep-plugin-developers +call-remote-job-plugin-developers +ca-mat-performance-benchmarking-by-broadcom-plugin-developers +campfire-plugin-developers +cantata-plugin-developers +capitomcat-plugin-developers +carbonetes-serverless-container-scanning-and-policy-compliance-plugin-developers +caroline-plugin-developers +cas1-plugin-developers +casdoor-auth-plugin-developers +ca-service-virtualization-plugin-developers +cas-plugin-developers +castlite-plugin-developers +catalogic-ecx-plugin-developers +categorized-view-plugin-developers +catlight-plugin-developers +cavirin-image-secure-plugin-developers +cavisson-ns-nd-integration-plugin-developers +cccc-plugin-developers +ccm-plugin-developers +cctray-xml-plugin-developers +cdevents-plugin-developers +cerberus-testing-plugin-developers +certificate-authentication-plugin-developers +ceylon-plugin-developers +cflint-plugin-developers +change-assembly-version-plugin-developers +changelog-history-plugin-developers +changes-since-last-success-plugin-developers +chaos-butler-plugin-developers +chaos-monkey-plugin-developers +chartjs-api-plugin-developers +chatter-notifier-plugin-developers +chatwork-plugin-developers +checkmarx-ast-scanner-plugin-developers +checkmarx-plugin-developers +checks-api-plugin-developers +checkstyle-plugin-developers +chefbuilder-plugin-developers +chef-cookbook-pipeline-plugin-developers +chef-identity-plugin-developers +chef-plugin-developers +chef-tracking-plugin-developers +choice-from-file-parameter-plugin-developers +chosen-plugin-developers +chromedriver-plugin-developers +chrome-frame-plugin-developers +chroot-plugin-developers +chucknorris-plugin-developers +cifs-plugin-developers +ci-game-plugin-developers +cisco-spark-notifier-plugin-developers +cisco-spark-plugin-developers +ci-skip-plugin-developers +ci-with-toad-devops-toolkit-plugin-developers +ci-with-toad-edge-plugin-developers +claim-plugin-developers +clamav-plugin-developers +clang-scanbuild-plugin-developers +clang-tidy-plugin-developers +clearcase-plugin-developers +clearcase-release-plugin-developers +clearcase-ucm-api-plugin-developers +clearcase-ucm-baseline-plugin-developers +clearcase-ucm-plugin-developers +clever-cloud-plugin-developers +cli-extras-plugin-developers +clif-performance-testing-plugin-developers +cloudbees-advisor-plugin-developers +cloudbees-cd-plugin-developers +cloudbees-credentials-plugin-developers +cloudbees-deployer-plugin-developers +cloudbees-devoptics-enabler-plugin-developers +cloudbees-disk-usage-simple-plugin-developers +cloudbees-enabler-plugin-developers +cloudbees-feature-management-plugin-developers +cloudbees-folder-plugin-developers +cloudbees-jenkins-advisor-plugin-developers +cloudcoreo-deploytime-plugin-developers +cloudevents-plugin-developers +cloudforge-plugin-developers +cloudfoundry-plugin-developers +cloudguard-shiftleft-plugin-developers +cloudhub-deployer-plugin-developers +cloudify-plugin-developers +cloudshare-docker-plugin-developers +cloudshell-sandbox-plugin-developers +cloud-stats-plugin-developers +cloudtest-plugin-developers +cloverphp-plugin-developers +clover-plugin-developers +cmakebuilder-plugin-developers +cmvc-plugin-developers +cobertura-plugin-developers +cocoemma-plugin-developers +codahale-metrics-ganglia-plugin-developers +codahale-metrics-graphite-plugin-developers +codahale-metrics-librato-plugin-developers +codahale-metrics-plugin-developers +codebeamer-coverage-publisher-plugin-developers +codebeamer-result-trend-updater-plugin-developers +codebeamer-xunit-importer-plugin-developers +codebeamer-xunit-uploader-plugin-developers +codebuild-cloud-plugin-developers +codebuilder-cloud-plugin-developers +codecentric-appdynamics-plugin-developers +codeclimate-plugin-developers +codecommit-url-helper-plugin-developers +code-coverage-api-plugin-developers +codecover-plugin-developers +codedx-plugin-developers +codefresh-plugin-developers +codeplex-plugin-developers +codeql-plugin-developers +codescanner-plugin-developers +codescan-plugin-developers +codescene-plugin-developers +codesonar-plugin-developers +codethreat-scanner-plugin-developers +codeviation-plugin-developers +coding-webhook-plugin-developers +collabnet-plugin-developers +collabnet-uc4-deploy-plugin-developers +collapsing-console-sections-plugin-developers +color-logger-plugin-developers +command-launcher-plugin-developers +comments-remover-plugin-developers +commit-message-trigger-plugin-developers +commons-httpclient3-api-plugin-developers +commons-lang3-api-plugin-developers +commons-lang-api-plugin-developers +commons-text-api-plugin-developers +compact-columns-plugin-developers +compatibility-action-storage-plugin-developers +composer-dependency-analysis-plugin-developers +composer-security-checker-plugin-developers +compound-slaves-plugin-developers +compress-artifacts-plugin-developers +compress-buildlog-plugin-developers +compressed_files_viewer-plugin-developers +computer-queue-plugin-developers +compuware-common-configuration-plugin-developers +compuware-ispw-operations-plugin-developers +compuware-scm-downloader-plugin-developers +compuware-strobe-measurement-plugin-developers +compuware-topaz-for-enterprise-data-plugin-developers +compuware-topaz-for-total-test-plugin-developers +compuware-topaz-utilities-plugin-developers +compuware-xpediter-code-coverage-plugin-developers +compuware-zadviser-api-plugin-developers +concordionpresenter-plugin-developers +concurrent-login-plugin-developers +concurrent-run-blocker-plugin-developers +concurrent-step-plugin-developers +conditional-buildstep-plugin-developers +conditional-upstream-trigger-plugin-developers +config-driven-pipeline-plugin-developers +config-file-provider-plugin-developers +config-rotator-plugin-developers +configuration-as-code-groovy-plugin-developers +configuration-as-code-plugin-developers +configuration-as-code-secret-ssm-plugin-developers +configurationslicing-plugin-developers +configure-job-column-plugin-developers +conflict-aware-ondemand-strategy-plugin-developers +confluence-pipeline-steps-plugin-developers +confluence-publisher-plugin-developers +conjur-credentials-plugin-developers +conjur-simple-integration-plugin-developers +cons3rt-plugin-developers +console-badge-plugin-developers +console-column-plugin-developers +console-log-text-replacer-plugin-developers +console-navigation-plugin-developers +console-tail-plugin-developers +consul-kv-builder-plugin-developers +consul-plugin-developers +container-image-link-plugin-developers +content-replace-plugin-developers +continuum-plugin-developers +contrast-continuous-application-security-plugin-developers +conventional-commits-plugin-developers +convertigo-mobile-platform-plugin-developers +convert-to-declarative-developers +convert-to-pipeline-plugin-developers +coordinator-plugin-developers +copado-plugin-developers +copr-plugin-developers +copyarchiver-plugin-developers +copyartifact-plugin-developers +copy-data-to-workspace-plugin-developers +copy-project-link-plugin-developers +copy-to-slave-plugin-developers +cors-filter-plugin-developers +cors-plugin-developers +cortex-metrics-plugin-developers +couchdb-statistics-plugin-developers +countjobs-viewstabbar-plugin-developers +covcomplplot-plugin-developers +coverage-plugin-developers +coverage-ratcheting-plugin-developers +coverity-plugin-developers +cppcheck-plugin-developers +cppncss-plugin-developers +cpptest-plugin-developers +cppunit-plugin-developers +crap4j-plugin-developers +create-and-run-job-trigger-plugin-developers +create-fingerprint-plugin-developers +createjobadvanced-plugin-developers +credentials-binding-plugin-developers +credentials-plugin-developers +crittercism-dsym-plugin-developers +cron_column-plugin-developers +cronprojectaction-plugin-developers +cron-shelve-plugin-developers +crossbrowsertesting-plugin-developers +crowd2-plugin-developers +crowd-plugin-developers +crowdstrike-security-plugin-developers +crx-content-package-deployer-plugin-developers +cryptomove-plugin-developers +csp-plugin-developers +cucumber-jvm-reports-plugin-developers +cucumber-living-documentation-plugin-developers +cucumber-performance-plugin-developers +cucumber-reports-plugin-developers +cucumber-slack-notifier-plugin-developers +cucumber-testresult-plugin-developers +cucumber-trend-report-plugin-developers +culprit-report-plugin-developers +curseforge-publisher-plugin-developers +custom-build-properties-plugin-developers +custom-checkbox-parameter-plugin-developers +custom-folder-icon-plugin-developers +custom-history-plugin-developers +customizable-header-plugin-developers +customize-build-now-plugin-developers +customized-build-message-plugin-developers +custom-job-icon-plugin-developers +custom-markup-formatter-plugin-developers +customtools-extended-choice-version-plugin-developers +customtools-plugin-developers +custom-view-tabs-plugin-developers +cvs-mail-address-resolver-plugin-developers +cvs-plugin-developers +cvs-tag-plugin-developers +cygpath-plugin-developers +dagshub-branch-source-plugin-developers +daily-quote-plugin-developers +darcs-plugin-developers +dark-theme-developers +dashboard-view-plugin-developers +database-drizzle-plugin-developers +database-h2-plugin-developers +database-mysql-plugin-developers +database-plugin-developers +database-postgresql-plugin-developers +database-sqlite-plugin-developers +database-sqlserver-plugin-developers +datadog-plugin-developers +data-tables-api-plugin-developers +datatheorem-mobile-app-security-plugin-developers +date-parameter-plugin-developers +datetime-constraint-plugin-developers +datical-db-plugin-developers +dbcharts-plugin-developers +dbforge-devops-automation-for-sqlserver-plugin-developers +ddt-plugin-developers +deadmanssnitch-plugin-developers +debian-package-builder-plugin-developers +debian-pbuilder-plugin-developers +declarative-pipeline-when-conditions-plugin-developers +deepcrawl-test-plugin-developers +deepsecurity-smartcheck-plugin-developers +defensics-plugin-developers +delphix-plugin-developers +depbuilder-plugin-developers +dependency-analyzer-plugin-developers +dependency-check-plugin-developers +dependency-queue-plugin-developers +dependency-track-plugin-developers +depgraph-view-plugin-developers +deploy-dashboard-plugin-developers +deployed-on-column-plugin-developers +deployer-framework-plugin-developers +deploygate-plugin-developers +deploy-hub-plugin-developers +deploy-integrationserver-plugin-developers +deployit-plugin-developers +deployment-dashboard-plugin-developers +deployment-notification-plugin-developers +deployment-sphere-plugin-developers +deploy-plugin-developers +deploy-websphere-plugin-developers +describe-with-params-plugin-developers +description-setter-plugin-developers +deveo-plugin-developers +device-watcher-plugin-developers +devops-portal-plugin-developers +diagnostics-plugin-developers +diawi-upload-plugin-developers +digicert-software-trust-code-sign-plugin-developers +digicert-software-trust-gpg-sign-plugin-developers +digitalocean-plugin-developers +dimensions-plugin-developers +dimensionsscm-plugin-developers +dingding-json-pusher-plugin-developers +dingding-notifications-plugin-developers +disable-bitbucket-multibranch-status-plugin-developers +disable-failed-job-plugin-developers +disable-github-multibranch-status-plugin-developers +discard-old-build-plugin-developers +discobit-autoconfig-plugin-developers +discord-notifier-plugin-developers +diskcheck-plugin-developers +disk-usage-plugin-developers +display-console-output-plugin-developers +display-upstream-changes-plugin-developers +display-url-api-plugin-developers +distfork-plugin-developers +distinguishable-gray-balls-plugin-developers +disttest-plugin-developers +dlisting-cov-plugin-developers +docker-build-publish-plugin-developers +docker-build-step-plugin-developers +docker-commons-plugin-developers +docker-compose-build-step-plugin-developers +docker-custom-build-environment-plugin-developers +docker-flow-plugin-developers +dockerhub-notification-plugin-developers +dockerhub-plugin-developers +docker-java-api-plugin-developers +docker-plugin-developers +docker-slaves-plugin-developers +docker-swarm-plugin-developers +docker-traceability-plugin-developers +docker-workflow-plugin-developers +doclinks-plugin-developers +dogu-integration-plugin-developers +doktor-plugin-developers +doony-plugin-developers +dos-trigger-plugin-developers +dotcommonitor-loadview-plugin-developers +dotcoverrunner-plugin-developers +dotnet-as-script-plugin-developers +dotnet-sdk-plugin-developers +downstream-build-cache-plugin-developers +downstream-buildview-plugin-developers +downstream-ext-plugin-developers +doxygen-plugin-developers +drmemory-plugin-developers +drools-plugin-developers +dropdown-viewstabbar-plugin-developers +drupal-developer-plugin-developers +dry-plugin-developers +dry-run-plugin-developers +dtkit-plugin-developers +dumpinfo-buildwrapper-plugin-developers +durable-task-plugin-developers +dynamic-axis-plugin-developers +dynamic-extended-choice-parameter-plugin-developers +dynamicparameter-plugin-developers +dynamic-search-view-plugin-developers +dynaslave-plugin-developers +dynatrace-plugin-developers +eagle-tester-plugin-developers +ease-plugin-developers +easyant-plugin-developers +easyqa-plugin-developers +easytestreport-plugin-developers +ec2-fleet-plugin-developers +ec2-plugin-developers +ec2-spot-plugin-developers +echarts-api-plugin-developers +eclipse-builder-plugin-developers +eclipse-update-site-plugin-developers +ecs-publisher-plugin-developers +ecu-test-execution-plugin-developers +ecutest-plugin-developers +editable-choice-plugin-developers +eggplant-plugin-developers +eggplant-runner-plugin-developers +eiffel-broadcaster-plugin-developers +eks-token-plugin-developers +elastest-plugin-developers +elastic-axis-plugin-developers +elasticbox-plugin-developers +elasticsearch-query-plugin-developers +electricflow-plugin-developers +eloyente-plugin-developers +email-aliases-plugin-developers +email-ext-plugin-developers +email-ext-recipients-column-plugin-developers +email-ext-template-plugin-developers +emailext-template-plugin-developers +embeddable-build-status-plugin-developers +embed-grafana-graph-plugin-developers +emma-plugin-developers +emotional-hudson-plugin-developers +enhanced-credentials-plugin-developers +enhanced-metrics-plugin-developers +envfile-plugin-developers +envinject-api-plugin-developers +envinject-plugin-developers +environment-dashboard-plugin-developers +environment-filter-utils-plugin-developers +environment-manager-tools-plugin-developers +environment-script-plugin-developers +environment-variable-page-decoration-plugin-developers +esaytestreport-plugin-developers +essentials-plugin-developers +event-streamer-plugin-developers +exam-plugin-developers +exclude-matrix-parent-developers +exclusion-plugin-developers +exclusive-execution-plugin-developers +exigen-servers-plugin-developers +experitest-cloud-plugin-developers +export-params-plugin-developers +extended-choice-parameter-plugin-developers +extended-read-permission-plugin-developers +extended-security-settings-plugin-developers +extensible-choice-parameter-plugin-developers +extension-filter-plugin-developers +extensivetesting-plugin-developers +external-logging-api-plugin-developers +external-logging-logstash-plugin-developers +external-monitor-job-plugin-developers +external-resource-dispatcher-plugin-developers +external-workspace-manager-plugin-developers +extra-columns-plugin-developers +extras-hudson-wiki-plugin-developers +extra-tool-installers-plugin-developers +extreme-feedback-plugin-developers +extreme-notification-plugin-developers +ez-templates-plugin-developers +ezwall-plugin-developers +fabric-beta-publisher-plugin-developers +failedjobdeactivator-plugin-developers +fail-the-build-plugin-developers +fast-track-plugin-developers +favorite-plugin-developers +favorite-view-plugin-developers +fedora-module-build-system-plugin-developers +feishu-notification-plugin-developers +figlet-buildstep-plugin-developers +file-changes-build-strategy-plugin-developers +file-leak-detector-plugin-developers +file-operations-plugin-developers +file-parameters-plugin-developers +files-found-trigger-plugin-developers +filesystem-list-parameter-plugin-developers +filesystem_scm-plugin-developers +filtered-dashboard-view-plugin-developers +findbugs-plugin-developers +fireline-plugin-developers +fitnesse-plugin-developers +fit-plugin-developers +flaky-test-handler-plugin-developers +flashlog-plugin-developers +flexdeploy-plugin-developers +flexible-publish-plugin-developers +flexteam-plugin-developers +flock-plugin-developers +flowdock-plugin-developers +fluentd-plugin-developers +flyway-runner-plugin-developers +flyweight-build-step-plugin-developers +fogbugz-plugin-developers +folder-auth-plugin-developers +folder-properties-plugin-developers +font-awesome-api-plugin-developers +foo-plugin-developers +foreman-node-sharing-plugin-developers +forensics-api-plugin-developers +form-element-path-plugin-developers +forticwp-cicd-plugin-developers +fortify360-plugin-developers +fortify-on-demand-uploader-plugin-developers +fortify-plugin-developers +freestyle-multibranch-plugin-developers +frugal-testing-plugin-developers +fstrigger-plugin-developers +ftppublisher-plugin-developers +ftp-rename-plugin-developers +fxcop-runner-plugin-developers +gallio-plugin-developers +gamekins-plugin-developers +gant-plugin-developers +gatekeeper-plugin-developers +gating-core-plugin-developers +gatling-check-plugin-developers +gatling-plugin-developers +gcal-plugin-developers +gcloud-plugin-developers +gcloud-sdk-plugin-developers +gcm-notification-plugin-developers +gcp-secrets-manager-credentials-provider-plugin-developers +gcrawler-plugin-developers +gcr-scanner-plugin-developers +gearman-plugin-developers +gem-publisher-plugin-developers +generic-environment-filters-plugin-developers +generic-event-plugin-developers +generic-tool-plugin-developers +generic-webhook-trigger-plugin-developers +genexus-plugin-developers +gerrit-checks-api-plugin-developers +gerrit-plugin-developers +gerrit-trigger-plugin-developers +gerrit-verify-status-reporter-plugin-developers +ghost-inspector-plugin-developers +ghprb-plugin-developers +girls-plugin-developers +git-automerger-plugin-developers +git-bisect-plugin-developers +gitblit-plugin-developers +gitbucket-plugin-developers +git-changelog-plugin-developers +git-chooser-alternative-plugin-developers +git-client-plugin-developers +gitcolony-plugin-developers +gitea-checks-plugin-developers +gitea-pat-kubernetes-credentials-plugin-developers +gitea-plugin-developers +gitee-plugin-developers +gitflow-plugin-developers +git-forensics-plugin-developers +github-additional-traits-plugin-developers +github-api-plugin-developers +github-app-kubernetes-credentials-plugin-developers +github-autostatus-plugin-developers +github-branch-pr-change-filter-plugin-developers +github-branch-source-plugin-developers +github-checks-plugin-developers +github-coverage-reporter-plugin-developers +github-issues-plugin-developers +github-label-filter-plugin-developers +github-oauth-plugin-developers +github-plugin-developers +github-pr-comment-build-plugin-developers +github-pr-coverage-status-plugin-developers +github-pr-label-filter-plugin-developers +github-pullrequest-plugin-developers +github-scm-trait-notification-context-plugin-developers +github-sqs-plugin-developers +gitlab-api-client-plugin-developers +gitlab-api-plugin-developers +gitlab-auth-plugin-developers +gitlab-automatic-item-creator-plugin-developers +gitlab-branch-source-plugin-developers +gitlab-hook-plugin-developers +gitlab-kubernetes-credentials-plugin-developers +gitlab-logo-plugin-developers +gitlab-merge-request-builder-plugin-developers +gitlab-oauth-plugin-developers +gitlab-plugin-developers +git-notes-plugin-developers +git-notes-publisher-plugin-developers +gitorious-plugin-developers +git-parameter-plugin-developers +git-plugin-developers +git-prebuildmerge-trait-plugin-developers +git-push-plugin-developers +git-server-plugin-developers +git-tag-message-plugin-developers +git-usercontent-plugin-developers +global-build-stats-plugin-developers +global-post-script-plugin-developers +global-pre-script-plugin-developers +global-slack-notifier-plugin-developers +global-variable-string-parameter-plugin-developers +global-yaml-properties-plugin-developers +gnat-plugin-developers +gogs-webhook-plugin-developers +golang-plugin-developers +golo-plugin-developers +google-admin-sdk-plugin-developers +googleanalytics-plugin-developers +google-analytics-usage-reporter-plugin-developers +google-chat-notification-plugin-developers +google-chat-plugin-developers +google-cloud-backup-plugin-developers +google-cloudbuild-plugin-developers +google-cloud-health-check-plugin-developers +googlecode-plugin-developers +google-compute-engine-plugin-developers +google-container-registry-auth-plugin-developers +google-deployment-manager-plugin-developers +google-desktop-gadget-plugin-developers +google-kubernetes-engine-plugin-developers +google-login-plugin-developers +google-metadata-plugin-developers +google-oauth-plugin-developers +google-play-android-publisher-plugin-developers +google-source-plugin-developers +google-storage-plugin-developers +go-performance-publisher-plugin-developers +gprbuild-plugin-developers +gradle-daemon-plugin-developers +gradle-jpi-plugin-developers +gradle-jte-plugin-developers +gradle-plugin-developers +gradle-repo-plugin-developers +grails-plugin-developers +graphiteintegrator-developers +graphite-plugin-developers +graphql-server-plugin-developers +gravatar-plugin-developers +greenballs-plugin-developers +grinder-plugin-developers +groovyaxis-plugin-developers +groovy-choice-parameter-plugin-developers +groovy-events-listener-plugin-developers +groovy-label-assignment-plugin-developers +groovy-plugin-developers +groovy-postbuild-plugin-developers +groovy-remote-control-plugin-developers +growl-plugin-developers +grypescanner-plugin-developers +h2-api-plugin-developers +habitat-plugin-developers +hadoop-plugin-developers +hall-plugin-developers +handy-uri-templates-2-api-plugin-developers +hangouts-chat-plugin-developers +harvest-plugin-developers +hashicorp-vault-pipeline-plugin-developers +hashicorp-vault-plugin-developers +hckrnews-plugin-developers +headspin-plugin-developers +heavy-job-plugin-developers +helix-alm-test-management-plugin-developers +helix-teamhub-plugin-developers +hello-world-groovy-plugin-developers +hello-world-plugin-developers +hello-world-scala-plugin-developers +help-editor-plugin-developers +hetzner-cloud-plugin-developers +hgca-plugin-developers +hidden-parameter-plugin-developers +hipchat-plugin-developers +hockeyapp-plugin-developers +horreum-plugin-developers +housekeeper-plugin-developers +hp-application-automation-tools-plugin-developers +hpe-application-automation-tools-plugin-developers +hpe-network-virtualization-plugin-developers +hp-operations-orchestration-plugin-developers +hp-quality-center-plugin-developers +hsts-filter-plugin-developers +html5-notifier-plugin-developers +html-audio-notifier-plugin-developers +htmlpublisher-plugin-developers +htmlresource-plugin-developers +http-post-plugin-developers +http-request-plugin-developers +huaweicloud-credentials-plugin-developers +huaweicloud-ecs-plugin-developers +huaweicloud-mastermonitor-plugin-developers +hubot-steps-plugin-developers +hudson-clone-workspace-scm-plugin-plugin-developers +hudsontrayapp-plugin-developers +hue-light-plugin-developers +hugo-plugin-developers +humbug-plugin-developers +humio-plugin-developers +hyper-build-step-plugin-developers +hyper-commons-plugin-developers +hyper-slaves-plugin-developers +ibm-asoc-plugin-developers +ibm-cloud-devops-plugin-developers +ibm-continuous-release-plugin-developers +ibm-g11n-pipeline-plugin-developers +ibm-security-appscansource-scanner-plugin-developers +ibm-security-appscanstandard-scanner-plugin-developers +ibm-ucdeploy-build-steps-plugin-developers +ibvc-plugin-developers +icedq-plugin-developers +icescrum-plugin-developers +icn-plugin-loader-plugin-developers +icq-notification-plugin-developers +idea-stapler-plugin-developers +ifttt-build-notifier-plugin-developers +ignore-committer-strategy-plugin-developers +imagecomparison-plugin-developers +image-gallery-plugin-developers +image-tag-parameter-plugin-developers +immuniweb-plugin-developers +impersonation-plugin-developers +implied-labels-plugin-developers +incapptic-connect-uploader-plugin-developers +inedo-proget-plugin-developers +inflectra-spira-integration-plugin-developers +influxdb-plugin-developers +influxdb-query-plugin-developers +infra-test-plugin-developers +inline-pipeline-plugin-developers +inodes-monitor-plugin-developers +insightappsec-plugin-developers +installshield-plugin-developers +instana-plugin-developers +instance-identity-module-developers +instant-messaging-parent-plugin-developers +instant-messaging-plugin-developers +integrity-plugin-developers +intellij-jenkins-control-plugin-developers +internet-meme-plugin-developers +in-toto-plugin-developers +iojs-plugin-developers +ion-deployer-plugin-developers +ionicons-api-plugin-developers +iosbuilder-plugin-developers +ios-device-list-plugin-developers +ios-otabuilder-plugin-developers +iphoneview-plugin-developers +ipmessenger-plugin-developers +ipmsg-plugin-developers +ircbot-plugin-developers +ironmq-notifier-plugin-developers +itemcategories-plugin-developers +item-forwarder-plugin-developers +itest-plugin-developers +itms-junit-report-publisher-plugin-developers +ivy-plugin-developers +ivy-report-plugin-developers +ivytrigger-plugin-developers +jabber-plugin-developers +jabber-server-plugin-developers +jacked-plugin-developers +jackson2-api-plugin-developers +jackson-databind-plugin-developers +jacoco-plugin-developers +jakarta-activation-api-plugin-developers +jakarta-mail-api-plugin-developers +japex-plugin-developers +jarvis-plugin-developers +javadoc-plugin-developers +javancss-plugin-developers +javanet-plugin-developers +javanet-realm-plugin-developers +javanet-trigger-installer-plugin-developers +javanet-uploader-plugin-developers +javatest-report-plugin-developers +javax-activation-api-plugin-developers +javax-mail-api-plugin-developers +jaxb-plugin-developers +jboss-plugin-developers +jbpm-plugin-developers +jbpm-workflow-plugin-developers +jcaptcha-plugin-developers +jclouds-plugin-developers +jdcloud-codedeploy-plugin-developers +jdepend-plugin-developers +jdk_parameter_plugin-plugin-developers +jdk-tool-plugin-developers +jenkins-ace-editor-developers +jenkins-build-with-parameters-plugin-developers +jenkins-clone-workspace-scm-plugin-developers +jenkins-cloudformation-plugin-developers +jenkins-design-language-developers +jenkins-infra-test-plugin-developers +jenkins-lifx-notifier-plugin-developers +jenkinslint-plugin-developers +jenkins-logstash-plugin-developers +jenkinsmobi-plugin-developers +jenkins-rhnpush-plugin-developers +jenkow-plugin-developers +jersey2-api-plugin-developers +jfrog-plugin-developers +jgiven-plugin-developers +jianliao-plugin-developers +jigomerge-plugin-developers +jira-authenticator-plugin-developers +jira-ext-plugin-developers +jira-finder-plugin-developers +jira-integration-plugin-developers +jira-issues-versioning-plugin-developers +jira-issue-updater-plugin-developers +jira-plugin-developers +jira-steps-plugin-developers +jiratestresultreporter-plugin-developers +jira-trigger-plugin-developers +jjwt-api-plugin-developers +jmeter-performance-reporter-plugin-developers +jmeter-performance-runner-plugin-developers +jmh-report-plugin-developers +jms-messaging-plugin-developers +jmx-invoker-plugin-developers +jmx-plugin-developers +jna-posix-api-plugin-developers +jnr-posix-api-plugin-developers +jobcacher-plugin-developers +jobconfighistory-plugin-developers +jobcopy-builder-plugin-developers +jobdelete-builder-plugin-developers +job-dsl-plugin-developers +job-exporter-plugin-developers +job-fan-in-plugin-developers +jobgenerator-plugin-developers +job-import-plugin-developers +jobinjector-plugin-developers +job-log-logger-plugin-developers +job-node-stalker-plugin-developers +job-poll-action-plugin-developers +jobrequeue-plugin-developers +job-restrictions-plugin-developers +jobrevision-plugin-developers +job-run-uuid-plugin-developers +job-strongauth-simple-plugin-developers +jobtag-plugin-developers +jobtype-column-plugin-developers +join-plugin-developers +jprt-plugin-developers +jqs-monitoring-plugin-developers +jquery3-api-plugin-developers +jquery-detached-developers +jquery-plugin-developers +jquery-ui-plugin-developers +jsch-plugin-developers +jsgames-plugin-developers +jshint-checkstyle-plugin-developers +js-libs-developers +jslint-jenkins-plugin-developers +jsoup-plugin-developers +jsunit-plugin-developers +jswidgets-plugin-developers +junit-attachments-plugin-developers +junit-plugin-developers +junit-realtime-test-reporter-plugin-developers +junit-sql-storage-plugin-developers +jwsdp-sqe-plugin-developers +jwt-auth-plugin-developers +jwt-support-plugin-developers +jx-pipelines-plugin-developers +jx-resources-plugin-developers +jython-plugin-developers +jython-postbuild-plugin-developers +kafkalogs-plugin-developers +kagemai-plugin-developers +kanboard-publisher-plugin-developers +karaf-build-step-plugin-developers +karotz-plugin-developers +katalon-plugin-developers +kato-plugin-developers +keeper-secrets-manager-plugin-developers +keep-slave-disconnected-plugin-developers +keep-slave-offline-developers +kerberoes-plugin-developers +kerberos-authenticator-plugin-developers +kerberos-sso-plugin-developers +keyboard-shortcuts-plugin-developers +keycloak-plugin-developers +kiuwan-plugin-developers +klaros-testmanagement-plugin-developers +klocwork-plugin-developers +kmap-plugin-developers +kobiton-integration-plugin-developers +koji-plugin-developers +kotlin-v1-stdlib-jdk8-plugin-developers +kpp-management-plugin-developers +kryptowire-plugin-developers +kubernetes-cd-plugin-developers +kubernetes-client-api-plugin-developers +kubernetes-cli-plugin-developers +kubernetes-credentials-plugin-developers +kubernetes-credentials-provider-plugin-developers +kubernetes-plugin-developers +kubernetes-pipeline-plugin-developers +kubesphere-extension-plugin-developers +kubesphere-token-auth-plugin-developers +kundo-plugin-developers +labeled-test-groups-publisher-plugin-developers +labelled-steps-plugin-developers +label-linked-jobs-plugin-developers +labelparameter-plugin-developers +label-verifier-plugin-developers +lacework-security-scanner-plugin-developers +lambdatest-automation-plugin-developers +lambda-test-runner-plugin-developers +last-changes-plugin-developers +lastfailureversioncolumn-plugin-developers +lastsuccessdescriptioncolumn-plugin-developers +lastsuccessversioncolumn-plugin-developers +lavalamp-plugin-developers +ldapemail-plugin-developers +ldap-plugin-developers +leanix-microservice-intelligence-plugin-developers +leapwork-plugin-developers +leastload-plugin-developers +lechat-plugin-developers +leiningen-plugin-developers +lenient-shutdown-plugin-developers +leo-auth-plugin-developers +levo-plugin-developers +libvirt-slave-plugin-developers +lifx-notifier-plugin-developers +lighthouse-report-plugin-developers +lightstep-incident-response-plugin-developers +linchpin-plugin-developers +line-notify-plugin-developers +linenumbers-plugin-developers +lingr-plugin-developers +link-column-plugin-developers +liquibase-runner-plugin-developers +list-command-plugin-developers +list-git-branches-plugin-developers +literate-plugin-developers +liverebel-deploy-plugin-developers +livescreenshot-plugin-developers +livingdoc-reports-plugin-developers +llvm-cov-plugin-developers +loadcomplete-plugin-developers +loaderio-plugin-developers +loadfocus-jmeter-load-testing-integration-plugin-developers +loadfocus-loadtest-plugin-developers +loadimpact-plugin-developers +loadium-plugin-developers +loadmance-plugin-developers +loadninja-plugin-developers +loadrunner-cloud-plugin-developers +locale-plugin-developers +local-groovy-cli-plugin-developers +localization-plugin-developers +localization-support-plugin-developers +localization-tr-plugin-developers +localization-zh-cn-plugin-developers +lockable-resources-plugin-developers +locked-files-report-plugin-developers +locks-and-latches-plugin-developers +logaction-plugin-developers +logback-nats-appender-plugin-developers +logcenter-plugin-developers +log-cli-plugin-developers +log-command-plugin-developers +logentries-plugin-developers +log-file-filter-plugin-developers +logfilesizechecker-plugin-developers +logging-plugin-developers +login-theme-plugin-developers +log-parser-plugin-developers +log-sanitizer-plugin-developers +logstash-plugin-developers +lotus-connections-plugin-developers +lsf-cloud-plugin-developers +lucene-search-plugin-developers +m2-extra-steps-plugin-developers +m2release-plugin-developers +m2-repo-reaper-plugin-developers +mabl-integration-plugin-developers +machine-learning-plugin-developers +mac-plugin-developers +macstadium-orka-plugin-developers +mail-commander-plugin-developers +mailer-plugin-developers +mailmap-resolver-plugin-developers +mail-reminder-plugin-developers +mail-watcher-plugin-developers +maintenance-jobs-scheduler-plugin-developers +make-jenkins-slow-plugin-developers +managed-scripts-plugin-developers +manage-permission-plugin-developers +mansion-cloud-plugin-developers +mantis-plugin-developers +mapdb-api-plugin-developers +marathon-plugin-developers +markdown-formatter-plugin-developers +mashup-portlets-plugin-developers +mask-passwords-plugin-developers +master-to-master-api-plugin-developers +material-theme-plugin-developers +mathworks-polyspace-plugin-developers +matlab-plugin-developers +matomo-analytics-plugin-developers +matrix-auth-plugin-developers +matrix-checkout-strategies-plugin-developers +matrix-combinations-plugin-developers +matrix-communication-plugin-developers +matrix-groovy-execution-strategy-plugin-developers +matrix-project-plugin-developers +matrix-reloaded-plugin-developers +matrix-sorter-plugin-developers +matrixtieparent-plugin-developers +mattermost-plugin-developers +maven1-snapshot-plugin-plugin-developers +maven3-plugin-developers +maven-artifact-choicelistprovider-plugin-developers +maven-dependency-update-trigger-plugin-developers +maven-deployment-linker-plugin-developers +maven-dump-test-dependencies-plugin-developers +maven-info-plugin-developers +maven-invoker-plugin-developers +maven-metadata-plugin-developers +maven-plugin-developers +maven-repo-cleaner-plugin-developers +maven-repository-plugin-developers +maven-scm-plugin-developers +maven-snapshot-check-plugin-developers +mber-plugin-developers +mcap-eas-plugin-developers +mdt-deployment-plugin-developers +mdtool-plugin-developers +measurement-plots-plugin-developers +meister-plugin-developers +meliora-testlab-plugin-developers +memegen-plugin-developers +memory-map-plugin-developers +mend-cloud-native-security-scanner-plugin-developers +mentor-questa-vrm-plugin-developers +mercurial-plugin-developers +mergebase-sca-plugin-developers +merge-queue-plugin-developers +mesos-plugin-developers +metadata-plugin-developers +metadefender-plugin-developers +meterian-scanner-plugin-developers +metrics-aggregation-plugin-developers +metrics-datadog-plugin-developers +metrics-diskusage-plugin-developers +metrics-ganglia-plugin-developers +metrics-graphite-plugin-developers +metrics-librato-plugin-developers +metrics-plugin-developers +mibsr-m2-plugin-developers +mibsr-plugin-developers +microdocs-integration-plugin-developers +microfocus-da-plugin-developers +micro-focus-performance-center-integration-plugin-developers +microsoft-teams-notifier-plugin-developers +mina-sshd-api-plugin-developers +minio-plugin-developers +miniorange-saml-sp-plugin-developers +minio-storage-plugin-developers +misra-compliance-report-generator-plugin-developers +mission-control-view-developers +mixing-security-realm-plugin-developers +mktmpio-plugin-developers +mobiletesting-plugin-developers +mock-load-builder-plugin-developers +mock-security-realm-plugin-developers +mock-slave-plugin-developers +modernstatus-plugin-developers +mogotest-plugin-developers +mongodb-document-upload-plugin-developers +mongodb-plugin-developers +monitoring-plugin-developers +monitor-pro-plugin-developers +monitor-remote-job-plugin-developers +mozmill-plugin-developers +mq-notifier-plugin-developers +mqtt-notification-plugin-developers +msbuild-plugin-developers +msginject-plugin-developers +mstest-plugin-developers +mstestrunner-plugin-developers +mttr-plugin-developers +multibranch-action-triggers-plugin-developers +multibranch-build-strategy-extension-plugin-developers +multibranch-job-tear-down-plugin-developers +multi-branch-priority-sorter-plugin-developers +multibranch-scan-webhook-trigger-plugin-developers +multiline-tabbar-plugin-plugin-developers +multiple-scms-plugin-developers +multiselect-parameter-plugin-developers +multi-slave-config-plugin-developers +muuri-api-plugin-developers +myappci-plugin-developers +mypeople-plugin-developers +mysql-api-plugin-developers +mysql-auth-plugin-developers +myst-plugin-developers +nabaztag-plugin-developers +naginator-plugin-developers +nant-plugin-developers +ncover-plugin-developers +negotiate-sso-plugin-developers +neoload-plugin-developers +nerrvana-plugin-developers +nested-data-reporting-plugin-developers +nested-view-plugin-developers +netdomain-labeler-plugin-developers +netio-plugin-developers +netsparker-cloud-scan-plugin-developers +network-monitor-plugin-developers +neuro-cucumber-plugin-developers +neuvector-vulnerability-scanner-plugin-developers +newrelic-deployment-notifier-plugin-developers +newrelic-insights-plugin-developers +next-build-number-plugin-developers +next-executions-plugin-developers +nexus-artifact-uploader-plugin-developers +nexus-platform-plugin-developers +nightly-dilbert-plugin-developers +nirmata-plugin-developers +nis-notification-lamp-plugin-developers +no-agent-job-purge-plugin-developers +node-iterator-api-plugin-developers +nodejs-plugin-developers +nodelabelparameter-plugin-developers +nodenamecolumn-plugin-developers +node-offline-notification-plugin-developers +nodepool-agents-plugin-developers +nomad-plugin-developers +non-dynamic-hello-world-plugin-developers +notification-plugin-developers +notify-events-plugin-developers +notify-yo-plugin-developers +nouvola-divecloud-plugin-developers +nowsecure-auto-security-test-plugin-developers +npm-yarn-wrapper-steps-plugin-developers +nsiqcollector-plugin-developers +nsis-plugin-developers +nuclei-plugin-developers +nuget-plugin-developers +nunit-plugin-developers +nutanix-calm-plugin-developers +nvm-wrapper-plugin-developers +oak9-plugin-developers +oauth-credentials-plugin-developers +octoperf-jci-plugin-developers +octopus-client-plugin-developers +octopusdeploy-plugin-developers +oes-template-plugin-developers +office-365-connector-plugin-developers +offlineonfailure-plugin-developers +oic-auth-plugin-developers +oidc-provider-plugin-developers +okhttp-api-plugin-developers +oki-docki-plugin-developers +onealert-trigger-plugin-developers +oneandone-cloudserver-plugin-developers +onepassword-secrets-plugin-developers +one-shot-executor-plugin-developers +onesky-plugin-developers +ontrack-plugin-developers +opencover-plugin-developers +openedge-plugin-developers +openid4java-plugin-developers +openid-plugin-developers +openjdk-native-plugin-developers +openshift-client-plugin-developers +openshift-deployer-plugin-developers +openshift-login-plugin-developers +openshift-pipeline-plugin-developers +openshift-sync-plugin-developers +openshift-token-kubernetes-credentials-plugin-developers +openstack-cloud-plugin-developers +openstack-heat-plugin-developers +openstack-plugin-developers +open-stf-plugin-developers +opentelemetry-agent-metrics-plugin-developers +opentelemetry-plugin-developers +opsgenie-plugin-developers +opslevel-plugin-developers +oracle-cloud-infrastructure-compute-classic-plugin-developers +oracle-cloud-infrastructure-compute-plugin-developers +oracle-cloud-infrastructure-devops-plugin-developers +origo-issue-notifier-plugin-developers +osf-builder-suite-for-sfcc-credentials-plugin-developers +osf-builder-suite-for-sfcc-data-import-plugin-developers +osf-builder-suite-for-sfcc-deploy-plugin-developers +osf-builder-suite-for-sfcc-run-job-plugin-developers +osf-builder-suite-standalone-sonar-linter-plugin-developers +osf-builder-suite-xml-linter-plugin-developers +oslc-cm-plugin-developers +ostorlab-plugin-developers +outbound-webhook-plugin-developers +overops-query-plugin-developers +oversecured-plugin-developers +owl-reporter-plugin-developers +ownership-plugin-developers +p4-plugin-developers +paaslane-plugin-developers +packagecloud-plugin-developers +packageversion-plugin-developers +packer-plugin-developers +pagerduty-plugin-developers +paginated-builds-plugin-developers +pam-auth-plugin-developers +pangolin-testrail-connector-plugin-developers +parallels-desktop-plugin-developers +parallel-test-executor-plugin-developers +parameter-defaults-options-plugin-developers +parameterized-remote-trigger-plugin-developers +parameterized-scheduler-plugin-developers +parameterized-trigger-plugin-developers +parameter-pool-plugin-developers +parameter-separator-plugin-developers +parasoft-findings-plugin-developers +partyparrotstatus-plugin-developers +patch-parameter-plugin-developers +pathignore-plugin-developers +peass-ci-plugin-developers +pendingchanges-plugin-developers +people-redirector-plugin-developers +percentage-du-node-column-plugin-developers +perfci-plugin-developers +perfecto-plugin-developers +perforce-plugin-developers +performance-plugin-developers +performance-signature-dynatrace-plugin-developers +perfpublisher-plugin-developers +periodicbackup-plugin-developers +periodic-jobs-balancer-plugin-developers +permissive-script-security-plugin-developers +persistent-build-queue-plugin-developers +persistent-parameter-plugin-developers +persona-plugin-developers +phabricator-k8s-plugin-developers +phabricator-plugin-developers +phing-plugin-developers +phoenix-autotest-plugin-developers +phonegap-build-plugin-developers +php-builtin-web-server-plugin-developers +php-plugin-developers +piketec-tpt-plugin-developers +pipeline-as-yaml-plugin-developers +pipeline-aws-plugin-developers +pipeline-bamboo-plugin-developers +pipeline-build-step-plugin-developers +pipeline-charts-plugin-developers +pipeline-classpath-step-plugin-developers +pipeline-cloudwatch-logs-plugin-developers +pipeline-config-history-plugin-developers +pipeline-config-plugin-developers +pipeline-cps-http-plugin-developers +pipeline-dependency-walker-plugin-developers +pipeline-deploymon-plugin-developers +pipeline-editor-plugin-developers +pipeline-giphy-api-plugin-developers +pipeline-github-lib-plugin-developers +pipeline-githubnotify-step-plugin-developers +pipeline-github-plugin-developers +pipeline-gitstatuswrapper-plugin-developers +pipeline-global-lib-nexus-plugin-developers +pipeline-graph-analysis-plugin-developers +pipeline-graph-view-plugin-developers +pipeline-groovy-lib-plugin-developers +pipeline-huaweicloud-plugin-developers +pipeline-input-notification-plugin-developers +pipeline-input-step-plugin-developers +pipeline-keepenv-step-plugin-developers +pipeline-keep-running-step-plugin-developers +pipeline-leo-deploy-step-plugin-developers +pipeline-maven-plugin-developers +pipeline-milestone-step-plugin-developers +pipeline-model-definition-plugin-developers +pipeline-multibranch-defaults-plugin-developers +pipeline-npm-plugin-developers +pipeline-plugin-developers +pipeline-project-env-plugin-developers +pipeline-reporter-by-redpen-plugin-developers +pipeline-reporter-plugin-developers +pipeline-restful-api-plugin-developers +pipeline-snippetizer-plugin-developers +pipeline-stage-step-plugin-developers +pipeline-stage-view-plugin-developers +pipeline-timeline-plugin-developers +pipeline-view-plugin-developers +pitmutation-plugin-developers +piwikanalytics-plugin-developers +plain-credentials-plugin-developers +plasticscm-mergebot-plugin-developers +plasticscm-plugin-developers +platformlabeler-plugin-developers +play-plugin-developers +plot-plugin-developers +plugin-usage-plugin-developers +plugin-util-api-plugin-developers +plumber-plugin-developers +pmd-plugin-developers +pnap-bmc-plugin-developers +polarion-plugin-developers +policycenter-gate-validator-plugin-developers +poll-mailbox-trigger-plugin-developers +pollscm-plugin-developers +pom-importer-plugin-developers +popper2-api-plugin-developers +popper-api-plugin-developers +popular-jobs-plugin-developers +port-allocator-plugin-developers +portscanner-plugin-developers +portshift-ci-plugin-developers +postbuildscript-plugin-developers +postbuild-task-plugin-developers +post-completed-build-result-plugin-developers +postgresql-api-plugin-developers +postgresql-fingerprint-storage-plugin-developers +powershell-plugin-developers +practitest-integration-plugin-developers +pre-build-plugin-developers +preflight-integration-plugin-developers +pre-scm-buildstep-plugin-developers +pretested-integration-plugin-developers +priority-sorter-plugin-developers +prisma-cloud-iac-scan-plugin-developers +prism-api-plugin-developers +probely-security-plugin-developers +proc-cleaner-plugin-developers +proc-plugin-developers +progress-bar-column-plugin-developers +project-build-times-plugin-developers +project-stats-plugin-developers +prometheus-plugin-developers +promoted-builds-plugin-developers +promoted-builds-simple-plugin-developers +propelo-job-reporter-plugin-developers +protecode-sc-plugin-developers +provar-automation-plugin-developers +proxmox-plugin-developers +prqa-plugin-developers +pry-plugin-developers +publish-over-cifs-plugin-developers +publish-over-dropbox-plugin-developers +publish-over-ftp-plugin-developers +publish-over-plugin-developers +publish-over-ssh-plugin-developers +publish-to-bitbucket-plugin-developers +pubsub-light-plugin-developers +pucm-plugin-developers +pull-request-monitoring-plugin-developers +puppet-enterprise-pipeline-plugin-developers +puppet-plugin-developers +purecm-plugin-developers +pure-coverage-plugin-developers +pureload-plugin-developers +purge-build-queue-plugin-developers +purge-job-history-plugin-developers +pushbullet-credentials-plugin-developers +pushbullet-plugin-developers +pushover-notifier-plugin-developers +pvcs_scm-plugin-developers +pview-plugin-developers +pwauth-plugin-developers +pxe-plugin-developers +pyenv-pipeline-plugin-developers +pyenv-plugin-developers +python-plugin-developers +qaconsole-test-automation-reporter-plugin-developers +qc-plugin-developers +qftest-plugin-developers +qiniu-plugin-developers +qmakebuilder-plugin-developers +qmetry-for-jira-test-management-plugin-developers +qmetry-test-management-plugin-developers +qrebel-plugin-developers +qtest-plugin-developers +quali-torque-plugin-developers +qualityclouds-plugin-developers +quality-gates-plugin-developers +qualys-api-security-plugin-developers +qualys-cs-plugin-developers +qualys-iac-security-plugin-developers +qualys-pc-plugin-developers +qualys-vm-plugin-developers +qualys-was-plugin-developers +quamotion-cloud-plugin-developers +quayio-trigger-plugin-developers +queue-cleanup-plugin-developers +qy-wechat-notification-plugin-developers +r7insight-log-forwarder-plugin-developers +rabbitmq-build-trigger-plugin-developers +rabbitmq-consumer-plugin-developers +rabbitmq-publisher-plugin-developers +radargun-plugin-developers +radargun-reporting-plugin-developers +rad-builder-plugin-developers +radiatorview-plugin-developers +rake-plugin-developers +rally-plugin-developers +rancher-plugin-developers +random-job-builder-plugin-developers +random-string-parameter-plugin-developers +ranorex-integration-plugin-developers +rapid7-insightvm-container-assessment-plugin-developers +rapiddeploy-plugin-developers +rbenv-plugin-developers +rb-plugin-developers +read-only-configurations-plugin-developers +rebuild-plugin-developers +recipe-plugin-developers +redacted-password-parameters-plugin-developers +redeploy-rancher2-workload-plugin-developers +redgate-sql-ci-plugin-developers +redhat-codeready-dependency-analysis-plugin-developers +redis-fingerprint-storage-plugin-developers +redis-notifier-plugin-developers +redline-plugin-developers +redmine-metrics-report-plugin-developers +redmine-plugin-developers +refit-plugin-developers +regexemail-plugin-developers +regression-report-plugin-developers +release-helper-plugin-developers +release-plugin-developers +reliza-integration-plugin-developers +relution-plugin-developers +relution-publisher-plugin-developers +remote-file-plugin-developers +remote-jobs-view-plugin-developers +remote-queue-plugin-developers +remote-result-trigger-plugin-developers +remote-terminal-access-plugin-developers +remoting-kafka-plugin-developers +remoting-opentelemetry-plugin-developers +repo-plugin-developers +report-diff-plugin-developers +report-generic-chart-column-plugin-developers +report-info-plugin-developers +report-jtreg-plugin-developers +reportportal-plugin-developers +repository-connector-plugin-developers +reqtify-plugin-developers +requests-plugin-developers +require-tool-plugin-developers +resource-disposer-plugin-developers +rest-list-parameter-plugin-developers +restrict-steps-plugin-developers +results-cache-plugin-developers +revbits-pam-plugin-developers +reverse-proxy-auth-plugin-developers +reviewboard-plugin-developers +rhamt-plugin-developers +rhapsodybuilder-plugin-developers +rhnpush-plugin-developers +rich-text-publisher-plugin-developers +rigor-optimization-plugin-developers +robot-plugin-developers +rocket-chat-notifier-plugin-developers +role-strategy-plugin-developers +root-cause-plugin-developers +rotatews-plugin-developers +rpi-build-status-plugin-developers +r-plugin-developers +rpmsign-plugin-developers +rqm-plugin-developers +rrod-plugin-developers +rsandell-test-plugin-developers +rss-retaliation-plugin-developers +rtc-plugin-developers +rubymetrics-plugin-developers +ruby-plugin-developers +ruby-runtime-plugin-developers +ruby-support-plugin-developers +run-condition-plugin-developers +rundeck-plugin-developers +runscope-plugin-developers +rusalad-plugin-developers +rvm-plugin-developers +s3explorer-plugin-developers +s3-plugin-developers +safe-batch-environment-filter-plugin-developers +saferestart-plugin-developers +sahagin-plugin-developers +salesforce-migration-assistant-plugin-developers +saltstack-plugin-developers +sametime-plugin-developers +saml-plugin-developers +sap-hcp-deployer-plugin-developers +sasunit-plugin-developers +sauce-ondemand-plugin-developers +sbt-plugin-developers +sbuild-plugin-developers +scala-junit-name-decoder-plugin-developers +scala-plugin-developers +scaleway-cloud-plugin-developers +schedule-build-plugin-developers +schedule-display-plugin-developers +scheduledtasksview-plugin-developers +schedule-failed-builds-plugin-developers +schmant-plugin-developers +scis-ad-plugin-developers +scm2job-plugin-developers +scm-api-plugin-developers +scm-branch-pr-filter-plugin-developers +scm-filter-aged-refs-plugin-developers +scm-filter-branch-pr-plugin-developers +scm-filter-jervis-plugin-developers +scm-filter-jira-validator-plugin-developers +scm-httpclient-plugin-developers +scmimporter-plugin-developers +scm-manager-plugin-developers +scmskip-plugin-developers +scm-sqs-plugin-developers +scm-sync-configuration-plugin-developers +scm-trait-commit-skip-plugin-developers +scons-plugin-developers +scoring-load-balancer-plugin-developers +scoverage-plugin-developers +scp-plugin-developers +screenrecorder-plugin-developers +screenshot-plugin-developers +scriptcs-plugin-developers +scripted-cloud-plugin-developers +scriptler-plugin-developers +script-realm-extended-plugin-developers +script-realm-plugin-developers +script-scm-plugin-developers +script-security-plugin-developers +scripttrigger-plugin-developers +sctmexecutor-plugin-developers +sdelements-plugin-developers +sealights-plugin-developers +secondary-timestamper-plugin-developers +secret-plugin-developers +sectioned-view-plugin-developers +secure-post-script-plugin-developers +secure-requester-whitelist-plugin-developers +security-inspector-plugin-developers +security-no-captcha-plugin-developers +seed-plugin-developers +select2-api-plugin-developers +selected-tests-executor-plugin-developers +selection-tasks-plugin-developers +selenium-aes-plugin-developers +selenium-axis-plugin-developers +selenium-builder-plugin-developers +selenium-grails-plugin-developers +seleniumhq-plugin-developers +seleniumhtmlreport-developers +selenium-plugin-developers +seleniumrc-plugin-developers +selfie-trigger-plugin-developers +semantic-versioning-plugin-developers +sematext-plugin-developers +send-stacktrace-to-eclipse-plugin-developers +sensedia-api-platform-plugin-developers +sep-plugin-developers +serenitec-plugin-developers +serenity-plugin-developers +service-fabric-plugin-developers +servicenow-cicd-plugin-developers +servicenow-devops-plugin-developers +service-now-plugin-developers +setenv-plugin-developers +sfee-plugin-developers +sge-cloud-plugin-developers +shared-objects-plugin-developers +shared-workspace-plugin-developers +shell-script-scm-plugin-developers +shelve-project-plugin-developers +shelve-project-plugin-plugin-developers +shiningpanda-plugin-developers +shortcut-job-plugin-developers +short-workspace-path-plugin-developers +shutdown-queue-plugin-developers +sicci-for-xcode-plugin-developers +sidebar-link-plugin-developers +sidebar-update-notification-plugin-developers +sideex-plugin-developers +signal-killer-developers +signpath-plugin-developers +silk-performer-plugin-developers +silktestsuite-plugin-developers +simple-build-for-pipeline-plugin-developers +simple-parameterized-builds-report-plugin-developers +simple-pull-request-job-plugin-developers +simple-queue-plugin-developers +simple-theme-plugin-developers +simple-travis-runner-plugin-developers +simpleupdatesite-plugin-developers +simplify-qa-connector-plugin-developers +singleuseslave-plugin-developers +sitecore-package-installer-plugin-developers +sitemonitor-plugin-developers +sitespeed-plugin-developers +skenai-plugin-developers +skip-certificate-check-plugin-developers +skip-cron-rebuild-plugin-developers +skip-notifications-trait-plugin-developers +skype-im-plugin-developers +skype-plugin-developers +skype-status-plugin-developers +skytap-cloud-plugin-developers +slack-plugin-developers +slack-uploader-plugin-developers +sladiator-plugin-developers +slave-prerequisites-plugin-developers +slave-setup-plugin-developers +slave-squatter-plugin-developers +slave-utilization-plugin-developers +sloccount-plugin-developers +slsa-plugin-developers +smalltest-plugin-developers +smartfrog-plugin-developers +smart-jenkins-plugin-developers +smilehubnotifier-plugin-developers +smoothdashboardview-plugin-developers +sms-plugin-developers +snakeyaml-plugin-developers +snowglobe-plugin-developers +snowsoftware-commander-plugin-developers +snsnotify-plugin-developers +snyk-security-plugin-developers +snyk-security-scanner-plugin-developers +soapui-pro-functional-testing-plugin-developers +sofy-ai-plugin-developers +sofy-upload-plugin-developers +solarized-theme-plugin-developers +sonar-gerrit-plugin-developers +sonargraph-integration-plugin-developers +sonargraph-plugin-developers +sonar-plugin-developers +sonar-quality-gates-plugin-developers +sonarqube-generic-coverage-plugin-developers +sonarqube-plugin-developers +sonic-ci-helper-plugin-developers +soos-sca-plugin-developers +sounds-plugin-developers +source-ip-realm-plugin-developers +sourcemonitor-plugin-developers +sparkle-appcast-plugin-developers +speaks-plugin-developers +split-admin-plugin-developers +splunk-devops-plugin-developers +spoon-script-plugin-developers +spoonscript-plugin-developers +spotinst-plugin-developers +springbeandoc-plugin-developers +spring-config-plugin-developers +spring-initalzr-plugin-developers +sqlplus-script-runner-plugin-developers +sqlserver-api-plugin-developers +sqs-notification-plugin-developers +squashtm-publisher-plugin-developers +sra-deploy-plugin-developers +srcclr-installer-plugin-developers +sse-gateway-plugin-developers +ssh2easy-plugin-developers +ssh-agent-plugin-developers +ssh-cli-plugin-developers +ssh-credentials-plugin-developers +sshd-plugin-developers +ssh-plugin-developers +ssh-slaves-plugin-developers +ssh-steps-plugin-developers +stackhammer-plugin-developers +stackify-deployment-recorder-plugin-developers +stackrox-container-image-scanner-plugin-developers +staf-plugin-developers +staging-plugin-developers +starteam-plugin-developers +started-by-envvar-plugin-developers +startup-scm-poll-plugin-developers +startup-trigger-plugin-plugin-developers +stash-branch-parameters-plugin-developers +stashnotifier-plugin-developers +stash-pullrequest-builder-plugin-developers +statistics-gatherer-plugin-developers +statistics-notification-plugin-developers +statusmonitor-plugin-developers +statuspage-gating-plugin-developers +status-view-plugin-developers +stepcounter-plugin-developers +stoplightio-report-plugin-developers +storable-configs-plugin-developers +strawboss-plugin-developers +strict-crumb-issuer-plugin-developers +stride-notification-plugin-developers +structs-plugin-developers +subversion-mail-address-resolver-plugin-developers +subversion-plugin-developers +sumologic-publisher-plugin-developers +support-core-plugin-developers +suppress-stack-trace-plugin-developers +surround-scm-plugin-developers +svncompat13-plugin-developers +svncompat14-plugin-developers +svnimport-plugin-developers +svnmerge-plugin-developers +svn-partial-release-mgr-plugin-developers +svnpublisher-plugin-developers +svn-release-mgr-plugin-developers +svn-revert-plugin-developers +svn-tag-plugin-developers +swamp-plugin-developers +swarm-plugin-developers +sweagle-plugin-developers +symbol-plugin-developers +synergy_scm-plugin-developers +synopsys-coverity-plugin-developers +synopsys-polaris-plugin-developers +synopsys-sigma-plugin-developers +sysdig-secure-plugin-developers +syslog-logger-plugin-developers +system-config-dsl-plugin-developers +systeminfo-plugin-developers +systemloadaverage-monitor-plugin-developers +tag-cloud-plugin-developers +talend-plugin-developers +tanaguru-plugin-developers +tasks-plugin-developers +tattletale-plugin-developers +tcl-plugin-developers +teamconcert-git-plugin-developers +teamconcert-plugin-developers +teamscale-upload-plugin-developers +teams-webhook-trigger-plugin-developers +team-views-plugin-developers +tekton-client-plugin-developers +telegram-notifications-plugin-developers +telerik-appbuilder-plugin-developers +template-project-plugin-developers +template-workflows-plugin-developers +templating-engine-plugin-developers +tenableio-container-security-connector-plugin-developers +tepco-epuw-plugin-developers +tepco-plugin-developers +teresa-build-plugin-developers +terminal-plugin-developers +terraform-plugin-developers +testabilityexplorer-plugin-developers +testcafe-plugin-developers +testcomplete11-xunit-plugin-developers +testcomplete-plugin-developers +testcomplete-xunit-plugin-developers +testdroid-run-in-cloud-plugin-developers +testein-plugin-developers +testfairy-plugin-developers +testflo-test-results-publisher-plugin-developers +testingbot-plugin-developers +testinium-plugin-developers +testinprogress-plugin-developers +testlink-plugin-developers +testng-plugin-plugin-developers +testodyssey-execution-plugin-developers +testopia-plugin-developers +testproject-plugin-developers +testquality-updater-plugin-developers +testrail-plugin-developers +test-results-aggregator-plugin-developers +test-results-analyzer-plugin-developers +testsigma-plugin-developers +test-stability-plugin-developers +teststudioapitesting-plugin-developers +teststudio-plugin-developers +testswarm-plugin-developers +testweaver-plugin-developers +text-file-operations-plugin-developers +text-finder-plugin-developers +text-finder-run-condition-plugin-developers +tfs-plugin-developers +theme-manager-plugin-developers +themis-plugin-developers +thin-backup-plugin-developers +thread-dump-action-plugin-developers +threadfix-plugin-developers +throttle-concurrent-builds-plugin-developers +thucydides-plugin-developers +thundra-foresight-plugin-developers +thycotic-devops-secrets-vault-plugin-developers +thycotic-secret-server-plugin-developers +thycotic-vault-plugin-developers +tibco-builder-plugin-developers +tics-plugin-developers +tikal-multijob-plugin-developers +timemachine-plugin-developers +timestamper-plugin-developers +tinfoil-security-plugin-developers +tm4j-automation-plugin-developers +tmpcleaner-plugin-developers +token-macro-plugin-developers +toolenv-plugin-developers +tortoisesvn-browser-plugin-developers +trac-artifacts-publisher-plugin-developers +tracking-git-plugin-developers +tracking-svn-plugin-developers +trac-plugin-developers +trac-publisher-plugin-developers +transifex-plugin-developers +translation-plugin-developers +travis-yml-plugin-developers +tricentis-ci-plugin-developers +trilead-api-plugin-developers +trunk-io-plugin-developers +tuleap-api-plugin-developers +tuleap-git-branch-source-plugin-developers +tuleap-oauth-plugin-developers +tusarnotifier-plugin-developers +tuxdroid-plugin-developers +twilio-notifier-plugin-developers +twitter-plugin-developers +typetalk-plugin-developers +ucm4svn-plugin-developers +uipath-automation-package-plugin-developers +ui-samples-plugin-developers +ui-test-capture-plugin-developers +uleska-plugin-developers +unicorn-plugin-developers +unik-builder-plugin-developers +unique-id-plugin-developers +unity3d-plugin-developers +unity-asset-server-plugin-developers +unleash-plugin-developers +unreliable-slave-plugin-developers +updatebot-plugin-developers +updraft-publisher-plugin-developers +upload-build-to-sofy-plugin-developers +upload-pgyer-plugin-developers +upmerge-plugin-developers +upstream-downstream-view-plugin-developers +uptime-plugin-developers +urbancode-velocity-plugin-developers +url-auth-sso-plugin-developers +url-change-trigger-plugin-developers +url-filter-plugin-developers +urlscm-plugin-developers +urltrigger-plugin-developers +usemango-runner-plugin-developers +user1st-utester-plugin-developers +user-builds-starter-plugin-developers +utplsql-plugin-developers +uuid-parameter-plugin-developers +uvision-plugin-developers +vaddy-plugin-developers +vagrant-plugin-developers +valgrind-plugin-developers +validating-email-parameter-plugin-developers +validating-string-parameter-plugin-developers +validating-yaml-parameter-plugin-developers +valid-network-plugin-developers +variables-replace-plugin-developers +variant-plugin-developers +vault-scm-plugin-developers +vboxwrapper-plugin-developers +vcvarsall-plugin-developers +vdoo-vision-plugin-developers +vectorcast-coverage-plugin-developers +vectorcast-execution-plugin-developers +venafi-codesigning-plugin-developers +venafi-vcert-plugin-developers +veracode-scanner-plugin-developers +veracode-scan-plugin-developers +versioncolumn-plugin-developers +versionnumber-plugin-developers +vertx-plugin-developers +vessel-plugin-developers +viber-notification-plugin-developers +view26-plugin-developers +view-job-filters-plugin-developers +views-containing-job-plugin-developers +viewvc-plugin-developers +violation-comments-to-github-plugin-developers +violation-comments-to-gitlab-plugin-developers +violation-comments-to-stash-plugin-developers +violations-plugin-developers +virtualbox-plugin-developers +virtualization-plugin-developers +vistara-notifier-plugin-developers +visual-basic-6-plugin-developers +visualexpert-plugin-developers +visualworks-store-plugin-developers +vk-notifier-plugin-developers +vmanager-plugin-developers +vmwarelabmanager-plugin-developers +vmware-plugin-developers +vmware-vrealize-automation-plugin-developers +vmware-vrealize-codestream-plugin-developers +vmware-vrealize-orchestrator-plugin-developers +vncrecorder-plugin-developers +vncviewer-plugin-developers +vrealize-automation-8-plugin-developers +vs-code-metrics-plugin-developers +vsphere-cloud-plugin-developers +vss-plugin-developers +vstart-plugin-developers +vstestrunner-plugin-developers +vsts-cd-plugin-developers +wallarm-fast-plugin-developers +walldisplay-plugin-developers +walti-plugin-developers +waptpro-plugin-developers +warnings-ng-plugin-developers +warnings-plugin-developers +warrior-plugin-developers +was-builder-plugin-developers +wattspeed-plugin-developers +wavefront-plugin-developers +webhook-eventsource-plugin-developers +webhook-step-plugin-developers +webinspect-plugin-developers +webload-plugin-developers +weblogic-deployer-plugin-developers +websocketin-notification-plugin-developers +websocket-plugin-developers +websphere-deployer-plugin-developers +websvn2-plugin-developers +webtestpresenter-plugin-developers +weibo-plugin-developers +wetest-automation-plugin-developers +whitesource-plugin-developers +wildfly-deployer-plugin-developers +windmill-plugin-developers +windocks-start-container-plugin-developers +windows-azure-storage-plugin-developers +windows-cloud-plugin-developers +windows-exe-runner-plugin-developers +windows-slaves-plugin-developers +winrm-client-plugin-developers +wix-plugin-developers +workflow-aggregator-plugin-developers +workflow-api-plugin-developers +workflow-basic-steps-plugin-developers +workflow-cps-global-lib-http-plugin-developers +workflow-cps-global-lib-plugin-developers +workflow-cps-plugin-developers +workflow-durable-task-step-plugin-developers +workflow-job-plugin-developers +workflow-multibranch-plugin-developers +workflow-plugin-developers +workflow-remote-loader-plugin-developers +workflow-scm-step-plugin-developers +workflow-step-api-plugin-developers +workflow-support-plugin-developers +workflow-utility-steps-plugin-developers +working-hours-plugin-developers +workplace-plugin-developers +worksoft-certify-dashboard-plugin-developers +worksoft-certify-process-runner-plugin-developers +worksoft-certify-process-suite-plugin-developers +worktile-plugin-developers +ws7-plugin-developers +wsap-plugin-developers +wsclean-plugin-developers +ws-cleanup-developers +ws-cleanup-plugin-developers +ws-ctm-plugin-developers +ws-execution-manager-plugin-developers +ws-lambda-plugin-developers +wso2id-oauth-plugin-developers +wso2-import-plugin-developers +ws-ws-replacement-plugin-developers +wwpass-plugin-developers +wxwork-notification-plugin-developers +xcode-cloud-for-pipeline-plugin-developers +xcode-plugin-developers +xcp-ci-plugin-developers +x-developer-client-plugin-developers +xfpanel-plugin-developers +xframe-filter-plugin-developers +xframium-plugin-developers +xldeploy-plugin-developers +xlrelease-plugin-developers +xlrelease-var-setter-plugin-developers +xml-job-to-job-dsl-plugin-developers +xooa-plugin-developers +xpath-config-viewer-plugin-developers +xpdev-plugin-developers +xray-connector-plugin-developers +xshell-plugin-developers +xtrigger-lib-developers +xtrigger-plugin-developers +xunit-plugin-developers +xvfb-plugin-developers +xvnc-plugin-developers +yaml-axis-plugin-developers +yaml-project-plugin-developers +yammer-plugin-developers +yandex-metrica-plugin-developers +yet-another-build-visualizer-plugin-developers +youtrack-plugin-developers +zanata-plugin-developers +zapper-plugin-developers +zap-pipeline-plugin-developers +zap-plugin-developers +zaproxy-plugin-developers +zentimestamp-plugin-developers +zephyr-enterprise-test-management-plugin-developers +zephyr-for-jira-test-management-plugin-developers +zerobug-plugin-developers +zfs-plugin-developers +zohosprints-plugin-developers +zoom-plugin-developers +zos-connector-plugin-developers +zos-devops-plugin-developers +zscaler-iac-scan-plugin-developers +zubhium-plugin-developers +zulip-plugin-developers diff --git a/src/test/resources/updatecenter-artifactIds.txt b/src/test/resources/updatecenter-artifactIds.txt new file mode 100644 index 0000000..0bd5381 --- /dev/null +++ b/src/test/resources/updatecenter-artifactIds.txt @@ -0,0 +1,1911 @@ +42crunch-security-audit +abap-ci +absint-a3 +absint-astree +accelerated-build-now-plugin +accelq-ci-connect +accurev +ace-editor +active-directory +acunetix +acunetix-360-scan +adaptive-disconnector +add-changes-to-build-changelog +additional-identities-plugin +additional-metrics +adobe-cloud-manager +adoptopenjdk +advanced-installer-msi-builder +agent-loadbalance +agent-maintenance +agent-server-parameter +aio-tests +alauda-devops-credentials-provider +alauda-devops-pipeline +alauda-devops-sync +alauda-kubernetes-support +alauda-pipeline +alibabacloud-credentials +alibabacloud-ecs +alibabacloud-edas +alibabacloud-pkg-deployment +aliyun-oss-uploader +all-changes +allure-jenkins-plugin +amazon-ecr +amazon-ecs +amqp-build-trigger +analysis-model-api +AnchorChain +anchore-container-scanner +android-apk-size-watcher +android-emulator +android-signing +anka-build +ansible +ansible-tower +ansicolor +ant +antexec +ant-in-workspace +antisamy-markup-formatter +any-buildstep +anything-goes-formatter +apache-httpcomponents-client-4-api +apache-httpcomponents-client-5-api +ApicaLoadtest +apifortress +apimap +appaloosa-plugin +appcenter +app-detector +appdome-build-2secure +appdynamics-dashboard +appetize +applatix +application-director-plugin +applitools-eyes +appray +apprenda +appscan +aqua-microscanner +aqua-security-scanner +aqua-serverless +arachni-scanner +archived-artifact-url-viewer +arestocats +argus-notifier +aribot +artifactdeployer +artifact-diff-plugin +artifact-manager-s3 +artifactory +artifact-promotion +artifact-repository-parameter +artifactz +asakusa-satellite-plugin +ascentialtest-cmd-line +assembla +assembla-auth +assembla-merge-request-builder +assertthat-bdd-jira +associated-files +async-http-client +async-job +atlassian-bitbucket-server-integration +atlassian-jira-software-cloud +attention +audit2db +audit-log +audit-trail +authentication-tokens +authorize-project +autify +autoaction-step +autocancel +autograding +autonomiq +avatar +aws-batch +aws-beanstalk-publisher-plugin +aws-beanstalk-releaser +aws-bucket-credentials +aws-cloudwatch-logs-publisher +aws-codebuild +aws-codecommit-jobs +aws-codecommit-trigger +aws-codepipeline +aws-credentials +aws-device-farm +awseb-deployment-plugin +aws-global-configuration +aws-java-sdk +aws-java-sdk-cloudformation +aws-java-sdk-codebuild +aws-java-sdk-ec2 +aws-java-sdk-ecr +aws-java-sdk-ecs +aws-java-sdk-efs +aws-java-sdk-elasticbeanstalk +aws-java-sdk-iam +aws-java-sdk-kinesis +aws-java-sdk-logs +aws-java-sdk-minimal +aws-java-sdk-secretsmanager +aws-java-sdk-sns +aws-java-sdk-sqs +aws-java-sdk-ssm +aws-kinesis-consumer +aws-lambda +aws-lambda-cloud +aws-parameter-store +aws-sam +aws-secrets-manager-credentials-provider +aws-secrets-manager-secret-source +aws-sqs-trigger +aws-yum-parameter +azure-acs +azure-ad +azure-app-service +azure-artifact-manager +azure-batch-parallel +azure-cli +azure-commons +azure-container-agents +azure-container-registry-tasks +azure-cosmosdb +azure-credentials +azure-credentials-ext +azure-event-grid-notifier +azure-function +azure-keyvault +azure-publishersettings-credentials +azure-sdk +azure-vm-agents +azure-vmss +backlog +backup +backup-interrupt-plugin +badge +basic-branch-build-strategies +bazaar +bds-plugin +beagle-security +beaker-builder +beer +behave-testresults-publisher +benchmark +benchmark-evaluator +bevigil-ci +bigpanda-jenkins +bitbucket +bitbucket-approval-filter +bitbucket-approve +bitbucket-build-status-notifier +bitbucket-filter-project-trait +bitbucket-kubernetes-credentials +bitbucket-oauth +bitbucket-pullrequest-builder +bitbucket-pullrequests-filter +bitbucket-push-and-pull-request +bitbucket-scm-filter-aged-refs +bitbucket-scm-filter-jira-validator +bitbucket-scm-trait-commit-skip +bitkeeper +blackduck-detect +BlameSubversion +BlazeMeterJenkinsPlugin +blink1 +block-build-final-project +block-queued-job +block-same-builds +blueocean +blueocean-autofavorite +blueocean-bitbucket-pipeline +blueocean-commons +blueocean-config +blueocean-core-js +blueocean-dashboard +blueocean-display-url +blueocean-events +blueocean-executor-info +blueocean-github-pipeline +blueocean-git-pipeline +blueocean-i18n +blueocean-jira +blueocean-jwt +blueocean-personalization +blueocean-pipeline-api-impl +blueocean-pipeline-editor +blueocean-pipeline-scm-api +blueocean-rest +blueocean-rest-impl +blueocean-web +bmc-cfa +bmc-change-manager-imstm +bmc-rpd +boot-clj +bootstrap +bootstrap4-api +bootstrap5-api +bootstraped-multi-test-results-report +bouncycastle-api +branch-api +breachlock-dast +browser-axis-plugin +browserstack-integration +btc-embeddedplatform +buckminster +bugzilla +build-alias-setter +build-blocker-plugin +build-cause-run-condition +buildcontext-capture +build-discarder +build-environment +build-env-propagator +build-executors-filter-offline +build-failure-analyzer +buildgraph-view +build-health-cache-updater +build-history-manager +build-history-metrics-plugin +build-keeper-plugin +build-line +build-metrics +build-monitor-plugin +build-name-setter +build-notifications +build-pipeline-plugin +build-requester +buildresult-trigger +buildrotator +build-steps-from-json +build-symlink +build-time-blame +build-timeout +build-timestamp +build-token-root +build-token-trigger +buildtriggerbadge +build-user-vars-plugin +build-view-column +build-with-parameters +built-on-column +bulk-builder +bumblebee +byteguard-build-actions +ca-apm +cachet-gating +caffeine-api +calendar-view +caliper-ci +call-remote-job-plugin +ca-mat-performance-benchmarking-by-broadcom +campfire +carbonetes-serverless-container-scanning-and-policy-compliance +carl +casdoor-auth +ca-service-virtualization +cas-plugin +catalogic-ecx +categorized-view +catlight +cavisson-ns-nd-integration +cccc +cctray-xml +cdevents +cerberus-testing +change-assembly-version-plugin +changelog-history +changes-since-last-success +chaos-butler +chaos-monkey +chartjs-api +chatter-notifier +chatwork +checkmarx +checkmarx-ast-scanner +checks-api +chef-cookbook-pipeline +chef-identity +chef-tracking +chosen +chosen-views-tabbar +chromedriver +chroot +chucknorris +cisco-spark +cisco-spark-notifier +ci-with-toad-edge +claim +clamav +clang-scanbuild +clearcase +clearcase-release +clearcase-ucm-api +clearcase-ucm-baseline +clearcase-ucm-plugin +cli-commander +clif-performance-testing +clone-workspace-scm +cloudbees-bitbucket-branch-source +cloudbees-credentials +cloudbees-devoptics-enabler +cloudbees-disk-usage-simple +cloudbees-enabler +cloudbees-feature-management +cloudbees-folder +cloudbees-jenkins-advisor +cloudcoreo-deploytime +cloudevents +cloudfoundry +cloudguard-shiftleft +cloudhub-deployer +cloudify +cloudshare-docker +cloudshell-sandbox +cloud-stats +cloudtest +clover +cloverphp +cluster-stats +cmakebuilder +cmvc +cobertura +cocoapods-integration +codebeamer-coverage-publisher +codebeamer-result-trend-updater +codebeamer-xunit-importer +codebeamer-xunit-uploader +codebuild-cloud +codebuilder-cloud +codecommit-url-helper +codecover +code-coverage-api +codedeploy +codedx +codefresh +codeql +codescene +codesonar +codethreat-scanner +coding-webhook +collabnet +collabnet-automic-deploy +collabnet-uc4-deploy +collapsing-console-sections +ColumnsPlugin +command-launcher +comments-remover +commons-httpclient3-api +commons-lang3-api +commons-lang-api +commons-text-api +compact-columns +compatibility-action-storage +composer-security-checker +compound-slaves +compress-artifacts +compress-buildlog +compressed_files_viewer +computer-queue-plugin +compuware-common-configuration +compuware-ispw-operations +compuware-scm-downloader +compuware-strobe-measurement +compuware-topaz-for-enterprise-data +compuware-topaz-for-total-test +compuware-topaz-utilities +compuware-xpediter-code-coverage +compuware-zadviser-api +concordionpresenter +concurrent-login-plugin +concurrent-step +conditional-buildstep +config-driven-pipeline +config-file-provider +configuration-as-code +configuration-as-code-groovy +configuration-as-code-secret-ssm +configurationslicing +configure-job-column-plugin +conflict-aware-ondemand-strategy +confluence-publisher +conjur-credentials +conjur-simple-integration +console-badge +console-column-plugin +console-navigation +console-tail +consul +consul-kv-builder +container-image-link +content-replace +continuum +contrast-continuous-application-security +conventional-commits +convertigo-mobile-platform +convert-to-pipeline +coordinator +copado +copr +copyartifact +copy-data-to-workspace-plugin +copy-project-link +cors-filter +cortex-metrics +couchdb-statistics +countjobs-viewstabbar +covcomplplot +coverity +cppcheck +cppncss +crap4j +create-fingerprint +createjobadvanced +credentials +credentials-binding +crittercism-dsym +cron_column +cron-shelve +crossbrowsertesting +crowd +crowd2 +crowdstrike-security +crx-content-package-deployer +csp +cucumber-living-documentation +cucumber-perf +cucumber-reports +cucumber-slack-notifier +cucumber-testresult-plugin +cucumber-trends-report +curseforge-publisher +custom-build-properties +custom-checkbox-parameter +custom-folder-icon +CustomHistory +customizable-header +customize-build-now +customized-build-message +custom-job-icon +custom-markup-formatter +custom-tools-plugin +custom-view-tabs +cvs +cygpath +cygwin-process-killer +dagshub-branch-source +daily-quote +darcs +dark-theme +dashboard-view +database +database-drizzle +database-h2 +database-mysql +database-postgresql +database-sqlite +database-sqlserver +datadog +data-tables-api +datatheorem-mobile-app-security +date-parameter +datetime-constraint +datical-db-plugin +dbCharts +dbforge-devops-automation-for-sqlserver +deadmanssnitch +debian-pbuilder +declarative-pipeline-migration-assistant +declarative-pipeline-migration-assistant-api +deepcrawl-test +deepsecurity-smartcheck +defensics +delete-log-plugin +delivery-pipeline-plugin +delphix +delta-cloud +depbuilder +dependencyanalyzer +dependency-check-jenkins-plugin +dependency-queue-plugin +dependency-track +depgraph-view +deploy +deploy-dashboard +deploydb +deployed-on-column +deployer-framework +deploygate-plugin +deployhub +deploy-integrationserver +deployit-plugin +deployment-notification +deployment-sphere +describe-with-params +description-column-plugin +description-setter +design-library +deveo +device-watcher +devops-portal +diagnostics +diawi-upload +digicert-software-trust-code-sign +digicert-software-trust-gpg-sign +digitalocean-plugin +dimensionsscm +dingding-json-pusher +dingding-notifications +disable-failed-job +disable-github-multibranch-status +discard-old-build +discord-notifier +diskcheck +disk-usage +display-console-output +display-upstream-changes +display-url-api +distfork +distTest +dlisting-cov +docker-build-publish +docker-build-step +docker-commons +docker-compose-build-step +docker-custom-build-environment +dockerhub-notification +docker-java-api +docker-plugin +docker-slaves +docker-swarm +docker-traceability +docker-workflow +doclinks +dogu-integration +doktor +dos-trigger +dotcommonitor-loadview +dotcoverrunner +dotnet-as-script +dotnet-sdk +downstream-build-cache +downstream-buildview +downstream-ext +doxygen +drecycler +drmemory-plugin +dropdown-viewstabbar-plugin +drupal-developer +dry-run +dtkit +dtkit-api +dumpinfo-buildwrapper-plugin +dumpling +durable-task +dynamic-axis +dynamic_extended_choice_parameter +dynamic-search-view +dynatrace-dashboard +eagle-tester +ease-plugin +easyqa +ec2 +ec2-cloud-axis +ec2-deployment-dashboard +ec2-fleet +echarts-api +eclipse-update-site +ecs-publisher +ecutest +ecu-test-execution +editable-choice +eggplant-runner +eiffel-broadcaster +eks-token +elastest +elastic-axis +elasticbox +elasticsearch-query +electricflow +elOyente +email-ext +email-ext-recipients-column +emailext-template +embeddable-build-status +embotics-vcommander +emma +emmacoveragecolumn +emotional-jenkins-plugin +enhanced-credentials +enhanced-metrics +enhanced-old-build-discarder +envfile +envinject +envinject-api +environment-dashboard +environment-filter-utils +environment-labels-setter +environment-manager +environment-script +environment-variable-page-decoration +escaped-markup-plugin +event-announcer +exam +excludeMatrixParent +Exclusion +exclusive-execution +exclusive-label-plugin +experitest-cloud +export-params +extended-choice-parameter +extended-read-permission +extended-security-settings +extensible-choice-parameter +extension-filter +extensivetesting +external-monitor-job +external-workspace-manager +extra-columns +extra-tool-installers +extreme-feedback +extreme-notification +ez-templates +ezwall +failedJobDeactivator +fail-the-build-plugin +fast-track +favorite +favorite-view +feature-branch-notifier +fedora-module-build-system +figlet-buildstep +file-leak-detector +file-operations +file-parameters +files-found-trigger +filesystem-list-parameter-plugin +filesystem_scm +fitnesse +flaky-test-handler +flashlog-plugin +flexdeploy +flexible-publish +flexteam +flock +flow +fluentd +flyway-runner +fogbugz +folder-auth +folder-properties +font-awesome-api +forensics-api +form-element-path +forticwp-cicd +fortify +fortify-on-demand-uploader +frugal-testing +fstrigger +ftppublisher +ftp-rename +fxcop-runner +gallio +gamekins +GatekeeperPlugin +gating-core +gatling +gatling-check +gcal +gcloud-sdk +gcp-secrets-manager-credentials-provider +gcr-scanner +gearman-plugin +gem-publisher +generic-environment-filters +generic-event +generic-tool +generic-webhook-trigger +genexus +gerrit-checks-api +gerrit-code-review +gerrit-trigger +gerrit-verify-status-reporter +ghost-inspector +ghprb +git +git-automerger +git-bisect +gitblit +gitbucket +git-changelog +git-chooser-alternative +git-client +gitcolony-plugin +gitea +gitea-checks +gitea-pat-kubernetes-credentials +gitee +gitflow +git-forensics +github +github-api +github-app-kubernetes-credentials +github-autostatus +github-branch-pr-change-filter +github-branch-source +github-checks +github-coverage-reporter +github-issues +github-label-filter +github-oauth +github-organization-folder +github-pr-comment-build +github-pr-coverage-status +github-pullrequest +github-scm-filter-aged-refs +github-scm-filter-jira-validator +github-scm-trait-commit-skip +github-scm-trait-notification-context +gitlab-api +gitlab-branch-source +gitlab-kubernetes-credentials +gitlab-logo +gitlab-merge-request-jenkins +gitlab-oauth +gitlab-plugin +git-parameter +git-prebuildmerge-trait +git-push +git-server +git-tag-message +git-userContent +global-build-stats +global-post-script +global-pre-script +global-slack-notifier +global-variable-string-parameter +global-yaml-properties +gnat +gogs-webhook +golang +google-admin-sdk +googleanalytics +google-analytics-usage-reporter +google-api-client-plugin +google-chat-notification +google-cloud-backup +google-cloudbuild +google-cloud-health-check +google-compute-engine +google-container-registry-auth +google-deployment-manager +google-git-notes-publisher +google-kubernetes-engine +google-login +google-metadata-plugin +google-oauth-plugin +google-play-android-publisher +google-source-plugin +google-storage-plugin +gprbuild +gradle +gradle-daemon +gradle-repo +graphiteIntegrator +graphql-server +gravatar +greenballs +groovy +groovy-events-listener-plugin +groovy-label-assignment +groovy-postbuild +groovy-remote +growl +grypescanner +h2-api +habitat +hadoop +handlebars +handy-uri-templates-2-api +harvest +hashicorp-vault-pipeline +hashicorp-vault-plugin +hckrnews +heavy-job +helix-alm-test-management +helix-teamhub +hetzner-cloud +hidden-parameter +hipchat +horreum +housekeeper +hp-application-automation-tools-plugin +hp-operations-orchestration-automation-execution-plugin +hp-quality-center +hsts-filter-plugin +html5-notifier-plugin +html-audio-notifier +htmlpublisher +htmlresource +http-post +http_request +huaweicloud-credentials +huaweicloud-ecs +hubot-steps +hudson-pview-plugin +hudson-wsclean-plugin +hue-light +hugo +humbug +humio +hyper-build-step +hyper-commons +hyper-slaves +ibm-application-security +ibm-cloud-devops +ibm-continuous-release +ibm-security-appscansource-scanner +ibm-security-appscanstandard-scanner +icedq +icescrum +icn-plugin-loader +icon-shim +icq-notification +idobata-notifier +ifttt-build-notifier +ignore-committer-strategy +imagecomparison +image-gallery +image-tag-parameter +immuniweb +implied-labels +inedo-buildmaster +inedo-proget +inflectra-spira-integration +influxdb +influxdb-query +inline-pipeline +inodes-monitor +insightappsec +instana +instance-identity +instant-messaging +integrity-plugin +internetmeme +in-toto +ionicons-api +ios-device-connector +ipmessenger-plugin +ircbot +ironmq-notifier +issue-link +itest +itms-for-jira +ivy +ivy-report +ivytrigger +jabber +jabber-server-plugin +jacked +jackson2-api +jackson-databind +jacoco +jakarta-activation-api +jakarta-mail-api +japex +javadoc +javancss +javatest-report +javax-activation-api +javax-mail-api +jaxb +jboss +jbpm-embedded-plugin +jbpm-workflow-plugin +jcaptcha-plugin +jclouds-jenkins +jdcloud-codedeploy +jdepend +JDK_Parameter_Plugin +jdk-tool +jenkinsci-appspider-plugin +jenkins-cloudformation-plugin +jenkins-design-language +jenkins-flowdock-plugin +jenkins-infra-test +jenkins-jira-issue-updater +jenkinslint +jenkins-multijob-plugin +jenkins-reviewbot +jenkins-tag-cloud-plugin +jenkins-testswarm-plugin +jenkinswalldisplay +jersey2-api +jfrog +jgiven +jianliao +jigomerge +jira +jira-ext +jira-integration +jira-steps +JiraTestResultReporter +jira-trigger +jjwt-api +jmh-report +jms-messaging +jna-posix-api +jnr-posix-api +jobcacher +jobConfigHistory +jobcopy-builder +jobdelete-builder +job-dsl +job-exporter +job-fan-in +jobgenerator +job-import-plugin +job-log-logger-plugin +job-node-stalker +job-parameter-summary +job-poll-action-plugin +jobrequeue +job-restrictions +jobrevision +job-strongauth-simple +jobtag +jobtemplates +jobtype-column +join +jprt +jqs-monitoring +jquery +jquery3-api +jquery-detached +jquery-ui +jsch +jslint +jsoup +jsunit +jswidgets +jucies +junit +junit-attachments +junit-realtime-test-reporter +junit-sql-storage +jwt-auth +jwt-support +jython +kafkalogs +kanboard +karaf-build-step +katalon +keeper-secrets-manager +keep-slave-disconnected +keepSlaveOffline +kerberos-sso +keyboard-shortcuts-plugin +keycloak +kiuwanJenkinsPlugin +klaros-testmanagement +klocwork +kobiton-integration +koji +kotlin-v1-stdlib-jdk8 +kpp-management-plugin +kryptowire +kubernetes +kubernetes-cli +kubernetes-client-api +kubernetes-credentials +kubernetes-credentials-provider +kubernetes-pipeline-devops-steps +kubesphere-token-auth +labeled-test-groups-publisher +labelled-steps +label-linked-jobs +label-verifier +labmanager +lacework-security-scanner +lambdatest-automation +lambda-test-runner +last-changes +lastfailureversioncolumn +lastsuccessversioncolumn +ldap +ldapemail +leanix-microservice-intelligence +leapwork +leastload +leiningen-plugin +lenientshutdown +levo +libvirt-slave +lifx-notifier +lighthouse-report +linenumbers +lingr-plugin +link-column +liquibase-runner +list-command +list-git-branches-parameter +livescreenshot +llvm-cov +loadcomplete +loaderio-jenkins-plugin +loadfocus-jmeter-load-testing-integration +loadfocus-loadtest +loadimpact-plugin +loadium +loadmance +loadninja +loadrunner-cloud +locale +localization-support +localization-zh-cn +lockable-resources +locked-files-report +logaction-plugin +logback-nats-appender +log-cli +log-command +logentries +log-file-filter +logfilesizechecker +logging +login-theme +log-parser +logstash +lotus-connections-plugin +lucene-search +m2release +mabl-integration +mac +machine-learning +macstadium-orka +mailcommander +mailer +mailmap-resolver +mail-watcher-plugin +maintenance-jobs-scheduler +managed-scripts +manage-permission +mantis +mapdb-api +marathon +markdown-formatter +mask-passwords +material-theme +mathworks-polyspace +matlab +matomo-analytics +matrix-auth +matrix-combinations-parameter +matrix-communication +matrix-groovy-execution-strategy +matrix-project +matrix-reloaded +Matrix-sorter-plugin +matrixtieparent +mattermost +maven-artifact-choicelistprovider +maven-dependency-update-trigger +maven-deployment-linker +maven-info +maven-invoker-plugin +maven-metadata-plugin +maven-plugin +maven-release-cascade +maven-repo-cleaner +maven-snapshot-check +mdt-deployment +mdtool +meliora-testlab +memegen +memory-map +mend-cloud-native-security-scanner +mentor-questa-vrm +mercurial +mergebase-sca +mesos +metadata +metadefender +metrics +metrics-aggregation +metrics-datadog +metrics-diskusage +metrics-ganglia +metrics-graphite +microdocs-integration +micro-focus-performance-center-integration +mina-sshd-api-common +mina-sshd-api-core +mina-sshd-api-scp +mina-sshd-api-sftp +minio +miniorange-saml-sp +minio-storage +misra-compliance-report-generator +mission-control-view +mixing-security-realm +mktmpio +mock-load-builder +mock-security-realm +mock-slave +modernstatus +momentjs +mongodb +mongodb-document-upload +monitoring +monitor-pro +monitor-remote-job +mq-notifier +mqtt-notification-plugin +msbuild +msginject +mstest +mstestrunner +mttr +multibranch-action-triggers +multibranch-build-strategy-extension +multibranch-job-tear-down +multi-branch-priority-sorter +multi-branch-project-plugin +multibranch-scan-webhook-trigger +multi-module-tests-publisher +multiple-scms +multiselect-parameter +multi-slave-config-plugin +muuri-api +mysql-api +myst-plugin +naginator +nant +NegotiateSSO +neoload-jenkins-plugin +nerrvana-plugin +nested-data-reporting +nested-view +netdomain-labeler +netsparker-cloud-scan +network-monitor +neuro-cucumber +neuvector-vulnerability-scanner +newrelic-deployment-notifier +next-build-number +next-executions +nexus-artifact-uploader +nexus-jenkins-plugin +nexus-task-runner +nirmata +nis-notification-lamp +no-agent-job-purge +node-iterator-api +nodejs +nodelabelparameter +nodenamecolumn +nodepool-agents +node-sharing-executor +node-sharing-orchestrator +nomad +non-dynamic-hello-world +nopmdcheck +nopmdverifytrac +notification +notify-events +nouvola-divecloud +nowsecure-auto-security-test +npm-yarn-wrapper-steps +nsiqcollector +nuclei +nuget +numeraljs +nunit +nutanix-calm +nvm-wrapper +oak9 +oauth-credentials +octoperf +octopusdeploy +oes-template +Office-365-Connector +offlineonfailure-plugin +oic-auth +oidc-provider +okhttp-api +oki-docki +onepassword-secrets +one-shot-executor +onesky +ontrack +opencover +openedge +openid +openid4java +openJDK-native-plugin +openscada-jenkins-exporter +openshift-client +openshift-deployer +openshift-k8s-credentials +openshift-login +openshift-pipeline +openshift-sync +openstack-cloud +open-stf +opentelemetry +opentelemetry-agent-metrics +opsgenie +opslevel +oracle-cloud-infrastructure-compute +oracle-cloud-infrastructure-compute-classic +oracle-cloud-infrastructure-devops +osf-builder-suite-for-sfcc-credentials +osf-builder-suite-for-sfcc-data-import +osf-builder-suite-for-sfcc-deploy +osf-builder-suite-for-sfcc-run-job +osf-builder-suite-standalone-sonar-linter +oslc-cm +ostorlab +outbound-webhook +overops-query +oversecured +ownership +p4 +paaslane-estimate +packagecloud +package-drone +package-parameter +packageversion +packer +pagerduty +paginated-builds +pam-auth +pangolin-testrail-connector +parallels-desktop +parallel-test-executor +Parameterized-Remote-Trigger +parameterized-scheduler +parameterized-trigger +parameter-pool +parameter-separator +parasoft-findings +partyparrotstatus +patch-parameter +peass-ci +pegdown-formatter +pending-changes +people-redirector +percentage-du-node-column +perfecto +performance +performance-signature-dynatrace +performance-signature-dynatracesaas +performance-signature-ui +performance-signature-viewer +perfpublisher +periodicbackup +periodic-reincarnation +permissive-script-security +persistent-build-queue-plugin +persistent-parameter +phabricator-k8s +phabricator-plugin +phing +php-builtin-web-server +piketec-tpt +pipeline-aggregator-view +pipeline-as-yaml +pipeline-aws +pipeline-bamboo +pipeline-build-step +pipeline-cloudwatch-logs +pipeline-config-history +pipeline-cps-http +pipeline-dependency-walker +pipeline-deploymon +pipeline-giphy-api +pipeline-github +pipeline-github-lib +pipeline-githubnotify-step +pipeline-gitstatuswrapper +pipeline-global-lib-nexus +pipeline-graph-analysis +pipeline-graph-view +pipeline-groovy-lib +pipeline-huaweicloud-plugin +pipeline-input-notification +pipeline-input-step +pipeline-keepenv-step +pipeline-keep-running-step +pipeline-maven +pipeline-milestone-step +pipeline-model-api +pipeline-model-declarative-agent +pipeline-model-definition +pipeline-model-extensions +pipeline-multibranch-defaults +pipeline-npm +pipeline-project-env +pipeline-reporter-by-redpen +pipeline-rest-api +pipeline-restful-api +pipeline-stage-step +pipeline-stage-tags-metadata +pipeline-stage-view +pipeline-timeline +pipeline-utility-steps +pitmutation +piwikanalytics +plain-credentials +plasticscm-mergebot +plasticscm-plugin +platformlabeler +plot +plugin-usage-plugin +plugin-util-api +polarion +policycenter-gate-validator +poll-mailbox-trigger-plugin +pollscm +pom2config +popper2-api +popper-api +port-allocator +portscanner +portshift-scanner +postbuildscript +postbuild-task +post-completed-build-result +postgresql-api +powershell +pragprog +preflight-integration +prereq-buildstep +preSCMbuildstep +pretested-integration +PrioritySorter +prisma-cloud-iac-scan +prism-api +probely-security +proc-cleaner-plugin +progress-bar-column-plugin +project-build-times +project-description-setter +project-health-report +project-inheritance +project-stats-plugin +prometheus +promoted-builds +promoted-builds-simple +propelo-job-reporter +protecode-sc +provar-automation +proxmox +prqa-plugin +publish-over +publish-over-cifs +publish-over-dropbox +publish-over-ftp +publish-over-ssh +publish-to-bitbucket +pubsub-light +pull-request-monitoring +puppet +pureload +purge-build-queue-plugin +purge-job-history +pvcs_scm +pwauth +pyenv-pipeline +python +qc +qftest +qiniu +qmetry-for-jira-test-management +qmetry-test-management +qrebel +qtest +quali-torque +qualityclouds +quality-gates +qualys-cs +qualys-iac-security +qualys-pc +qualys-vm +qualys-was +quayio-trigger +queue-cleanup +qy-wechat-notification +r +r7insight-log-forwarder +rabbitmq-build-trigger +rabbitmq-consumer +rabbitmq-publisher +radargun +radargun-reporting +rad-builder +radiatorviewplugin +rake +rallyBuild +rally-plugin +rancher +random-job-builder +random-string-parameter +ranorex-integration +rapid7-insightvm-container-assessment +rapiddeploy-jenkins +rb +read-only-configurations +readonly-parameters +rebuild +recipe +redeploy-rancher2-workload +redgate-sql-ci +redhat-codeready-dependency-analysis +redis-fingerprint-storage +redis-notifier +redmine +redmine-metrics-report +refit +regression-report-plugin +release +release-helper +reliza-integration +relution-publisher +remote-file +remote-result-trigger +remote-terminal-access +remoting-kafka +remoting-opentelemetry +repo +report-diff +report-generic-chart-column +report-info +report-jtreg +reportportal +repository +repository-connector +reqtify +requests +resource-disposer +rest-list-parameter +restricted-register +results-cache +reverse-proxy-auth-plugin +rhnpush-plugin +rich-text-publisher-plugin +rigor-optimization +robot +rocketchatnotifier +role-strategy +rpi-build-status +rpmsign-plugin +rqm-plugin +rrod +rubyMetrics +rubymotion +run-condition +run-condition-extras +rundeck +runscope +run-selector +rusalad-plugin +s3 +s3explorer +safe-batch-environment-filter +saferestart +sahagin +salesforce-migration-assistant-plugin +saltstack +sametime +saml +sasunit-plugin +sauce-ondemand +sbt +SBuild +scalable-amazon-ecs +scala-junit-name-decoder +schedule-build +scm2job +scm-api +scm-filter-branch-pr +scm-filter-jervis +scm-httpclient +scm-manager +scmskip +scm-sqs +scm-sync-configuration +scons +scoring-load-balancer +scoverage +scp +scripted-cloud-plugin +scriptler +script-realm +script-security +sdelements +sealights +search-all-results-plugin +secondary-timestamper-plugin +sectioned-view +secure-post-script +secure-requester-whitelist +security-inspector +seed +select2-api +selected-tests-executor +selection-tasks-plugin +selenium +selenium-aes +selenium-axis +selenium-builder +seleniumhtmlreport +seleniumrc-plugin +semantic-versioning-plugin +sematext +send-stacktrace-to-eclipse-plugin +sensedia-api-platform +serenity +service-fabric +service-now +servicenow-cicd +servicenow-devops +shared-objects +shared-workspace +shelve-project-plugin +shiningpanda +shortcut-job +short-workspace-path +show-build-parameters +shutdown-queue +sicci_for_xcode +sidebar-link +sidebar-update-notification +sideex +signal-killer +silk-performer-plugin +simple-build-for-pipeline +simpleclearcase +simple-parameterized-builds-report +simple-queue +simple-theme-plugin +simpleupdatesite +simplify-qa-connector +sitemonitor +skenai +skip-certificate-check +skip-cron-rebuild +skip-notifications-trait +skype-notifier +skytap +slack +slack-uploader +sladiator-notifier +slave-prerequisites +slave-proxy +slave-setup +slave-squatter +slave-status +slave-utilization-plugin +sloccount +smalltest +smartfrog-plugin +smart-jenkins +smilehubnotifier +sms +snakeyaml-api +snowglobe +snsnotify +snyk-security-scanner +soapui-pro-functional-testing +sofy-ai +solarized-theme +sonar +sonar-gerrit +sonargraph-integration +sonar-quality-gates +sonarqube-generic-coverage +sonic-ci-helper +soos-sca +sounds +sourcemonitor +split-admin +splunk-devops +splunk-devops-extend +spoonscript +spotinst +spring-config +spring-initalzr +sqlplus-script-runner +sqlserver-api +sra-deploy +srcclr-installer +sse-gateway +ssh +ssh2easy +ssh-agent +ssh-credentials +sshd +ssh-slaves +ssh-steps +SSSCM +stackhammer +stackify-deployment-recorder +stackrox-container-image-scanner +started-by-envvar +startup-trigger-plugin +StashBranchParameter +stashNotifier +stash-pullrequest-builder +statistics-gatherer +statusmonitor +statuspage-gating +stepcounter +stoplightio-report +strawboss +strict-crumb-issuer +structs +subversion +suite-test-groups-publisher +summary_report +sumologic-publisher +support-core +suppress-stack-trace +Surround-SCM-plugin +svncompat13 +svncompat14 +svnmerge +svn-partial-release-mgr +svn-revert-plugin +svn-workspace-cleaner +swarm +sweagle +synergy +synopsys-coverity +synopsys-polaris +synopsys-sigma +sysdig-secure +syslog-logger +systemloadaverage-monitor +tag-profiler +talend +tanaguru +tap +tattletale-plugin +teamconcert +teamconcert-git +teamscale-upload +teams-webhook-trigger +tekton-client +telegram-notifications +telerik-appbuilder-plugin +template-project +template-workflows +templating-engine +terminal +terminate-ssh-processes-plugin +terraform +testabilityexplorer +testcafe +TestComplete +testcomplete11-xunit +testcomplete-xunit +testdroid-run-in-cloud +testein +TestFairy +testflo-for-jira-test-management-automation +testingbot +testinium +testInProgress +testlink +testng-plugin +testodyssey-execution +testopia +testquality-updater +test-results-aggregator +test-results-analyzer +testsigma +test-stability +teststudio +teststudioapitesting +teststudiomobiletesting +testweaver +text-file-operations +text-finder +text-finder-run-condition +theme-manager +themis +thinBackup +thread-dump-action-plugin +threadfix +throttle-concurrents +thucydides +thycotic-devops-secrets-vault +thycotic-secret-server +thycotic-vault +tibco-builder +tics +timestamper +tinfoil-scan +tm4j-automation +tmpcleaner +token-macro +toolenv +tool-labels-plugin +trac +tracking-git +tracking-svn +trac-publisher-plugin +transifex +translation +tricentis-ci +trilead-api +trunk-io +tuleap-api +tuleap-git-branch-source +tuleap-oauth +tuxdroid +TwilioNotifier +twitter +typetalk +uipath-automation-package +ui-test-capture +uleska +unicorn +unique-id +unity3d-plugin +unleash +uno-choice +unreliable-slave-plugin +updatebot +update-sites-manager +updraft-publisher +upload-build-to-sofy +upload-pgyer +upstream-downstream-view +uptime +urbancode-velocity +url-auth +url-auth-sso +url-filter +URLSCM +urltrigger +usemango-runner +user1st-utester +utplsql +vaddy-plugin +vagrant +valgrind +validating-email-parameter +validating-string-parameter +validating-yaml-parameter +valid-network +variables-replace-plugin +variant +vault-scm-plugin +vboxwrapper +vdoo-vision +vectorcast-coverage +vectorcast-execution +venafi-codesigning +venafi-vcert +veracode-scan +versioncolumn +versionnumber +vertx +viber-notification +view26 +view-cloner +view-job-filters +views-containing-job +viewVC +violation-columns +violation-comments-to-github +violation-comments-to-gitlab +violation-comments-to-stash +violations +virtualbox +visual-basic-6 +visualexpert +visualworks-store +vk-notifier +vmanager-plugin +vmware-vrealize-automation-plugin +vmware-vrealize-codestream +vmware-vrealize-orchestrator +vncrecorder +vncviewer +vrealize-automation-8 +vs-code-metrics +vsphere-cloud +vss +vstestrunner +vsts-cd +wallarm-fast +waptpro +warnings-ng +warrior +was-builder +wattspeed +wavefront +webhook-eventsource +webhook-step +webload +weblogic-deployer-plugin +websocket +websocketin-notification +websphere-deployer +weibo +wetest-automation +wildfly-deployer +windocks-start-container +windows-azure-storage +windows-cloud +windows-exe-runner +windows-slaves +winrm-client +wix +workflow-aggregator +workflow-api +workflow-basic-steps +workflow-cps +workflow-cps-global-lib +workflow-cps-global-lib-http +workflow-durable-task-step +workflow-job +workflow-multibranch +workflow-remote-loader +workflow-scm-step +workflow-step-api +workflow-support +working-hours +workplace-notifier +worktile +writable-filesystem-monitor +wsap +ws-cleanup +ws-ctm +ws-execution-manager +wso2id-oauth +ws-ws-replacement +wwpass-plugin +wxwork-notification +xcode-plugin +xcp-ci +xfpanel +xframe-filter-plugin +xlrelease-plugin +xlrelease-var-setter +xml-job-to-job-dsl +xooa +xpath-config-viewer +xpdev +xray-connector +xshell +xtrigger-api +xunit +xvfb +xvnc +yaml-axis +yandex-metrica +yet-another-build-visualizer +yet-another-docker-plugin +youtrack-plugin +zanata +zap +zapper +zap-pipeline +zdevops +zentimestamp +zephyr-enterprise-test-management +zephyr-for-jira-test-management +zerobug +zmq-event-publisher +zohosprints +zoom +zos-connector +zscaler-iac-scan +zulip