https://github.com/jenkinsci/docker-java-api-plugin
https://github.com/jenkinsci/docker-java-api-plugin
docker jenkins-api-plugin
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jenkinsci/docker-java-api-plugin
- Owner: jenkinsci
- License: mit
- Created: 2017-09-11T15:44:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-08-17T13:07:34.000Z (10 months ago)
- Last Synced: 2025-08-17T15:09:13.909Z (10 months ago)
- Topics: docker, jenkins-api-plugin
- Language: Java
- Homepage: https://plugins.jenkins.io/docker-java-api/
- Size: 116 KB
- Stars: 4
- Watchers: 2
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Docker Java API Plugin
This plugin provides the [docker-java](http://github.com/docker-java/docker-java) API to Jenkins plugins.
Plugins using docker-java should depend on this plugin and not directly on docker-java.
Only the Apache HttpClient 5 transport is available; the Jersey transport does not work.
## Using the API in your plugin
Replace the dependency to `com.github.docker-java:docker-java` with a dependency to `org.jenkins-ci.plugins:docker-java-api`.
Avoid version conflicts by using the [Jenkins plugin BOM](https://github.com/jenkinsci/bom#readme) rather than depending on a specific version.
* Before:
```
...
com.github.docker-java
docker-java
3.4.1
...
```
* After:
```
...
org.jenkins-ci.plugins
docker-java-api
...
```