Polish "Upgrade Spring Framework to 6.0.0 and Spring Boot to 3.0.0-RC2"

This commit is contained in:
Scott Frederick
2022-11-16 13:26:14 -06:00
parent e335a9be01
commit 3187c6a966
10 changed files with 21 additions and 48 deletions

View File

@@ -6,7 +6,6 @@ Spring CredHub `CredHubOperations` supports multiple HTTP client libraries to co
* Javas builtin `HttpURLConnection` (default)
* https://hc.apache.org/[Apache HttpComponents]
* https://square.github.io/okhttp/[OkHttp 3]
* https://netty.io/[Netty]
Choosing a specific client library requires the appropriate dependency to be available on the application classpath.
The application classpath will be inspected for each client library in the order listed above.
@@ -38,15 +37,3 @@ To use OkHttp 3 to communicate with CredHub, add the following dependency to the
<artifactId>okhttp</artifactId>
</dependency>
----
=== Netty
To use Netty to communicate with CredHub, add the following dependency to the application:
[source,xml,%autofit]
----
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
----