Merge branch '6.1.x'
This commit is contained in:
commit
66a518abd5
|
@ -96,7 +96,7 @@ configure([rootProject] + javaProjects) { project ->
|
||||||
"https://fasterxml.github.io/jackson-core/javadoc/2.14/",
|
"https://fasterxml.github.io/jackson-core/javadoc/2.14/",
|
||||||
"https://fasterxml.github.io/jackson-databind/javadoc/2.14/",
|
"https://fasterxml.github.io/jackson-databind/javadoc/2.14/",
|
||||||
"https://fasterxml.github.io/jackson-dataformat-xml/javadoc/2.14/",
|
"https://fasterxml.github.io/jackson-dataformat-xml/javadoc/2.14/",
|
||||||
"https://hc.apache.org/httpcomponents-client-5.2.x/current/httpclient5/apidocs/",
|
"https://hc.apache.org/httpcomponents-client-5.4.x/current/httpclient5/apidocs/",
|
||||||
"https://projectreactor.io/docs/test/release/api/",
|
"https://projectreactor.io/docs/test/release/api/",
|
||||||
"https://junit.org/junit4/javadoc/4.13.2/",
|
"https://junit.org/junit4/javadoc/4.13.2/",
|
||||||
// TODO Uncomment link to JUnit 5 docs once we execute Gradle with Java 18+.
|
// TODO Uncomment link to JUnit 5 docs once we execute Gradle with Java 18+.
|
||||||
|
|
|
@ -100,8 +100,8 @@ dependencies {
|
||||||
api("org.apache.derby:derby:10.16.1.1")
|
api("org.apache.derby:derby:10.16.1.1")
|
||||||
api("org.apache.derby:derbyclient:10.16.1.1")
|
api("org.apache.derby:derbyclient:10.16.1.1")
|
||||||
api("org.apache.derby:derbytools:10.16.1.1")
|
api("org.apache.derby:derbytools:10.16.1.1")
|
||||||
api("org.apache.httpcomponents.client5:httpclient5:5.3.1")
|
api("org.apache.httpcomponents.client5:httpclient5:5.4")
|
||||||
api("org.apache.httpcomponents.core5:httpcore5-reactive:5.2.5")
|
api("org.apache.httpcomponents.core5:httpcore5-reactive:5.3")
|
||||||
api("org.apache.poi:poi-ooxml:5.2.5")
|
api("org.apache.poi:poi-ooxml:5.2.5")
|
||||||
api("org.apache.tomcat.embed:tomcat-embed-core:10.1.28")
|
api("org.apache.tomcat.embed:tomcat-embed-core:10.1.28")
|
||||||
api("org.apache.tomcat.embed:tomcat-embed-websocket:10.1.28")
|
api("org.apache.tomcat.embed:tomcat-embed-websocket:10.1.28")
|
||||||
|
|
|
@ -237,6 +237,7 @@ public class HttpComponentsClientHttpRequestFactory implements ClientHttpRequest
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
public ClientHttpRequest createRequest(URI uri, HttpMethod httpMethod) throws IOException {
|
public ClientHttpRequest createRequest(URI uri, HttpMethod httpMethod) throws IOException {
|
||||||
HttpClient client = getHttpClient();
|
HttpClient client = getHttpClient();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue