Move NetconfHelloMessage to netconf-api
[netconf.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.netconf</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>1.0.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.mdsal.model</groupId>
37       <artifactId>ietf-inet-types</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal.model</groupId>
41       <artifactId>ietf-yang-types</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <artifactId>mockito-configuration</artifactId>
46       <scope>test</scope>
47     </dependency>
48   </dependencies>
49
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.felix</groupId>
54         <artifactId>maven-bundle-plugin</artifactId>
55       </plugin>
56         <plugin>
57             <groupId>org.opendaylight.yangtools</groupId>
58             <artifactId>yang-maven-plugin</artifactId>
59         </plugin>
60     </plugins>
61   </build>
62
63 </project>