Merge "Option to receive only leaf nodes in websocket notifs"
[netconf.git] / netconf / callhome-provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.mdsal</groupId>
8         <artifactId>binding-parent</artifactId>
9         <version>0.10.0-SNAPSHOT</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>callhome-provider</artifactId>
15     <version>1.2.0-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <dependencyManagement>
19         <dependencies>
20             <dependency>
21                 <groupId>org.opendaylight.netconf</groupId>
22                 <artifactId>netconf-subsystem</artifactId>
23                 <version>${project.version}</version>
24                 <type>pom</type>
25                 <scope>import</scope>
26             </dependency>
27         </dependencies>
28     </dependencyManagement>
29
30     <dependencies>
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>sal-binding-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller</groupId>
37             <artifactId>sal-binding-broker-impl</artifactId>
38             <type>test-jar</type>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.netconf</groupId>
43             <artifactId>netconf-topology</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.netconf</groupId>
47             <artifactId>callhome-protocol</artifactId>
48             <version>${project.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.netconf</groupId>
52             <artifactId>callhome-model</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>org.mockito</groupId>
57             <artifactId>mockito-core</artifactId>
58         </dependency>
59     </dependencies>
60 </project>