diff options
author | Ravi Pendurty <ravi.pendurty@highstreet-technologies.com> | 2021-05-18 09:47:00 +0530 |
---|---|---|
committer | Ravi Pendurty <ravi.pendurty@highstreet-technologies.com> | 2021-05-18 09:52:24 +0530 |
commit | caaf7cf0edd7c605c9d57c0470806d2a13ebe773 (patch) | |
tree | c9c5ac7474aa5b19243b9f57d54172f06d5cb0aa /sdnr/wt/mountpoint-state-provider/provider/pom.xml | |
parent | c8b3f59b0bc308e9b715ce88ac83d67959dc112d (diff) |
Fix nullPointerException
IPv4/IPv6 addresses can be used as mountpoint addresses for reporting state changes
Issue-ID: CCSDK-3308
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
Change-Id: I8fda8297a15998a293dbd13da084e4ef2c369705
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt/mountpoint-state-provider/provider/pom.xml')
-rw-r--r-- | sdnr/wt/mountpoint-state-provider/provider/pom.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sdnr/wt/mountpoint-state-provider/provider/pom.xml b/sdnr/wt/mountpoint-state-provider/provider/pom.xml index fc6d7e07e..6323b85c1 100644 --- a/sdnr/wt/mountpoint-state-provider/provider/pom.xml +++ b/sdnr/wt/mountpoint-state-provider/provider/pom.xml @@ -61,19 +61,19 @@ </dependency> <!-- end for testing --> <dependency> - <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> + <groupId>${project.groupId}</groupId> <artifactId>sdnr-wt-common</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> - <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> - <artifactId>sdnr-wt-devicemanager-model</artifactId> + <groupId>${project.groupId}</groupId> + <artifactId>sdnr-wt-devicemanager-core-model</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> - <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> + <groupId>${project.groupId}</groupId> <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId> <version>${project.version}</version> </dependency> |