Migrate netconf-server/mapping tests to JUnit5
[netconf.git] / apps / netconf-topology / 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>7.0.6-SNAPSHOT</version>
10         <relativePath>../../parent</relativePath>
11     </parent>
12
13     <artifactId>netconf-topology</artifactId>
14     <description>NETCONF topology APIs</description>
15     <packaging>bundle</packaging>
16
17     <dependencies>
18         <dependency>
19             <groupId>com.guicedee.services</groupId>
20             <artifactId>javax.inject</artifactId>
21             <optional>true</optional>
22         </dependency>
23         <dependency>
24             <groupId>org.bouncycastle</groupId>
25             <artifactId>bcpkix-jdk18on</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.aaa</groupId>
29             <artifactId>aaa-encrypt-service</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal.model</groupId>
33             <artifactId>ietf-topology</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.mdsal.model</groupId>
37             <artifactId>yang-ext</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.netconf</groupId>
41             <artifactId>netconf-client-mdsal</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.osgi</groupId>
45             <artifactId>org.osgi.service.component.annotations</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.osgi</groupId>
49             <artifactId>org.osgi.service.metatype.annotations</artifactId>
50         </dependency>
51
52         <dependency>
53             <groupId>org.awaitility</groupId>
54             <artifactId>awaitility</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.yangtools</groupId>
58             <artifactId>mockito-configuration</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-binding-test-utils</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.netconf</groupId>
66             <artifactId>netconf-test-models</artifactId>
67         </dependency>
68     </dependencies>
69 </project>