Release netconf
[netconf.git] / apps / 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.netconf</groupId>
8         <artifactId>netconf-parent</artifactId>
9         <version>5.0.4</version>
10         <relativePath>../../parent</relativePath>
11     </parent>
12
13     <artifactId>callhome-provider</artifactId>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.mdsal</groupId>
19             <artifactId>mdsal-binding-api</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.netconf</groupId>
23             <artifactId>netconf-topology</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.netconf</groupId>
27             <artifactId>callhome-protocol</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.netconf</groupId>
31             <artifactId>callhome-model</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>com.guicedee.services</groupId>
35             <artifactId>javax.inject</artifactId>
36             <optional>true</optional>
37         </dependency>
38         <dependency>
39             <groupId>jakarta.annotation</groupId>
40             <artifactId>jakarta.annotation-api</artifactId>
41             <scope>provided</scope>
42             <optional>true</optional>
43         </dependency>
44         <dependency>
45             <groupId>org.osgi</groupId>
46             <artifactId>org.osgi.service.component.annotations</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>mdsal-binding-dom-adapter</artifactId>
52             <type>test-jar</type>
53             <scope>test</scope>
54         </dependency>
55     </dependencies>
56 </project>