diff options
Diffstat (limited to 'adaptors/features')
-rw-r--r-- | adaptors/features/ccsdk-netconf-adaptor/pom.xml | 39 | ||||
-rwxr-xr-x | adaptors/features/pom.xml | 1 |
2 files changed, 40 insertions, 0 deletions
diff --git a/adaptors/features/ccsdk-netconf-adaptor/pom.xml b/adaptors/features/ccsdk-netconf-adaptor/pom.xml new file mode 100644 index 000000000..f6cb86c10 --- /dev/null +++ b/adaptors/features/ccsdk-netconf-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-netconf-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-dblib</artifactId> + <type>xml</type> + <classifier>features</classifier> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>netconf-adaptor-bundle</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> +</project> diff --git a/adaptors/features/pom.xml b/adaptors/features/pom.xml index 74dd2c2d3..0239755c7 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-netconf-adaptor</module> <module>ccsdk-saltstack-adaptor</module> <module>ccsdk-ssh-adaptor</module> |