Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / netconf-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-api</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>ietf-netconf-monitoring</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>ietf-netconf-monitoring-extension</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>config-api</artifactId>
26     </dependency>
27       <dependency>
28           <groupId>org.opendaylight.controller</groupId>
29           <artifactId>config-manager-facade-xml</artifactId>
30       </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>protocol-framework</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.yangtools.model</groupId>
37       <artifactId>ietf-inet-types</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.yangtools.model</groupId>
41       <artifactId>ietf-yang-types</artifactId>
42     </dependency>
43   </dependencies>
44
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50       </plugin>
51         <plugin>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>yang-maven-plugin</artifactId>
54         </plugin>
55     </plugins>
56   </build>
57
58 </project>