diff options
author | Dan Timoney <dtimoney@att.com> | 2022-03-01 11:10:58 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2022-03-22 18:04:32 +0000 |
commit | 7c0ec3e4540c1a10a03efcfbae06c4a7915977a6 (patch) | |
tree | ca6c6fd9616f24efb786ee8620ad499cb258a4d9 /plugins/restconf-client/provider/pom.xml | |
parent | b64e61b3631a022f6f166e6fc15026537ff46c63 (diff) |
Migrate SLI to OpenDaylight Phosphorus
Updated ccsdk/sli to use Phosphorus SR1 version of parent poms and
updated Java Reflection code to handle changes in Phosphorus:
- use Uint8/Uint16/Uint32/Uint64 classes in place of
char/Short/Long/BigInteger, respectively
- add code for toMap method to handle change in representation
of yang list from java List to java Map
- Add new YangUtils class to replace removed ODL yangtools SchemaUtils class
- Update restconf-client due to changes in yangtools
Issue-ID: CCSDK-3567
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Iea581c7f39b1038ce95cc0ca6728fe56dd023f3e
Diffstat (limited to 'plugins/restconf-client/provider/pom.xml')
-rwxr-xr-x | plugins/restconf-client/provider/pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/restconf-client/provider/pom.xml b/plugins/restconf-client/provider/pom.xml index e82690afb..0e40a4958 100755 --- a/plugins/restconf-client/provider/pom.xml +++ b/plugins/restconf-client/provider/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>binding-parent</artifactId> - <version>2.3.2</version> + <version>2.3.3-SNAPSHOT</version> </parent> <groupId>org.onap.ccsdk.sli.plugins</groupId> @@ -60,7 +60,13 @@ </dependency> <dependency> <groupId>org.opendaylight.yangtools</groupId> + <artifactId>yang-common</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-data-impl</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> |