Manage dependency for Jetty RS HTTP client
This commit adds the Jetty RS HTTP client to the Spring Boot dependency management. As of SPR-15092 and SPR-17124, this HTTP client library is supported by Spring Framework. This commit is first step towards supporting that library as a driver for the WebClient / ClientHttpConnector auto-configuration. See gh-14005
This commit is contained in:
parent
1bbe3afdec
commit
f74dd7d58c
|
@ -104,6 +104,7 @@
|
|||
<jetty.version>9.4.11.v20180605</jetty.version>
|
||||
<jetty-jsp.version>2.2.0.v201112011158</jetty-jsp.version>
|
||||
<jetty-el.version>8.5.24.2</jetty-el.version>
|
||||
<jetty-reactive-httpclient.version>1.0.1</jetty-reactive-httpclient.version>
|
||||
<jmustache.version>1.14</jmustache.version>
|
||||
<jna.version>4.5.2</jna.version>
|
||||
<joda-time.version>2.10</joda-time.version>
|
||||
|
@ -1756,6 +1757,11 @@
|
|||
<scope>import</scope>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-reactive-httpclient</artifactId>
|
||||
<version>${jetty-reactive-httpclient.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty.orbit</groupId>
|
||||
<artifactId>javax.servlet.jsp</artifactId>
|
||||
|
|
Loading…
Reference in New Issue