Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Netty transport #88

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This plugin exposes 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 Apache HttpClient 5 and Netty based transports are available; the Jersey transport does not work.
Only the Apache HttpClient 5 transport is available; the Jersey transport does not work.

# Environment

Expand Down
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<version>${revision}-${changelist}</version>
<packaging>hpi</packaging>
<name>Docker API Plugin</name>
<description>Plugin providing Docker API for other plugins. Wrap docker-java and required dependency for Netty transport only. JAX-RS default transport is not usable</description>
<description>Plugin providing Docker API for other plugins. Wrap docker-java and required dependency for Apache HttpClient 5 transport only. JAX-RS default transport is not usable</description>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>

<licenses>
Expand Down Expand Up @@ -70,11 +70,15 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<!-- Deprecated transport -->
<!-- Deprecated transports -->
<exclusion>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java-transport-jersey</artifactId>
</exclusion>
<exclusion>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java-transport-netty</artifactId>
</exclusion>
<!-- Provided by Jenkins core -->
<exclusion>
<groupId>com.google.guava</groupId>
Expand Down