diff options
author | Hesam Rahimi <hesam.rahimi@huawei.com> | 2022-03-01 22:34:38 -0500 |
---|---|---|
committer | Hesam Rahimi <hesam.rahimi@huawei.com> | 2022-03-02 11:33:07 -0500 |
commit | 04766f01fb17e464d722d21d328264d139a2fcd0 (patch) | |
tree | b5377d404701095e93ff323a6f89934259398f7f /plugins/restconf-client/provider/pom.xml | |
parent | db3f905491c6a8f844212a4227281e758d73d333 (diff) |
Implementation of a RESTCONF client that can establish SSE connections
to a RESTCONF server. This is for receiving notification events to
support closed-loop for IBNs.
Issue-ID: CCSDK-3595
Signed-off-by: Hesam Rahimi <hesam.rahimi@huawei.com>
Change-Id: I2a3be01b03d889b41d4608011436d8b587a621e5
Diffstat (limited to 'plugins/restconf-client/provider/pom.xml')
-rwxr-xr-x | plugins/restconf-client/provider/pom.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/restconf-client/provider/pom.xml b/plugins/restconf-client/provider/pom.xml index ca1b28455..e82690afb 100755 --- a/plugins/restconf-client/provider/pom.xml +++ b/plugins/restconf-client/provider/pom.xml @@ -140,7 +140,17 @@ <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> - <scope>test</scope> + <version>2.27</version> + </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.6</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> </dependency> </dependencies> </project> |