diff options
Diffstat (limited to 'adaptors/features')
-rw-r--r-- | adaptors/features/ccsdk-ansible-adaptor/pom.xml | 1 | ||||
-rw-r--r-- | adaptors/features/ccsdk-netconf-adaptor/pom.xml | 2 | ||||
-rw-r--r-- | adaptors/features/ccsdk-rest-adaptor/pom.xml | 39 | ||||
-rw-r--r-- | adaptors/features/ccsdk-ssh-adaptor/pom.xml | 1 | ||||
-rwxr-xr-x | adaptors/features/pom.xml | 1 |
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> |