Skip to content

Commit

Permalink
Drop Netty transport (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Nov 28, 2023
1 parent 46247c5 commit 9be0240
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
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

0 comments on commit 9be0240

Please sign in to comment.