diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2018-11-13 13:31:57 -0500 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2018-11-13 13:31:57 -0500 |
commit | 452a3c355a74436457bd526e08c08583e64a7ae0 (patch) | |
tree | da3ffa619e1a99a4bb8db4ab044ec68655b3b2d5 /ms | |
parent | 115a90365564d9cb5a6415f4fa525b999a36b5ea (diff) |
Fix error: cannot access SvcLogicResource in vlan
Since https://gerrit.onap.org/r/#/c/71970/ got merged, transitive
dependency is no longer resolving SvcLogicResource hence we need to
explicitly define it here.
Add dependency as provided so it's available during compilation
Change-Id: I9182eb8e9cfa38f5251faf9fecb4ac4ca13e3148
Issue-ID: CCSDK-653
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
Diffstat (limited to 'ms')
-rw-r--r-- | ms/vlantag-api/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ms/vlantag-api/pom.xml b/ms/vlantag-api/pom.xml index 61b11b29..de5e97a7 100644 --- a/ms/vlantag-api/pom.xml +++ b/ms/vlantag-api/pom.xml @@ -73,6 +73,12 @@ </dependency> <dependency> + <groupId>org.onap.ccsdk.sli.core</groupId> + <artifactId>sli-common</artifactId> + <version>${ccsdk.sli.core.version}</version> + <scope>provided</scope> + </dependency> + <dependency> <groupId>org.onap.ccsdk.sli.adaptors</groupId> <artifactId>resource-assignment-provider</artifactId> <version>${ccsdk.sli.adaptors.version}</version> |