REST API
Many objects of Jenkins provide the remote access API. They are available
at /jenkins/.../api/
where "..." portion is the object for
which you'd like to access.
- XML API
-
Access data exposed in HTML as XML for machine consumption.
Schema is also available.
You can also specify optional XPath to control the fragment you'd like to obtain (but see below). For example,
../api/xml?xpath=/*/*[0]
.For XPath that matches multiple nodes, you need to also specify the "wrapper" query parameter to specify the name of the root XML element to be create so that the resulting XML becomes well-formed.
Similarly
exclude
query parameter can be used to exclude nodes that match the given XPath from the result. This is useful for trimming down the amount of data you fetch (but again see below). This query parameter can be specified multiple times.XPath filtering is powerful, and you can have it only return a very small data, but note that the server still has to build a full DOM of the raw data, which could cause a large memory spike. To avoid overloading the server, consider using the
tree
parameter, or use thexpath
parameter in conjunction with thetree
parameter. When used together, the result of thetree
parameter filtering is built into DOM, then the XPath is applied to compute the final return value. In this way, you can often substantially reduce the size of DOM built in memory. - JSON API
-
Access the same data as JSON for JavaScript-based access.
tree
may be used. - Python API
Access the same data as Python for Python clients. This can be parsed into Python object as
eval(urllib.urlopen("...").read())
and the resulting object tree is identical to that of JSON. However, when you do this, beware of the security implication. If you are connecting to a non-trusted Jenkins, the server can send you malicious Python programs.In Python 2.6 or later you can safely parse this output using
ast.literal_eval(urllib.urlopen("...").read())
For more information about remote API in Jenkins, see the documentation.
Controlling the amount of data you fetch
The tree
query parameter allows you to explicitly specify and retrieve only
the information you are looking for, by using an XPath-ish path expression.
The value should be a list of property names to include, with sub-properties inside square braces.
Try tree=jobs[name],views[name,jobs[name]]
to see just a list of jobs (only giving the name) and views (giving the name and jobs they contain).
Note: for array-type properties (such as jobs
in this example),
the name must be given in the original plural, not in the singular as the element would appear in XML (<job>
).
This will be more natural for e.g. json?tree=jobs[name] anyway:
the JSON writer does not do plural-to-singular mangling because arrays are represented explicitly.
For array-type properties, a range specifier is supported. For example, tree=jobs[name]{0,10}
would
retrieve the name of the first 10 jobs. The range specifier has the following variants:
- {M,N}: From the M-th element (inclusive) to the N-th element (exclusive).
- {M,}: From the M-th element (inclusive) to the end.
- {,N}: From the first element (inclusive) to the N-th element (exclusive). The same as {0,N}.
- {N}: Just retrieve the N-th element. The same as {N,N+1}.
Another way to retrieve more data is to use the depth=N
query parameter.
This retrieves all the data up to the specified depth.
Compare depth=0 and depth=1 and see what the difference
is for yourself. Also note that data created by a smaller depth value is always a subset of
the data created by a bigger depth value.
Because of the size of the data, the depth
parameter should really be only used to explore
what data Jenkins can return. Once you identify the data you want to retrieve, you can then come up with
the tree
parameter to exactly specify the data you need.
Available Plugins
Each plugin advertised in an update site has its own URL:
- Script Security
- Structs
- SCM API
- Pipeline: Step API
- Mailer
- Credentials
- bouncycastle API
- Display URL API
- SSH Credentials
- Pipeline: API
- Pipeline: SCM Step
- Apache HttpComponents Client 4.x API
- Pipeline: Supporting APIs
- JUnit
- Jackson 2 API
- Plain Credentials
- Git client
- Matrix Project
- Credentials Binding
- Token Macro
- Git
- Folders
- Pipeline: Job
- Durable Task
- Pipeline: Groovy
- Trilead API
- Pipeline: Nodes and Processes
- OWASP Markup Formatter
- Branch API
- Pipeline: Basic Steps
- Pipeline: Stage Step
- Pipeline: Input Step
- Pipeline: Multibranch
- Pipeline: Stage Tags Metadata
- Pipeline: Model API
- Pipeline: Build Step
- Pipeline: Milestone Step
- Pipeline: Declarative Extension Points API
- SnakeYAML API
- Matrix Authorization Strategy
- Pipeline: Declarative
- Pipeline Graph Analysis
- Plugin Utilities API
- JQuery3 API
- Font Awesome API
- ECharts API
- Pipeline
- Caffeine API
- Checks API
- SSH Build Agents
- Resource Disposer
- GitHub API
- JAXB
- Bootstrap 5 API
- Variant
- Timestamper
- Workspace Cleanup
- JavaBeans Activation Framework (JAF) API
- LDAP
- GitHub
- PAM Authentication
- OkHttp
- GitHub Branch Source
- Email Extension
- Ant
- Build Timeout
- Mina SSHD API :: Common
- Jakarta Activation API
- Jakarta Mail API
- Mina SSHD API :: Core
- Gradle
- commons-lang3 v3.x Jenkins API
- Ionicons API
- Java JSON Web Token (JJWT)
- Instance Identity
- JavaMail API
- Pipeline: Groovy Libraries
- commons-text API
- Pipeline: GitHub Groovy Libraries
- Command Agent Launcher
- Oracle Java SE Development Kit Installer
- Pipeline: REST API
- Pipeline: Stage View
- JSch dependency
- SSH server
- Gson API
- JSON Path API
- JSON Api
- Joda Time API
- Authentication Tokens API
- ASM API
- Javadoc
- EDDSA API
- Maven Integration
- Git server
- Docker Commons
- JavaScript GUI Lib: ACE Editor bundle
- Metrics
- JavaScript GUI Lib: Moment.js bundle
- Config File Provider
- Docker Pipeline
- Lockable Resources
- JavaScript GUI Lib: Handlebars bundle
- HTML Publisher
- Pipeline: Deprecated Groovy Libraries
- Popper.js 2 API
- Role-based Authorization Strategy
- Theme Manager
- MapDB API
- Handy Uri Templates 2.x API
- Dark Theme
- Subversion
- External Monitor Job Type
- jQuery
- Favorite
- Pub-Sub "light" Bus
- Popper.js API
- Bitbucket Branch Source
- Common API for Blue Ocean
- REST API for Blue Ocean
- Design Language
- Jersey 2 API
- Parameterized Trigger
- Bootstrap 4 API
- Blue Ocean Core JS
- Web for Blue Ocean
- JWT for Blue Ocean
- Pipeline SCM API for Blue Ocean
- Pipeline Graph View
- DataTables.net API
- REST Implementation for Blue Ocean
- Pipeline implementation for Blue Ocean
- Server Sent Events (SSE) Gateway
- NodeJS
- Run Condition
- JavaScript GUI Lib: jQuery bundles (jQuery and jQuery UI)
- Git Pipeline for Blue Ocean
- Dashboard for Blue Ocean
- SSH Agent
- GitHub Pipeline for Blue Ocean
- Publish Over SSH
- i18n for Blue Ocean
- Display URL for Blue Ocean
- Personalization for Blue Ocean
- Config API for Blue Ocean
- Blue Ocean Pipeline Editor
- Pipeline Utility Steps
- Bitbucket Pipeline for Blue Ocean
- Events API for Blue Ocean
- Localization: Chinese (Simplified)
- Git Parameter
- Conditional BuildStep
- Blue Ocean
- EnvInject API
- Environment Injector
- GitLab
- SonarQube Scanner
- Docker API
- AnsiColor
- Prism API
- Apache HttpComponents Client 5.x API
- Mercurial
- Rebuilder
- Docker
- Copy Artifact
- Pipeline: Declarative Agent API
- Kubernetes Client API
- Kubernetes Credentials
- Slack Notification
- Active Choices
- Autofavorite for Blue Ocean
- Configuration as Code
- Cloud Statistics
- Job DSL
- Jira
- Kubernetes
- AWS Credentials
- Amazon Web Services SDK :: Minimal
- build user vars
- Amazon Web Services SDK :: EC2
- Job Configuration History
- SSH
- Generic Webhook Trigger
- Extended Choice Parameter
- Forensics API
- Build Name and Description Setter
- Active Directory
- Dashboard View
- HTTP Request
- ThinBackup
- Pipeline Maven Integration
- Groovy
- Amazon Web Services SDK :: ECR
- Amazon Web Services SDK :: All
- Commons Compress API
- JIRA Integration for Blue Ocean
- Locale
- jnr-posix API
- Amazon Web Services SDK :: IAM
- Amazon Web Services SDK :: Elastic Beanstalk
- Amazon Web Services SDK :: CloudFormation
- Authorize Project
- Simple Theme
- SSH Pipeline Steps
- Bitbucket
- Amazon Web Services SDK :: ECS
- Amazon Web Services SDK :: SQS
- GitLab API
- Amazon Web Services SDK :: SNS
- Analysis Model API
- Amazon Web Services SDK :: SSM
- Amazon Web Services SDK :: CodeBuild
- Amazon Web Services SDK :: Logs
- Warnings
- Artifactory
- Email Extension Template
- Extended Read Permission
- Mask Passwords
- Amazon Web Services SDK :: EFS
- Throttle Concurrent Builds
- Code Coverage
- JaCoCo
- Badge
- Ansible
- Build Pipeline
- PowerShell
- Monitoring
- Commons HttpClient 3.x API
- Office 365 Connector / Power Automate workflows
- Parameterized Scheduler
- MSBuild
- built-on-column
- H2 API
- Node and Label parameter
- Multiple SCMs
- Icon Shim
- SAML
- Pipeline Maven Plugin API
- Cobertura
- Groovy Postbuild
- Prometheus metrics
- Post build task
- CVS
- Amazon Web Services SDK :: kinesis
- Amazon Web Services SDK :: Secrets Manager
- Ivy
- Job Import
- Extensible Choice Parameter
- Allure
- Node Iterator API
- Coverage
- Build Timestamp
- Parameterized Remote Trigger
- Multijob
- Pipeline: AWS Steps
- xUnit
- GitLab Authentication
- Build Monitor View
- OAuth Credentials
- Embeddable Build Status
- Green Balls
- docker-build-step
- Amazon Web Services SDK :: Elastic Load Balancing V2
- Amazon Web Services SDK :: Lambda
- Amazon Web Services SDK :: Organizations
- Amazon Web Services SDK :: CloudFront
- Amazon Web Services SDK :: CodeDeploy
- Amazon Web Services SDK :: Api Gateway
- DTKit 2 API
- Build With Parameters
- GitHub Integration
- GitHub Authentication
- Translation Assistance
- Build Blocker
- Basic Branch Build Strategies
- View Job Filters
- GitLab Branch Source
- Google OAuth Credentials
- PostBuildScript
- Performance
- Deploy to container
- CloudBees Disk Usage Simple
- Naginator
- Python
- Amazon Web Services SDK :: Autoscaling
- Amazon EC2
- Kubernetes CLI
- Log Parser
- Safe Restart
- Build Authorization Token Root
- Cucumber reports
- Pipeline: GitHub
- Description Setter
- jQuery UI
- OWASP Dependency-Check
- Azure SDK API
- Audit Trail
- HashiCorp Vault
- promoted builds
- Pipeline: Multibranch with defaults
- Maven Release Plug-in
- disk-usage
- File Operations
- Hidden Parameter
- Next Build Number
- CloudBees Docker Build and Publish
- GitHub Pull Request Builder
- Amazon ECR
- Robot Framework
- Plugin Usage
- S3 publisher
- Nexus Artifact Uploader
- Bitbucket Server Integration
- Validating String Parameter
- GitHub Organization Folder
- Configuration Slicing
- Nested View
- Test Results Analyzer
- Parameter Separator
- Text Finder
- TestNG Results
- Bitbucket Server Notifier
- Git Changelog
- Delivery Pipeline
- Strict Crumb Issuer
- Publish Over FTP
- Permissive Script Security
- Extra Columns
- Swarm
- File Parameter
- Kubernetes Credentials Provider
- Gerrit Trigger
- Pipeline NPM Integration
- Scriptler
- Discard Old Build
- Sidebar Link
- Gitlab Merge Request Builder
- Build Failure Analyzer
- DingTalk
- P4
- skip-certificate-check
- Flexible Publish
- Schedule Build
- SSH2 Easy
- Azure Credentials
- Flatpickr API
- Startup Trigger
- global-build-stats
- Job Restrictions
- Plot
- OpenId Connect Authentication
- Version Number
- Sonar Quality Gates
- Global Slack Notifier
- Docker Compose Build Step
- Pre SCM BuildStep
- JIRA Pipeline Steps
- Pipeline GitHub Notify Step
- Microsoft Entra ID (previously Azure AD)
- Multibranch Scan Webhook Trigger
- Go
- Backup
- Xvfb
- Build Environment
- Login Theme
- JDK Parameter
- GitLab Logo
- Bitbucket Push and Pull Request
- Date Parameter
- Configuration as Code Plugin - Groovy Scripting Extension
- Docker Slaves
- Google Login
- Terraform
- Azure Commons
- MSTest
- Pyenv Pipeline
- NUnit
- Bitbucket Build Status Notifier
- Folder Properties
- JUnit Attachments
- Priority Sorter
- categorized-view
- Purge Job History
- Database
- List Git Branches Parameter
- Periodic Backup
- Claim
- Checkmarx
- OWASP Dependency-Track
- Xcode integration
- Dynamic Extended Choice Parameter
- Persistent Parameter
- Custom Tools
- Support Core
- Amazon Elastic Container Service (ECS) / Fargate
- Pipeline Aggregator View
- Gitea
- Eclipse Temurin installer
- Join
- Managed Scripts
- ShiningPanda
- Mail Watcher
- Atlassian Jira Software Cloud
- Purge Build Queue
- Notification
- Maven Info
- Versions Node Monitors
- Maven Artifact ChoiceListProvider (Nexus)
- Async Http Client
- Build Trigger Badge
- Bitbucket Pullrequest Builder
- Kubernetes :: Pipeline :: DevOps Steps
- Artifact Deployer
- Logstash
- Git Push
- AWS Global Configuration
- Publish Over CIFS
- Sectioned View
- Material Theme
- Folder-based Authorization Strategy
- AWS Secrets Manager Credentials Provider
- Pipeline: Shared Groovy Libraries through HTTP retrieval
- Webhook Step
- Distributed Workspace Clean
- SCP publisher
- Next Executions
- Convert To Pipeline
- Gitee
- JIRA Trigger
- GitHub Checks
- JFrog
- InfluxDB
- REPO
- Show Build Parameters
- Repository Connector
- Datadog
- Splunk
- Customizable Header
- XTrigger API
- Email Ext Recipients Column
- nvm-wrapper
- Gatling
- Bitbucket OAuth
- Ansible Tower
- DEPRECATED Blue Ocean Executor Info
- Hashicorp Vault Pipeline
- Dependency Graph Viewer
- Quality Gates
- Cppcheck
- Remote Jenkinsfile Provider
- Qy Wechat Notification
- Environment Script
- CORS support
- Maven Invoker
- Clover
- Pipeline: Multibranch build strategy extension
- Zentimestamp
- Last Changes
- openJDK-native-plugin
- Sonargraph Integration
- Black Duck Detect
- Pipeline timeline
- Solarized Theme
- MSTestRunner
- CloudBees Docker Custom Build Environment
- XML Job to Job DSL
- Agent Setup
- Port Allocator
- Downstream build view
- URLTrigger
- NPM and Yarn Wrapper and Steps
- Release
- Build Token Trigger
- Job and Stage monitoring
- CloudBees Credentials
- Violations
- Snyk Security
- .NET SDK Support
- SAML Single Sign On(SSO)
- Cucumber json test reporting
- Rich Text Publisher
- EC2 Fleet
- Reverse Proxy Auth
- Shelve Project
- Multi-Branch Project Plugin (DEPRECATED)
- Least Load
- Mattermost Notification
- Global Variable String Parameter
- Pipeline Remote Loader
- Filesystem Trigger
- ChuckNorris
- Google Metadata
- Maven Metadata Plugin for Jenkins CI server
- Artifact Manager on S3
- Build Discarder
- CMake
- Nuget
- Selenium HTML report
- Matrix Combinations
- Git Tag Message
- Maven Dependency Update Trigger
- Project Description Setter
- Text File Operations
- Git Forensics
- Jira Issue Updater
- chromedriver
- GitHub PR Comment Build
- LDAP Email
- OpenShift Client
- Cron Column
- AWS CodeDeploy
- Calendar View
- Environment File
- Console Column
- build-metrics
- Keychains and Provisioning Profiles Management
- OpenTelemetry API
- vSphere
- Project statistics
- sbt
- OpenTelemetry
- Agent Status
- Unity3d
- Compact Columns
- Google Play Android Publisher
- Run Condition Extras
- Violation Comments to GitLab
- Google Chat Notification
- MySQL Database
- Clone Workspace SCM
- Maven Repository Scheduled Cleanup
- Fail The Build
- JUnit Realtime Test Reporter
- Template Project
- Xray - Test Management for Jira
- Android Emulator
- Declarative Pipeline Migration Assistant API
- BuildResultTrigger
- EZ Templates
- Filesystem List Parameter
- Text Finder Run Condition
- Splunk Plugin Extension
- AWS Lambda
- Fortify
- secondary timestamper
- Downstream Build Cache
- Google Cloud Storage
- Byte Buddy API
- SVN 1.4 Compatibility
- SCM Sync Configuration
- VSTest Runner
- Build Notifications
- Discord Notifier
- Any Build Step
- Pipeline Configuration History
- instant-messaging
- Build History Metrics
- Maven Repository Server
- Keycloak Authentication
- Downstream-Ext
- Poll SCM
- SLOCCount
- Image Tag Parameter
- SQLPlus Script Runner
- CodeSonar
- NAnt
- Summary Display
- ClearCase
- GitHub Pull Request Coverage Status
- Groovy Label Assignment
- Modern Status
- BrowserStack
- Yet Another Build Visualizer
- Sonar Gerrit
- Templating Engine
- artifact-promotion
- Pipeline: Groovy HTTP
- CloudBees Docker Hub/Registry Notification
- Scoring Load Balancer
- Amazon S3 Bucket Credentials
- AWS CodeBuild
- Job and Node ownership
- SonarQube Generic Coverage
- Synopsys Coverity
- Dependency Analyzer
- Test Results Aggregator
- Azure Storage
- UpdateSites Manager
- Azure Key Vault
- packer
- Azure CLI
- Readonly Parameter
- All changes
- Google Compute Engine
- Compress Artifacts
- Multiselect parameter
- Azure VM Agents
- Slack Upload
- GitHub Commit Skip SCM Behaviour
- GitLab Credentials - Kubernetes Integration
- Veracode Scan
- Build Keeper
- Subversion Workspace Cleaner
- Job Generator
- Changes since last successful build
- buildgraph-view
- OpenText Application Automation Tools
- Custom Folder Icon
- GitHub Custom Notification Context SCM Behaviour
- Gogs
- People View
- Declarative Pipeline Migration Assistant
- AWS CodePipeline
- PostgreSQL Database
- Copy project link
- JiraTestResultReporter
- File System SCM
- TAP
- External Workspace Manager
- Label Linked Jobs
- Tool Environment
- Gerrit Code Review
- FTP publisher
- Doxygen
- AWS Parameter Store Build Wrapper
- MySQL API
- Gradle Repo
- Multibranch Pipeline Inline Definition
- Selenium
- Xvnc
- Shared Workspace
- Job/Queue/Agents Monitoring
- SCM Skip
- jira-ext
- Maven Deployment Linker
- Bitbucket Commit Skip SCM Behaviour
- GitBucket
- build log file size checker
- Gravatar
- Job Cacher
- Project Build Times
- AWS Secrets Manager SecretSource
- qTest
- PostgreSQL API
- Jobcopy Builder
- Yet Another Docker
- Cucumber Trend Reports
- Configuration as Code AWS SSM secrets
- Progress Bar Column
- Skip Notifications Trait
- Poll Mailbox Trigger
- Content Replace
- Maven SNAPSHOT Check
- Performance Publisher
- anything-goes-formatter
- MultiBranch Action Triggers
- Sauce OnDemand
- Dynamic Axis
- HipChat
- SCM Filter Branch PR
- Google Container Registry Auth
- Flaky Test Handler
- Global Post Script
- Official OWASP ZAP
- Build Cause Run Condition
- TestComplete support
- Change Log History
- Anchore Container Image Scanner
- change-assembly-version-plugin
- Google Kubernetes Engine
- AWSEB Deployment
- OpenShift Sync
- Rake
- Windows Exe Runner
- Copy data to workspace
- Test stability history
- HTTP POST
- GitHub Issues
- Emma
- Parallel Test Executor
- Cloud Foundry
- Stash Pullrequest Builder
- Custom Checkbox Parameter
- RocketChat Notifier
- Build Time Blame
- Ignore Committer Strategy
- Telegram Bot
- JDepend
- Unleash Maven
- Build History Manager
- PagerDuty
- cucumber-perf
- Clover PHP
- Disable GitHub Multibranch Status
- Compress Build Log
- Display Console Output
- XFrame Filter
- OpenID4Java API
- Simple Parameterized Builds Report
- Dingding JSON Pusher
- Markdown Formatter
- Report Info
- Pipeline: Shared Groovy Libraries through Nexus retrieval
- Promoted Builds (Simple)
- Docker Swarm
- OpenShift Login
- Violation Comments to Bitbucket Server
- CloudBees Docker Traceability
- Redmine
- Status Monitor
- Heavy Job
- Node Name Column
- Amazon EC2 Container Service plugin with autoscaling capabilities
- Android Signing
- App Center
- Simple Build DSL for Pipeline
- Fingerprint
- Bitbucket Approve
- Multi slave config
- Nexus Task Runner
- Bitbucket Filter Project Trait
- Bulk Builder
- SiteMonitor
- Matrix Groovy Execution Strategy
- Block Queued Job
- Upload to pgyer
- Test In Progress
- Exclusion
- PegDown Formatter
- Exclusive Execution
- Terminate ssh processes
- Elastic Axis
- Radiator View
- Export Prameters
- cross-platform shell
- Editable Choice
- Groovy Remote Control
- OpenStack Cloud
- Wall Display Master Project
- CAS
- Subversion Revert
- Fortify on Demand
- Flyway Runner
- Pipeline Dependency Walker
- batch task
- Audit Log
- bootstraped-multi-test-results-report
- Rundeck
- Shared Objects
- Violation Comments to GitHub
- DocLinks
- Pipeline Maven Plugin Database
- Team Concert
- Build Symlink
- Ant In Workspace
- WinRM Client
- cucumber-slack-notifier
- Matrix Reloaded
- Random String Parameter
- Percentage Disk Space Node Column
- Metrics Disk Usage
- Run Selector
- Slave Monitor for system load average
- Klocwork Analysis
- AntExec
- Mission Control
- OWASP ZAP
- GCloud SDK
- HTML5 Notifier
- Valgrind
- Job Parameter Summary
- GCP Secrets Manager Credentials Provider
- Katalon
- Environment Dashboard
- emotional-jenkins-plugin
- Files Found Trigger
- Gitea Checks
- Personal View
- Scoverage
- Aliyun OSS Uploader
- Custom Job Icon
- Conjur Secrets
- Notify.Events
- Enhanced Old Build Discarder
- Custom View Tabs
- RabbitMQ Consumer
- Build View Column
- Collapsing Console Sections
- Deploy WebLogic
- Mina SSHD API :: SCP
- export dynamic job data
- Favorite View
- Octopus Deploy
- Azure App Service
- Additional Metrics
- Uptime
- New Relic Deployment Notifier
- Gerrit Verify Status Reporter
- RubyMetrics
- Project Inheritance
- Google Authenticated Source
- Read-only configurations
- AnchorChain
- Mina SSHD API :: SFTP
- Publish to Bitbucket
- XebiaLabs XL Deploy
- CloudBees File Leak Detector
- Image Gallery
- Select2 Api
- Configure Job Column
- OpenShift Pipeline
- Aqua Security Scanner
- Extra Tool Installers
- Zephyr Scale
- OpenID
- Cygpath
- Statistics Gatherer
- Drop Down ViewsTabBar
- AWS Code Commit Jobs
- Job Poll Action
- Oracle Cloud Infrastructure Compute
- Disable Job Button
- Kerberos SSO
- OpenID Connect Provider
- svnmerge
- GitHub Branch Source Pull Request Change Filter
- Pipeline: Deploymon.io Steps
- Display Upstream Changes
- Slave Utilization
- Maven Cascade Release
- ZAP Pipeline
- Flyway API
- Log File Filter
- Cucumber Living Documentation
- FitNesse
- Phing
- Pipeline As YAML (Incubated)
- Checkmarx AST Scanner
- Lucene-Search
- Health Advisor by CloudBees
- Secure Requester Whitelist
- ReadyAPI Functional Testing
- Call Remote Job
- Simple Queue
- aws-device-farm
- Mesos Cloud
- Bitbucket Pull Requests filter
- IvyTrigger
- Bitbucket Aged References SCM Filter
- Customize Build Now Label
- /userContent in Git
- Redeploy Rancher2.x Workload
- JClouds
- build-env-propagator
- Outbound WebHook for build events
- Labelled Pipeline Steps
- CloudFormation
- Description Column
- Tracking SVN
- AWS CodeCommit URL Helper
- Azure Container Agents
- Parasoft Findings
- Gradle Daemon saver
- Selenium Builder
- Create Job Advanced
- JenkinsLint
- Sumologic Publisher
- TestComplete xUnit
- Amazon SNS Build Notifier
- Jabber (XMPP) notifier and control
- Custom Build Properties
- patch-parameter
- Visual Studio Code Metrics
- HTMLResource
- Dev Tools Symbols API
- SCM to job
- TestLink
- Customized Build Message
- HSTS Filter
- Template Workflows
- URL SCM
- Bitbucket Jira Validator SCM Filter
- Unique ID Library
- Dynamic Search View
- diskcheck
- Extreme Notification
- Phabricator Differential
- Liquibase Runner
- Bitbucket Approval Filter
- Alternative build chooser
- Logging
- Backup and interrupt job
- SaltStack
- WebSphere Deployer
- Prerequisite build step
- Job Log Logger
- Jira Integration
- Azure Credentials Ext
- Gatling Check
- Console Badge
- Kotlin 1.x Standard Library Plugin for JDK 8
- Tracking Git
- java.io.tmpdir cleaner
- Global Pre Script
- JGiven
- MFA/Two-Factor-Authentication(2FA)
- Terminal
- Pipeline restFul API
- Subversion Partial Release Manager
- Minio
- Console Tail
- Release Helper
- FxCop Runner
- Github label filter
- Job Node Stalker
- Started-By Environment Variable
- AWS CodeCommit Trigger
- Windows cloud
- Concurrent Step
- MATLAB
- Disable Failed Job
- AWS Elastic Beanstalk Publisher
- Bitbucket Credentials - Kubernetes Integration
- Gerrit Checks API
- ConjurSimpleIntegration
- Mac
- Stash Branch Parameter
- Coverity
- Tests Selector
- CocoaPods Jenkins Integration
- Coverage/Complexity Scatter Plot
- Deployment Dashboard
- Remote Terminal Access
- countjobs-viewstabbar
- Pretested Integration
- CCtray XML (cc.xml)
- OpsGenie
- Build Steps from Json
- Consul KV Builder
- UiPath
- VS Team Services Continuous Deployment
- Archived Artifact Url Viewer
- Matrix sorter
- multi-module-tests-publisher
- VncViewer
- Workspace Whitespace Replacement
- Pipeline Input Step Notification
- Serenity
- Variables Replace
- Distributed Fork
- SeleniumRC
- Groovy Events Listener
- Clang Scan-Build
- Extended Security Settings
- JobFanIn
- Dry Run
- Matrix Tie Parent
- Syslog logger
- HCL AppScan
- view-cloner
- Azure Container Registry Tasks
- accelerated-build-now-plugin
- Memory Map
- Queue cleanup
- DotNet as Script
- GitHub Aged References SCM Filter
- Netsparker Enterprise Scan
- REST List Parameter
- Azure Artifact Manager
- Deployed On Column
- JavaNCSS
- Job Revision
- WildFly Deployer
- ViewVC
- post-completed-build-result
- Seed Jenkins
- CppNCSS
- deployment-notification
- SVN 1.3 Compatibility
- WXWork Notification
- Service Now
- Line Numbers
- FLOW
- StepCounter
- Git PreBuildMerge Trait
- Metrics DataDog
- Regression Report
- MQ Notifier
- Websocket Notifier
- Lighthouse Report
- Sounds
- Crap4J
- Gearman
- Qualys Web App Scanning Connector
- Job Type Column
- Mock Agent
- Blame Subversion
- Box UK - JSLint
- Lenient shutdown
- Project Health Report
- Ranorex Test Execution
- PIT Mutation
- Semantic Versioning
- PWauth Security Realm
- Short Workspace Path
- URL Auth
- Hubot Pipeline Steps
- PlasticSCM
- AWS SAM
- GitHub Jira Validator SCM Filter
- Github App Kubernetes Credentials
- GitHub Status Wrapper
- JavaScript GUI Lib: Twitter Bootstrap bundle
- Backlog
- Flowdock
- Last Success Version Column
- Message Injector
- Azure Function
- Jython
- Selenium Capability Axis
- Orka by MacStadium
- DOS Trigger
- Gitflow
- Google Cloud Build
- AppDynamics Dashboard
- Azure Container Service
- Cisco Spark Notifier
- MSTeams Webhook Trigger
- Nomad
- Slave Monitor for network connectivity
- eXtreme Feedback Panel
- lambdatest-automation
- AWS Lambda Cloud
- SCM-Manager
- Windows Negotiate SSO
- VectorCAST Coverage
- Describe With Params
- Harbor
- Build Alias Setter
- CLI Commander
- Deployer Framework
- 42Crunch REST API Static Security Testing
- DigitalOcean
- Mail Commander Plugin for Jenkins-ci
- Metrics Graphite Reporting
- ChatWork
- Libvirt Agents
- Customizable HTML Formatter
- Muuri.js API
- Keyboard Shortcuts
- Microsoft SQL Server Database
- Metadata
- BlazeMeter
- Synopsys Coverity on Polaris
- Helix QAC
- Publish Over Dropbox
- Validating Email Parameter
- Zephyr Enterprise Test Management
- InfluxDB Query
- Pull Request Monitoring
- Jackson Databind
- Thucydides
- Parameter Pool
- Selenium Auto Exec Server(AES)
- Artifact diff
- JBoss Management
- GrypeScanner
- JSUnit
- slave-proxy
- GitHub Coverage Reporter
- Artifactory Client API
- WAS Builder
- Last Failure Version Column
- S3 package parameter
- vagrant
- TestComplete 11 xUnit
- Autograding
- CloudBees CD
- jobtemplates
- IRC
- Slave Prerequisites
- Microsoft SQL Server API
- VectorCAST Execution
- Security Realm by custom script
- Audit to Database
- Job Tags
- Config-Driven Pipeline
- Coordinator
- Artifact Manager Artifactory
- CCCC
- Junit SQL Storage
- LoadRunner Cloud
- Yaml Axis
- OSF Builder Suite :: Standalone Sonar Linter
- RabbitMQ Build Trigger
- Chef Identity
- JavaScript GUI Lib: Numeral.js bundle
- Rapid7 InsightAppSec
- AWS SQS trigger
- Upstream Downstream Column
- VirtualBox
- Performance Signature: UI
- Contrast Continuous Application Security
- Advanced Installer Msi Builder
- Periodic Reincarnation
- JMeter Load Testing in the Cloud for CI/CD by LoadFocus
- Deploy Dashboard Plugin by Namecheap
- SQLite Database
- Build Rotator
- Git Automerger
- Security Inspector
- Delete log
- DTKit
- DevOps Portal
- XebiaLabs XL Release
- EKS Token
- GeneXus
- Openshift Token Credentials - Kubernetes Integration
- Nested Data Reporting
- No Agent Job Purge
- Block Same build
- JWT Auth
- Environment labels setter
- Generic Event
- Avatar
- GitBlit
- Platform Labeler
- S3 Explorer
- AWS CloudWatch Logs Publisher
- Redgate SQL Change Automation
- commons-lang v2.x Jenkins Api
- ServiceNow CI/CD
- NeoLoad
- Overall/Manage permission enabler
- Compatibility Action Storage
- Prisma Cloud IaC Scan
- Additional Identities
- SICCI for Xcode
- CodeCover
- Secure Post Script
- NowSecure Auto
- OpenCover
- rpmsign-plugin
- Block Build Final Project
- Google Cloud Backup
- Artifact Repository Parameter
- WIX Toolset
- Multi-Branch priority sorter
- Qualys Container Scanning Connector
- CodeBuilder: AWS CodeBuild Cloud Agents
- MongoDB
- PTC RV&S CM
- WebHook EventSource
- Gitea PAT Kubernetes Credentials
- Edgewall Trac
- Kiuwan
- Marathon Deployment
- Proxmox
- List Command
- PHP Built-in Web Server
- Acunetix
- Process cleaner
- Pipeline Agent Build History
- Use Dumpling from Jenkins groovy scripts
- Pipeline: Keep Environment Step
- Polarion Webclient for SVN
- Working Hours
- Zephyr for JIRA Test Management
- OpenShift Deployer
- Consul
- Monitor Pro
- Multibranch Job Tear Down
- QF-Test
- Compound Slaves
- Log Command
- SCons
- JobDelete Builder
- Label Verifier
- CrossBrowserTesting.com
- Form element path
- Leapwork
- Datetime Constraint
- Rabbit-MQ Publisher
- Requeue Job
- Sidebar Update Notification
- Oracle Cloud Infrastructure DevOps
- Team Concert Git
- Zoom
- Report Portal
- AWS Lambda Test Runner
- Pipeline: Bamboo Step
- Selection tasks
- Spotinst
- Pending Changes
- Agent Server Parameter
- Aqua MicroScanner
- ClamAV
- MathWorks Polyspace
- Ivy Report
- graphiteIntegrator
- 1Password Secrets
- Dependency Queue
- Google Deployment Manager
- InsightVM Container Image Scanner
- Live Screenshot
- AWS Codebuild Cloud
- Azure Virtual Machine Scale Set
- VncRecorder
- OpenText Enterprise Performance Engineering integration With Git
- Zulip
- jenkins-reviewbot
- Add Changes to Build Changelog
- CRX Content Package Deployer
- Github Release
- Javascript Widgets
- SMS Notification
- ServiceNow DevOps
- FTP Rename
- Json Editor Parameter
- TestCafe
- mean time to repair
- Alibaba Cloud Credentials
- Labeled Test Groups Publisher
- Redmine Metrics Report
- Tricentis Continuous Integration
- JavaTest report
- Otel agent host metrics monitoring
- Skype notifier
- Stack Trace Suppression Plugin (deprecated)
- AutoAction
- Content Security Policy
- Mock Security Realm
- Chatter Notifier
- HTML Audio Notifier
- R
- CloudBees Installation
- CustomHistory
- Inodes Monitor
- Slave squatter
- ClearCase UCM
- Mixing Security Realm
- llvm-cov
- AccuRev
- CloudShare Docker-Machine
- CodeQL
- Strawboss
- Git Bisect
- IBM Security AppScan Standard Scanner
- Tool Labels
- Google Calendar
- Cortex Metrics
- ECS publisher
- Google APIs Client Library
- Violation Columns(List View Columns)
- JMS Messaging
- TestingBot
- OfflineOnFailure
- Search all results
- Spring Initalzr
- behave-testresults-publisher
- Build Step Environment Filter Utilities
- Chosen
- Chroot
- Feature branch notifier
- Sysdig Secure Container Image Scanner
- Dynatrace Application Monitoring
- Jigomerge
- LIFX notifier - smart lightbulbs build indicator
- EzWall
- JMH Report
- Kafka Logs
- Conventional Commits
- Enhanced Metrics
- Google Cloud Platform SDK :: Auth
- Hyper.sh Commons
- Fluentd
- InternetMeme
- Mantis
- Node sharing executor
- Performance Signature: Viewer
- Start Windocks Containers
- Azure PublisherSettings Credentials
- BuildContext Capture
- Elasticsearch Query
- Quality Center
- Figlet Buildstep
- H2 Database
- HP ALM Quality Center
- Pipeline Keep Running Step
- Scala JUnit Name Decoder
- OSF Builder Suite For Salesforce Commerce Cloud :: Credentials
- iOS Device connector
- AWS Batch
- Tuleap API
- Websocket.in Notification
- Appaloosa
- DefectDojo
- beer
- Autocancel
- ClearCase UCM library
- Escaped Markup
- SOASTA CloudTest
- Acunetix 360 Scan
- Performance Signature: Dynatrace
- chosen-views-tabbar
- Phabricator - Kubernetes Intergration
- Puppet
- Azure Service Fabric
- Azure Kubernetes Credentials
- Pipeline: GCP Steps
- Rally
- S3 Yum repo parameter
- ec2-cloud-axis
- DEPRECATED: Synopsys Security Scan
- NSIQ Collector
- scripted Cloud
- Bugzilla
- excludeMatrixParent
- oki-docki
- tracetronic ecu.test
- Google Admin SDK
- CollabNet Plugins
- GNAT
- Ghost Inspector
- IBM Security AppScan Source Scanner
- dbForge DevOps Automation for SQL Server
- Google Cloud Platform SDK :: Storage
- MQTT Notification
- keepSlaveOffline
- Android Apk Size Watcher
- Mail Map Resolver
- NeuVector Vulnerability Scanner
- IBM z/OS Connector
- OSF Builder Suite For Salesforce Commerce Cloud :: Deploy
- Spring Config
- TestFLO - Test Management for Jira
- Delinea Secret Server
- QMetry for JIRA - Test Management
- AWS SQS Build Trigger
- Benchmark
- Enhanced Credentials
- Global YAML Properties
- mongodb-document-upload
- Agent Maintenance
- Cadence vManager
- Code signing with Software Trust Manager
- Remoting monitoring with OpenTelemetry
- composer security checker
- AIO Tests
- Chart.js API
- AssertThat BDD Jira
- Tuleap Git Branch Source
- jsoup API
- BTC DSL for Pipeline
- Piwik Analytics
- Questa VRM
- monitor-remote-job
- JCaptcha
- mktmpio
- Cloudbees DevOptics Installation
- Dump Info BuildWrapper
- RAD Studio
- SourceMonitor
- Visual Basic 6
- pom2config
- Hetzner Cloud
- URL Filter
- BMC AMI Common Configuration
- Crowd Integration
- Cygwin Process Killer
- Google Analytics
- Qualys Host Scanning Connector
- computer-queue-plugin
- Doktor
- Meme Generator
- Performance Signature: Dynatrace AppMon
- SSSCM
- ValidatingYamlParameter
- AppSpider
- Applitools Eyes
- Google Git Notes Publisher
- Keeper Secrets Manager
- Maintenance Jobs Scheduler
- Centralized Job(Re)Action
- Azure Batch Parallel Test Execution
- Codebeamer xUnit Importer
- Env Variable Page Decoration
- Hyper.sh Build Step
- Log CLI
- jnr-posix API
- Cluster Statistics
- Dr. Memory
- Build Line
- Simple Dynamic ClearCase
- TestFairy
- CA Service Virtualization
- QMetry Test Management
- Console Navigation
- Seapine Surround SCM
- Alibaba Cloud ECS
- Implied Labels
- Sonic CI Helper
- Tekton Client
- UI Test Capture
- requests-plugin
- Agent LoadBalance
- dbCharts
- Assembla merge request builder
- Salesforce Migration Assistant
- Amazon Inspector Scanner
- JWT Support
- LOGBack appender to NATS pub/sub topic
- Minio Storage
- Remoting Kafka
- Runscope
- mabl
- Coding Webhook
- myst-plugin
- Persistent Build Queue
- Qualys Policy Compliance Scanning Connector
- RubyMotion
- cron-shelve
- Adobe Cloud Manager
- Inedo ProGet Plugin
- Qiniu
- StackRox Container Image Scanner
- ClearCase UCM Baseline
- Jira Service Management Integration
- Code Dx
- deploygate-plugin
- Emma Line Coverage Column
- One-Shot Executor
- Venafi CodeSign Protect
- Visual SourceSafe
- utPLSQL
- Diagnostics
- Generic Tool
- Gitcolony Build Notification
- Neuro Cucumber
- Parasoft Environment Manager
- PingCode
- Alauda Kubernetes Suport
- Buckminster
- CodeBeamer XUnit Uploader
- Coverage Badges Extension
- Copado
- DotCover
- Jobcacher Artifactory Storage Extension
- Pipeline: HuaweiCloud Steps
- Restricted Registration
- SCM HttpClient
- Cisco Spark
- DepBuilder
- Device Watcher
- Provar Automation CLI
- Matrix Communication
- Issue Link
- SCM Filter Jervis
- Associated Files
- Skytap Cloud CI
- TwilioNotifier
- VMware vRealize Automation
- chef-tracking
- Agiletestware Pangolin Connector for TestRail
- Appetize.io
- OSF Builder Suite For Salesforce Commerce Cloud :: Data Import
- Columns Pack
- Compressed Files Viewer
- Gem Publisher
- Keep Offline Slaves Disconnected Retention Strategy
- Nirmata
- Recipe
- Results Cache
- Synergy
- Wavefront
- leiningen-plugin
- AWS Beanstalk Releaser
- Event Publisher (via ZMQ PUB SUB)
- Kubesphere Token Auth
- Redis Fingerprint Storage
- youtrack-plugin
- rhnpush-plugin
- Bazaar
- Codefresh Integration
- Concurrent Login
- Dimensions
- report-jtreg
- Asynchronous Job type
- Generic Build Step Environment Filters
- Google Analytics Usage Reporter
- Google Health Check
- Growl
- UrbanCode Velocity
- Bumblebee HP ALM
- Chef Cookbook Pipeline
- Deployment Sphere
- Distributed Testing
- Eclipse Update Site
- Review Board
- Benchmark Evaluator
- Design Library
- Instana integration
- Red Hat Dependency Analytics
- TICS
- Exclusive label
- Giphy API
- Pipeline Project-Env
- CrowdStrike Security
- Debian Pbuilder
- Machine Learning
- Concordion Presenter
- Testsigma Test Plan run
- Assembla Auth
- Kanboard
- Trac Publisher
- Xamarin Studio Tool Runner
- hue-light
- Arachni Scanner
- CatLight Notification
- CloudShell Sandbox
- Extended Timer Trigger
- Locked Files Report
- RQM
- TestQuality Updater
- Testability Explorer
- Thread Dump Action
- Url Auth
- drecycler
- housekeeper
- Anka
- Metrics Aggregation
- Paginated Builds
- XPath Configuration Viewer
- Codebeamer Coverage Publisher
- Party Parrot Status
- Views containing Job
- JRedis Notifier
- OSF Builder Suite For Salesforce Commerce Cloud :: Run Job
- RAD Builder
- Tuleap Authentication
- Compuware Topaz Utilities
- crittercism-dsym
- vRealize Orchestrator
- ACCELQ CI-Connect
- ClearCase Release
- CloudBees Feature Management
- Delphix
- Diawi Upload
- Emoji Symbols API
- IFTTT Build Notifier
- Pragprog
- Safe Batch Environment Filter
- XLRelease Variables Setter
- ontrack Jenkins
- piketec-tpt
- CodeScene
- HUAWEICloud Credentials
- IPMessenger
- Infisical
- Load Impact
- Zanata
- jBPM workflow
- signal-killer
- Browser axis
- Defensics
- Fast Track Queue Optimizer
- Gallio
- Jucies Update Center
- Open STF
- OpenEdge (Progress ABL)
- Unicorn Validation
- View26 Test-Reporting
- Aqua Security Serverless Scanner
- Continuum
- DeployDB
- Flock Notification
- IBM Cloud DevOps
- Link Column
- BMC Release Package and Deployment
- Codebeamer Test Results Trend Updater
- Rancher
- Spira Importer
- Talend
- VMware Lab Manager Slaves
- extreme-feedback
- unreliable-slave-plugin
- BMC AMI DevX Total Test
- Dotcom-Monitor LoadView
- Extension Filter
- Gating Core
- PVCS SCM
- RapidDeploy
- Abap Continuous Integration
- Deep Security Smart Check
- HP Operations Orchestration Automation Execution
- NOPMD check
- Propelo's Job Reporter
- Remote Result Trigger
- Skip Cron Rebuild
- Application Detector
- Better Pipeline Flow Graph Table
- Eggplant Runner
- OctoPerf Load Testing Plugin
- Probely Security Scanner
- Request Rename Or Delete
- Adaptive Disconnector
- Alauda DevOps Credentials Provider
- BMC AMI DevX Source Code Download for Endevor, PDS, and Code Pipeline
- Casdoor Authentication
- Cloudify
- Compuware Xpediter Code Coverage
- SASUnit
- rallyBuild
- teamscale-upload
- Data Theorem Mobile Security: CI/CD
- ElasticBox CI
- LoadNinja
- NodePool Agents
- Redpen - Pipeline Reporter for Jira
- Serena SRA Deploy
- ecu.test execution
- Assembla
- Attention
- Azure Event Grid Build Notifier
- BMC AMI DevX Code Pipeline Operations
- MISRA Compliance Report
- MariaDB API
- Pipeline Logging over CloudWatch
- SourceGear Vault
- Yandex Cloud
- netdomain-labeler-plugin
- Drupal Developer
- Sametime
- Tag Cloud
- jenkins-testswarm-plugin
- AbsInt Astrée
- Azure Cosmos DB
- CloudEvents
- Deprecated: IBM AppScan
- FlashLog
- Job StrongAuthSimple
- Shortcut Job
- Alauda Pipeline
- DAGsHub Branch Source
- MariaDB Database
- Mend Cloud Native
- Nuclei
- OverOps Query
- Plain Text Console Link
- Port scanner
- Stoplight Report
- Tag Profiler
- WebLOAD Load Testing
- workplace-notifier
- CLIF Performance Testing
- Comments Remover
- Daily Quote
- Parallels Desktop Cloud
- Parasoft Policy Center Gate Check Validator
- People Redirector
- Random Job Builder
- SeaLights Continuous Testing
- Send stacktrace to Eclipse
- vboxwrapper
- Bitbar Run-in-Cloud
- Collabnet Automic Deploy
- Harvest SCM
- Helix TeamHub
- Panoptica Vulnerability Scanner
- Reqtify
- Vmware vRealize CodeStream
- CA-APM
- Continuous Integration with Toad Edge
- FortiCNP CICD
- Hyper.sh Slaves
- JAPEX
- Rigor Optimization Website Performance Testing
- meliora-testlab
- Digital.ai App Management Publisher
- Node sharing orchestrator
- Package Drone Deployer
- Relution Enterprise Appstore Publisher
- Tibco Builder
- Worksoft Execution Manager
- BLINK(1) Notifier
- Eiffel Broadcaster
- GPG signing with Software Trust Manager
- Hugo
- IBM Content Navigator remote plug-in reloader
- NOPMD verify Trac
- NS-ND Integration Performance Publisher
- Qualys IaC Security
- Zowe zDevOps
- packagecloud
- Apica Loadtest
- BigPanda Notifier
- Container Image Link
- GCR Vulnerability Scanner
- Image comparison
- OES Template
- Sematext
- Spirent iTest
- Tanaguru
- Testopia
- ThreadFix
- Trunk
- Wallarm Fast
- Experitest Cloud
- FlexDeploy
- Load Testing CI/CD Plugin by LoadFocus
- Package Version
- Tattletale
- The SourceClear Installer
- Alauda DevOps Pipeline
- BitKeeeper
- Collabnet UC4 Deploy
- Deploy to webMethods Integration Server
- EDAS
- Oracle Cloud Infrastructure Compute Classic
- Quay.io trigger
- Split Admin
- Stackify Deployment Recorder
- Thycotic DevOps Secrets Vault
- WSO2 Oauth
- transifex
- Argus Notifier
- CMVC
- Cerberus Testing
- CodeThreat
- DeployHub
- Failed Job Deactivator
- Klaros-Testmanagement
- Logentries Forwarder
- Mock Load Builder
- Nutanix Calm
- PostgreSQL Fingerprint Storage
- Quality Clouds Scan
- SimpleUpdateSite
- Sken.ai CLI
- Web Security Application Project (WSAP)
- Fogbugz
- Hadoop
- Karaf Build Step
- Progress TestStudio
- Sahagin
- SmileHub Notifier
- Updraft Android/iOS Publisher
- Alibabacloud Package Deployment
- Black Duck Rapid Scan Static
- Build Executors Filter Offline
- Chaos Butler
- Deveo
- Jabber Server
- Lacework Security Scanner
- MetaDefender
- Metrics Ganglia Reporting
- QRebel
- Tinfoil Security
- Updatebot
- Viber Notification
- iceScrum
- jBPM embedded
- report diff
- API Fortress
- AbsInt a³
- Artifactz.io
- Breachlock DAST
- Chart Column from properties
- Copr
- Deprecated: Jenkins Zulip
- Extensive Testing
- Helix ALM Test Management
- Koji
- MDT Deployment
- OneSky
- infrastructure test
- loader.io
- vRealize Automation 8.x
- visualexpert
- ws-ctm
- BuildHealth cache Updater
- GraphQL API Server
- OpsLevel
- Shutdown Queue
- Silk Performer
- SmartFrog Builder
- Zoho Sprints
- Beagle Security
- Beaker builder
- CloudHub Deployer
- Inedo BuildMaster Plugin
- Progress TestStudio for API
- SBuild
- SLSA Provenance Attestation
- Snow Commander
- VAddy
- Venafi Machine Identity Management
- suite-test-groups-publisher
- useMango Runner
- AMQP Build Trigger
- BMC AMI DevX Data Studio
- Boot build tool for Clojure
- Documentum xCP
- Gatekeeper
- HuaweiCloud ECS
- Lotus Connections
- MicroNova EXAM
- NIS notification lamp
- PureLoad
- Rapid7 InsightOps Log Forwarder
- Sofy.AI
- Typetalk
- Vdoo Vision Scanner
- aRESTocats
- writable-filesystem-monitor
- Appdome Build-2secure
- BMC AMI Strobe Measurement Task
- CDEvents
- Carbonetes Serverless Container Scanning and Policy Compliance
- Chaos Monkey
- Conflict Aware On Demand Retention Strategy
- Google Analyze Code Security
- JPRT
- Jobcacher Azure Storage Extension
- LoadComplete support
- MAT Performance Benchmarking by Broadcom
- Nerrvana
- Non Dynamic Hello World: TESTING
- Peass-CI
- SOOS SCA
- Sec1 Security
- Stack Hammer
- Testkube CLI
- TuxDroid
- Visualworks Store
- autonomiq
- iTMS for JIRA
- in-toto provenance agent
- Autify
- BMC AMI DevOps for Application Checkpoint Analysis
- CTRF
- Cachet Gating
- CheckPoint CloudGuard Shiftleft
- CloudCoreo DeployTime
- Compuware zAdviser API
- DaticalDB4Jenkins
- Dead Man's Snitch
- ECX Copy Data Management
- Eagle Tester
- ICQ and MyTeam Notification
- Job Environment Variables Status Sync
- OSLC CM
- PreFlight
- Progress Telerik AppBuilder
- TestWeaver
- Uleska
- WAPT Pro
- WeTest Automated Testing
- Yandex Metrica
- couchdb-statistics
- reFit
- Apimap.io
- AscentialTest
- BeVigil CI
- Caliper CI
- Campfire
- Darcs
- Horreum
- JDCloud CodeDeploy
- JetBrains SpaceCode
- Jianliao Notification
- Kryptowire
- Loadium
- Matomo analytics
- Nouvola DiveCloud
- Project Newcastle Build Requester
- RuSalad
- SD Elements
- Shared Library Version Override
- SnowGlobe
- Xygeni Sensor
- Zscaler IaC Scanner
- elOyente
- oak9
- Appknox Security Scanner
- Aristiun Aribot
- Commons Math3 API
- IBM Continuous Release
- Jacked
- Levo
- Ostorlab Security And Privacy Scanner
- Oversecured
- SWEAGLE
- Sensedia Api Platform tools
- SideeX
- StatusPage Gating
- Themis
- Thycotic DevOps Secrets Vault
- Wattspeed
- event-announcer
- openSCADA Exporter
- vFabric Application Director
- Alauda DevOps Sync
- App-Ray Security check
- Apprenda
- AsakusaSatellite
- Carl
- D Listing Coverage
- EasyQA
- GPRbuild
- Gamekins
- Habitat Executor
- Humio
- ImmuniWeb Neuron
- MergeBase SCA
- Quali Torque
- Raspberry Pi Build Status
- Sec1 Security Scanner
- SmallTest
- Testein
- XP-Dev
- vertx
- AWS Kinesis Consumer
- Appcircle Enterprise App Store
- Appcircle Testing Distribution
- Appdome Validate-2secure
- ByteGuard Build Actions
- Convertigo Mobile Platform
- Curseforge Publisher
- Deepcrawl Automation Hub
- ElasTest
- IronMQ-notifier
- Loadmance
- Maplelabs APM
- MicroDocs Integration
- PaaSLane Estimate
- Progress MobileStudio
- RadarGun
- Reliza Integration
- Testinium
- Third Party Upload
- TurboScript
- Upload Binary Scan
- WWPass Authentication
- Warrior Framework
- hckrnews
- lingr-plugin
- Amazon Web Services SDK 2 :: Api Gateway
- Amazon Web Services SDK 2 :: Autoscaling
- Amazon Web Services SDK 2 :: CloudFormation
- Amazon Web Services SDK 2 :: CloudFront
- Amazon Web Services SDK 2 :: CloudWatch
- Amazon Web Services SDK 2 :: CloudWatch Logs
- Amazon Web Services SDK 2 :: CodeBuild
- Amazon Web Services SDK 2 :: CodeDeploy
- Amazon Web Services SDK 2 :: Core
- Amazon Web Services SDK 2 :: EC2
- Amazon Web Services SDK 2 :: ECR
- Amazon Web Services SDK 2 :: ECS
- Amazon Web Services SDK 2 :: EFS
- Amazon Web Services SDK 2 :: Elastic Beanstalk
- Amazon Web Services SDK 2 :: Elastic Load Balancing V2
- Amazon Web Services SDK 2 :: IAM
- Amazon Web Services SDK 2 :: Kinesis
- Amazon Web Services SDK 2 :: Lambda
- Amazon Web Services SDK 2 :: Organizations
- Amazon Web Services SDK 2 :: S3
- Amazon Web Services SDK 2 :: SNS
- Amazon Web Services SDK 2 :: SQS
- Amazon Web Services SDK 2 :: SSM
- Amazon Web Services SDK 2 :: Secrets Manager
- Amazon Web Services SDK :: CloudWatch
- Applatix
- BMC AMI DevOps for Change Manager for IMS TM
- Black Duck Coverity on Polaris
- Black Duck Security Scan
- CloudAEye
- Code Signing with SignPath
- Cyber Chief Security Scanner
- Dogu Integration
- Fedora Module Build System
- Frugal Testing
- HiddenLayer Model Scanner
- IBM i Pipeline Steps
- Idobata Notifier
- Indusface-WAS-Plugin
- Jobcacher ORAS Storage Extension
- Kobiton
- LeanIX Value Stream Management
- Log Flow Visualizer
- MarkdownParams
- ORAS Java API
- Queue Redirector
- RadarGun Reporting
- Railflow for TestRail
- SimplifyQA Automation Hub
- Smart Jenkins
- Test Odyssey
- Upload Build To Sofy
- User1st uTester
- VK Notifier
- Wiz Scanner
- Xooa
- Zoho QEngine
- iCEDQ
- zerobug