summaryrefslogtreecommitdiffstats
path: root/adaptors/features
diff options
context:
space:
mode:
authorSingal, Kapil (ks220y) <ks220y@att.com>2021-05-04 12:22:25 -0400
committerSingal, Kapil (ks220y) <ks220y@att.com>2021-05-04 12:22:25 -0400
commit557282a4274b7f2849e2433ff3373b43c6a920b3 (patch)
treeb7c481a3ca3b3cfefa049f0e5fbce05cf273e438 /adaptors/features
parentc6b6d5298f25893c7800fda38dd46f4254b1b47f (diff)
Moving Rest Adaptor from APPC to CCSDK
Issue-ID: CCSDK-3198 Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com> Change-Id: I70868423761ce9b8bf04fba2a46913d6e153a30b
Diffstat (limited to 'adaptors/features')
-rw-r--r--adaptors/features/ccsdk-ansible-adaptor/pom.xml1
-rw-r--r--adaptors/features/ccsdk-netconf-adaptor/pom.xml2
-rw-r--r--adaptors/features/ccsdk-rest-adaptor/pom.xml39
-rw-r--r--adaptors/features/ccsdk-ssh-adaptor/pom.xml1
-rwxr-xr-xadaptors/features/pom.xml1
5 files changed, 41 insertions, 3 deletions
diff --git a/adaptors/features/ccsdk-ansible-adaptor/pom.xml b/adaptors/features/ccsdk-ansible-adaptor/pom.xml
index ebe4bdcf5..afde62eba 100644
--- a/adaptors/features/ccsdk-ansible-adaptor/pom.xml
+++ b/adaptors/features/ccsdk-ansible-adaptor/pom.xml
@@ -38,6 +38,5 @@
</exclusion>
</exclusions>
</dependency>
-
</dependencies>
</project>
diff --git a/adaptors/features/ccsdk-netconf-adaptor/pom.xml b/adaptors/features/ccsdk-netconf-adaptor/pom.xml
index f6cb86c10..1f366b751 100644
--- a/adaptors/features/ccsdk-netconf-adaptor/pom.xml
+++ b/adaptors/features/ccsdk-netconf-adaptor/pom.xml
@@ -26,9 +26,9 @@
<dependency>
<groupId>org.onap.ccsdk.sli.core</groupId>
<artifactId>ccsdk-dblib</artifactId>
+ <version>${project.version}</version>
<type>xml</type>
<classifier>features</classifier>
- <version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
diff --git a/adaptors/features/ccsdk-rest-adaptor/pom.xml b/adaptors/features/ccsdk-rest-adaptor/pom.xml
new file mode 100644
index 000000000..84ebedbf9
--- /dev/null
+++ b/adaptors/features/ccsdk-rest-adaptor/pom.xml
@@ -0,0 +1,39 @@
+<?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-rest-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>rest-adaptor-bundle</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+</project>
diff --git a/adaptors/features/ccsdk-ssh-adaptor/pom.xml b/adaptors/features/ccsdk-ssh-adaptor/pom.xml
index 26f36d694..349dc8c9a 100644
--- a/adaptors/features/ccsdk-ssh-adaptor/pom.xml
+++ b/adaptors/features/ccsdk-ssh-adaptor/pom.xml
@@ -54,5 +54,4 @@
<version>${project.version}</version>
</dependency>
</dependencies>
-
</project>
diff --git a/adaptors/features/pom.xml b/adaptors/features/pom.xml
index 0239755c7..4cae6a401 100755
--- a/adaptors/features/pom.xml
+++ b/adaptors/features/pom.xml
@@ -23,6 +23,7 @@
<module>ccsdk-ansible-adaptor</module>
<module>ccsdk-chef-adaptor</module>
<module>ccsdk-netconf-adaptor</module>
+ <module>ccsdk-rest-adaptor</module>
<module>ccsdk-saltstack-adaptor</module>
<module>ccsdk-ssh-adaptor</module>