Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / netconf-mapping-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.4.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>netconf-mapping-api</artifactId>
11
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14
15   <dependencies>
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>netconf-api</artifactId>
19     </dependency>
20       <dependency>
21           <groupId>org.opendaylight.controller</groupId>
22           <artifactId>config-manager-facade-xml</artifactId>
23           <version>0.4.0-SNAPSHOT</version>
24       </dependency>
25
26     <dependency>
27       <groupId>com.google.guava</groupId>
28       <artifactId>guava</artifactId>
29     </dependency>
30   </dependencies>
31
32   <build>
33     <plugins>
34       <plugin>
35         <groupId>org.apache.felix</groupId>
36         <artifactId>maven-bundle-plugin</artifactId>
37       </plugin>
38         <plugin>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>yang-maven-plugin</artifactId>
41         </plugin>
42     </plugins>
43   </build>
44 </project>