secgateway/ControlPlatform/driver-layer/features/huawei-driver/pom.xml

121 lines
4.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright © 2019 CMCC Corporation and others. All rights reserved. This
program and the accompanying materials are made available under the terms
of the Eclipse Public License v1.0 which accompanies this distribution, and
is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL -->
<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.opendaylight.odlparent</groupId>
<artifactId>single-feature-parent</artifactId>
<version>3.1.7</version>
<relativePath />
</parent>
<groupId>com.cmcc.cmhi</groupId>
<artifactId>feature-huawei-driver</artifactId>
<version>0.1.1</version>
<packaging>feature</packaging>
<name>CMCC :: CMHI :: HuaweiDriver</name>
<properties>
<controller.mdsal.version>1.8.3</controller.mdsal.version>
<mdsal.version>2.5.3</mdsal.version>
<netconf.version>1.5.3</netconf.version>
<restconf.version>1.8.3</restconf.version>
<yangtools.version>2.0.20</yangtools.version>
<configfile.directory>etc/opendaylight/karaf</configfile.directory>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.opendaylight.netconf</groupId>
<artifactId>netconf-artifacts</artifactId>
<version>${netconf.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.opendaylight.netconf</groupId>
<artifactId>restconf-artifacts</artifactId>
<version>${restconf.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.opendaylight.netconf</groupId>
<artifactId>sal-rest-docgen</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>features-yangtools</artifactId>
<classifier>features</classifier>
<version>${yangtools.version}</version>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>features-mdsal</artifactId>
<classifier>features</classifier>
<version>${controller.mdsal.version}</version>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opendaylight.netconf</groupId>
<artifactId>features-restconf</artifactId>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opendaylight.netconf</groupId>
<artifactId>features-netconf-connector</artifactId>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.opendaylight.netconf</groupId>
<artifactId>features-netconf</artifactId>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<!-- <dependency> <groupId>org.opendaylight.netconf</groupId> <artifactId>odl-config-netconf-connector</artifactId>
<version>${netconf.version}</version> <type>xml</type> <classifier>features</classifier>
</dependency> -->
<!-- Netconf will not provide schemas without monitoring -->
<!--<dependency>-->
<!--<groupId>org.opendaylight.controller</groupId>-->
<!--<artifactId>config-manager-facade-xml</artifactId>-->
<!--<version>0.8.4</version>-->
<!--</dependency>-->
<!-- <dependency> <groupId>org.opendaylight.netconf</groupId> <artifactId>odl-netconf-monitoring</artifactId>
<version>${netconf.version}</version> <type>xml</type> <classifier>features</classifier>
</dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>odl-netconf-console</artifactId>
<version>${netconf.version}</version> <type>xml</type> <classifier>features</classifier>
</dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>odl-netconf-topology</artifactId>
<version>${netconf.version}</version> <type>xml</type> <classifier>features</classifier>
</dependency> -->
<dependency>
<groupId>com.cmcc.cmhi</groupId>
<artifactId>huawei-driver</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>