diff options
author | Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com> | 2018-12-01 19:54:07 -0500 |
---|---|---|
committer | Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com> | 2018-12-02 10:54:43 -0500 |
commit | a4863f4aa59555ee786786e6c30295d3dad6a5e0 (patch) | |
tree | 89c5d3179953088ac1e44a72055bc91c33fb5b2c | |
parent | cb8751a59f47519757371938998d340b8e317ce5 (diff) |
Enable Webflux Service.
Change-Id: I99bacee9b63aa788bb368dec60981bf19ea759c4
Issue-ID: CCSDK-781
Signed-off-by: Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
-rw-r--r-- | components/parent/pom.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/components/parent/pom.xml b/components/parent/pom.xml index 39f2d1015..8a779c1dc 100644 --- a/components/parent/pom.xml +++ b/components/parent/pom.xml @@ -29,8 +29,8 @@ <name>App Components Parent</name> <packaging>pom</packaging> <properties> - <spring.boot.version>2.0.6.RELEASE</spring.boot.version> - <spring.version>5.0.10.RELEASE</spring.version> + <spring.boot.version>2.1.1.RELEASE</spring.boot.version> + <spring.version>5.1.3.RELEASE</spring.version> <kotlin.version>1.3.10</kotlin.version> <kotlin.maven.version>1.3.10</kotlin.maven.version> <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version> @@ -132,6 +132,11 @@ <!-- GRPC Dependencies --> <dependency> <groupId>io.grpc</groupId> + <artifactId>grpc-core</artifactId> + <version>${grpc.version}</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> <artifactId>grpc-netty</artifactId> <version>${grpc.version}</version> </dependency> @@ -180,6 +185,12 @@ <version>${kotlin.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-testing</artifactId> + <version>${grpc.version}</version> + <scope>test</scope> + </dependency> </dependencies> </dependencyManagement> |