Skip to content

Commit 9be0240

Browse files
authored
Drop Netty transport (#88)
1 parent 46247c5 commit 9be0240

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This plugin exposes the [docker-java](http://github.com/docker-java/docker-java) API to Jenkins plugins.
44
Plugins using docker-java should depend on this plugin and not directly on docker-java.
55

6-
Only Apache HttpClient 5 and Netty based transports are available; the Jersey transport does not work.
6+
Only the Apache HttpClient 5 transport is available; the Jersey transport does not work.
77

88
# Environment
99

pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<version>${revision}-${changelist}</version>
1414
<packaging>hpi</packaging>
1515
<name>Docker API Plugin</name>
16-
<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>
16+
<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>
1717
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
1818

1919
<licenses>
@@ -70,11 +70,15 @@
7070
<groupId>com.fasterxml.jackson.core</groupId>
7171
<artifactId>jackson-databind</artifactId>
7272
</exclusion>
73-
<!-- Deprecated transport -->
73+
<!-- Deprecated transports -->
7474
<exclusion>
7575
<groupId>com.github.docker-java</groupId>
7676
<artifactId>docker-java-transport-jersey</artifactId>
7777
</exclusion>
78+
<exclusion>
79+
<groupId>com.github.docker-java</groupId>
80+
<artifactId>docker-java-transport-netty</artifactId>
81+
</exclusion>
7882
<!-- Provided by Jenkins core -->
7983
<exclusion>
8084
<groupId>com.google.guava</groupId>

0 commit comments

Comments
 (0)