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

128 lines
4.6 KiB
XML
Raw Normal View History

<?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.4</version>
<relativePath />
</parent>
<groupId>com.cmcc.cmhi</groupId>
<artifactId>feature-huawei-driver</artifactId>
<version>0.1.0</version>
<packaging>feature</packaging>
<name>CMCC :: CMHI :: HuaweiDriver</name>
<properties>
<controller.mdsal.version>1.7.4</controller.mdsal.version>
<mdsal.version>2.4.4</mdsal.version>
<mdsal.model.version>0.12.4</mdsal.model.version>
<netconf.version>1.4.4</netconf.version>
<restconf.version>1.7.4</restconf.version>
<yangtools.version>2.0.6.5</yangtools.version>
<dlux.version>0.7.4</dlux.version>
<dluxapps.version>0.7.4</dluxapps.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> -->
<!-- 在karaf中打包 <dependency> <groupId>org.opendaylight.dluxapps</groupId>
<artifactId>features-dluxapps</artifactId> <version>${dlux.version}</version>
<classifier>features</classifier> <type>xml</type> </dependency> -->
<dependency>
<groupId>com.cmcc.cmhi</groupId>
<artifactId>huawei-driver</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>