Bael 4398 retrofit dynamic url (#10090)

* BAEL-2495 fixing InvalidDefinitionException

* BAEL-2495 minor changes

* Added solution for dynamic Urls using retrofit 2.

* Revert "BAEL-2495 minor changes"

This reverts commit 174d8664e2612d9d578c72b33571b61dc3a27dbf.

* Revert "BAEL-2495 fixing InvalidDefinitionException"

This reverts commit 20e1b768e6c50529cb0af250ca437b94a9f01cd9.

* BAEL-4398 moved repository to libraries-http-2
This commit is contained in:
patkorek
2020-10-26 20:54:34 +01:00
committed by GitHub
parent 0e92c3511b
commit 4a36ad4b79
6 changed files with 152 additions and 0 deletions
+13
View File
@@ -66,6 +66,18 @@
<artifactId>reactive-streams</artifactId>
<version>${reactive.stream.version}</version>
</dependency>
<!-- Retrofit -->
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>${retrofit.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-gson</artifactId>
<version>${retrofit.version}</version>
</dependency>
</dependencies>
<properties>
@@ -76,6 +88,7 @@
<jetty.httpclient.version>1.0.3</jetty.httpclient.version>
<jetty.server.version>9.4.19.v20190610</jetty.server.version>
<rxjava2.version>2.2.11</rxjava2.version>
<retrofit.version>2.3.0</retrofit.version>
<spring.webflux.version>5.1.9.RELEASE</spring.webflux.version>
<reactive.stream.version>1.0.3</reactive.stream.version>
<reactor.version>3.2.12.RELEASE</reactor.version>