Skip to content

Commit

Permalink
[Java] Update WebClient dependencies (#8972)
Browse files Browse the repository at this point in the history
* update webclient dependencies

* update build.gradle
  • Loading branch information
wing328 authored Mar 22, 2021
1 parent e7eb2ed commit dea0e05
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions libraries/webclient/build.gradle.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,14 @@ if(hasProperty('target') && target == 'android') {

ext {
swagger_annotations_version = "1.6.2"
spring_web_version = "5.2.13.RELEASE"
spring_web_version = "2.4.3"
jackson_version = "2.11.3"
jackson_databind_version = "2.11.3"
{{#openApiNullable}}
jackson_databind_nullable_version = "0.2.1"
{{/openApiNullable}}
javax_annotation_version = "1.3.2"
reactor_version = "3.3.10.RELEASE"
reactor_version = "3.4.3"
reactor_netty_version = "0.7.15.RELEASE"
jodatime_version = "2.9.9"
junit_version = "4.13.1"
Expand All @@ -141,7 +141,7 @@ dependencies {
implementation "io.swagger:swagger-annotations:$swagger_annotations_version"
implementation "com.google.code.findbugs:jsr305:3.0.2"
implementation "io.projectreactor:reactor-core:$reactor_version"
implementation "org.springframework:spring-webflux:$spring_web_version"
implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_web_version"
implementation "io.projectreactor.ipc:reactor-netty:$reactor_netty_version"
implementation "com.fasterxml.jackson.core:jackson-core:$jackson_version"
implementation "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
Expand Down
10 changes: 5 additions & 5 deletions libraries/webclient/pom.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@
<version>${reactor-version}</version>
</dependency>

<!-- HTTP client: Spring WebFlux -->
<!-- HTTP client: Springboot starter WebFlux -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
<version>${spring-web-version}</version>
</dependency>

Expand Down Expand Up @@ -149,15 +149,15 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<swagger-annotations-version>1.6.2</swagger-annotations-version>
<spring-web-version>5.2.13.RELEASE</spring-web-version>
<spring-web-version>2.4.3</spring-web-version>
<jackson-version>2.11.3</jackson-version>
<jackson-databind-version>2.11.3</jackson-databind-version>
{{#openApiNullable}}
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
{{/openApiNullable}}
<javax-annotation-version>1.3.2</javax-annotation-version>
<junit-version>4.13.1</junit-version>
<reactor-version>3.3.10.RELEASE</reactor-version>
<reactor-version>3.4.3</reactor-version>
<reactor-netty-version>0.7.15.RELEASE</reactor-netty-version>
{{#joda}}
<jodatime-version>2.9.9</jodatime-version>
Expand Down

0 comments on commit dea0e05

Please sign in to comment.