diff options
author | Dan Timoney <dtimoney@att.com> | 2022-08-03 11:59:43 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2022-08-05 16:10:18 -0400 |
commit | 219b28ed3c3ee23f10d67c9c50583a8bd5a84f3a (patch) | |
tree | e3d5654f7cb1c16d899d652ab25c97992bf635b6 /generic-resource-api/provider/pom.xml | |
parent | 2b1dc5b10650ed62f71d4b84ef662b59ed663fc1 (diff) |
Changes to support ODL Sulfur update
Changes to sdnc/northbound to conform to changes in OpenDaylight Sulfur
release. Many of these changes are due to a change in yangtools, which
no longer implements a common ancestor for its builder classes. This broke
a utility method used in jUnit test cases (build()), which meant all
jUnits using that method had to be updated to call each individual
builder's build() method directly.
Issue-ID: CCSDK-1728
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Ia82aa3decd82d873120dd643a6a0427928890f99
Diffstat (limited to 'generic-resource-api/provider/pom.xml')
-rw-r--r-- | generic-resource-api/provider/pom.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic-resource-api/provider/pom.xml b/generic-resource-api/provider/pom.xml index 1e6362fc..4f2bc8a9 100644 --- a/generic-resource-api/provider/pom.xml +++ b/generic-resource-api/provider/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>binding-parent</artifactId> - <version>2.3.3</version> + <version>2.4.1</version> <relativePath/> </parent> @@ -16,6 +16,10 @@ <name>sdnc-northbound :: generic-resource-api :: ${project.artifactId}</name> + <properties> + <ccsdk.sli.version>1.5.0-SNAPSHOT</ccsdk.sli.version> + </properties> + <dependencies> <dependency> <groupId>org.onap.sdnc.northbound</groupId> @@ -66,6 +70,7 @@ <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> + <version>3.12.4</version> <scope>test</scope> </dependency> </dependencies> |