summaryrefslogtreecommitdiffstats
path: root/adaptors/features
diff options
context:
space:
mode:
authorSingal, Kapil (ks220y) <ks220y@att.com>2021-05-13 15:09:28 -0400
committerSingal, Kapil (ks220y) <ks220y@att.com>2021-05-17 10:52:59 -0400
commit7845d9b33a89a1c647dfa20bfefee3599783cae7 (patch)
tree3be5e37a9c916b858002458278a999ca9b8e3974 /adaptors/features
parent557282a4274b7f2849e2433ff3373b43c6a920b3 (diff)
Moving IAAS Adaptor from APPC to CCSDK SLI
Issue-ID: CCSDK-3198 Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com> Change-Id: I24c21a9bebe87bb87eb14bd903ee558c20b45277
Diffstat (limited to 'adaptors/features')
-rw-r--r--adaptors/features/ccsdk-iaas-adaptor/pom.xml45
-rwxr-xr-xadaptors/features/pom.xml1
2 files changed, 46 insertions, 0 deletions
diff --git a/adaptors/features/ccsdk-iaas-adaptor/pom.xml b/adaptors/features/ccsdk-iaas-adaptor/pom.xml
new file mode 100644
index 000000000..60e3fd61d
--- /dev/null
+++ b/adaptors/features/ccsdk-iaas-adaptor/pom.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.onap.ccsdk.parent</groupId>
+ <artifactId>single-feature-parent</artifactId>
+ <version>2.2.0-SNAPSHOT</version>
+ <relativePath/>
+ </parent>
+
+ <groupId>org.onap.ccsdk.sli.adaptors</groupId>
+ <artifactId>ccsdk-iaas-adaptor</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ <packaging>feature</packaging>
+
+ <name>ccsdk-sli-adaptors :: features :: ${project.artifactId}</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.opendaylight.controller</groupId>
+ <artifactId>odl-mdsal-broker</artifactId>
+ <type>xml</type>
+ <classifier>features</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.onap.ccsdk.sli.core</groupId>
+ <artifactId>ccsdk-sli</artifactId>
+ <version>${project.version}</version>
+ <type>xml</type>
+ <classifier>features</classifier>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>iaas-adaptor-bundle</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-api-mockito</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+</project>
diff --git a/adaptors/features/pom.xml b/adaptors/features/pom.xml
index 4cae6a401..0988b1a2e 100755
--- a/adaptors/features/pom.xml
+++ b/adaptors/features/pom.xml
@@ -22,6 +22,7 @@
<module>ccsdk-ansible-adaptor</module>
<module>ccsdk-chef-adaptor</module>
+ <module>ccsdk-iaas-adaptor</module>
<module>ccsdk-netconf-adaptor</module>
<module>ccsdk-rest-adaptor</module>
<module>ccsdk-saltstack-adaptor</module>