diff options
author | liboNet <libo.zhu@intel.com> | 2019-04-03 02:26:05 +0800 |
---|---|---|
committer | liboNet <libo.zhu@intel.com> | 2019-04-03 02:26:05 +0800 |
commit | 41373a9619308bdbab6a31c02fe3d54e91ac6ee3 (patch) | |
tree | 4e79dc6d6573e9fab2415294e5e926589b0f9827 /artifactbroker/model/pom.xml | |
parent | b852967aa9ebbf7a37e562e562c21b9df76f04d7 (diff) |
add subplugin field support and new Cloud Artifact class
. add subplugin field to integrate with Distribution framework
. add new Cloud Artifact which is to be used by subplugin like k8s
. update test .json file to include reception and forward fields
. add dummy test class to ensure the flow works as expected
. fix typos
Change-Id: I9d69d88e448a18247e19b3b7a6062b20814b5f8c
Issue-ID: MULTICLOUD-512
Signed-off-by: liboNet <libo.zhu@intel.com>
Diffstat (limited to 'artifactbroker/model/pom.xml')
-rw-r--r-- | artifactbroker/model/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/artifactbroker/model/pom.xml b/artifactbroker/model/pom.xml index 21f0ba4..f2c2850 100644 --- a/artifactbroker/model/pom.xml +++ b/artifactbroker/model/pom.xml @@ -29,4 +29,17 @@ <name>${project.artifactId}</name> <description>[${project.parent.artifactId}] module provides the model for policy distribution</description> + <dependencies> + <dependency> + <groupId>org.onap.sdc.sdc-distribution-client</groupId> + <artifactId>sdc-distribution-client</artifactId> + <version>1.3.0</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> </project> |