84 lines
3.0 KiB
XML
84 lines
3.0 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.4</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>com.cmcc.cmhi</groupId>
|
|
<artifactId>feature-adaptation-layer</artifactId>
|
|
<version>0.1.0</version>
|
|
<packaging>feature</packaging>
|
|
|
|
<name>CMCC :: CMHI :: AdaptationLayer</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>
|
|
<restconf.version>1.7.4</restconf.version>
|
|
<yangtools.version>2.0.6.5</yangtools.version>
|
|
<configfile.directory>etc/opendaylight/karaf</configfile.directory>
|
|
</properties>
|
|
|
|
<!--<dependencyManagement>
|
|
<dependencies>
|
|
<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>
|
|
</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>com.cmcc.cmhi</groupId>
|
|
<artifactId>adaptation-layer</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|