Release netconf
[netconf.git] / netconf / tools / netconf-test-perf / 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     <parent>
6         <groupId>org.opendaylight.netconf</groupId>
7         <artifactId>netconf-parent</artifactId>
8         <version>3.0.9</version>
9         <relativePath>../../../parent/pom.xml</relativePath>
10     </parent>
11     <modelVersion>4.0.0</modelVersion>
12
13     <artifactId>netconf-test-perf</artifactId>
14     <description>NETCONF performance test tools</description>
15     <packaging>bundle</packaging>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.mdsal</groupId>
20             <artifactId>mdsal-dom-api</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.mdsal</groupId>
24             <artifactId>mdsal-dom-spi</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.mdsal</groupId>
28             <artifactId>mdsal-binding-dom-codec-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.mdsal.model</groupId>
32             <artifactId>ietf-topology</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.netconf</groupId>
36             <artifactId>ietf-netconf-notifications</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.netconf</groupId>
40             <artifactId>mdsal-netconf-notification</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.netconf</groupId>
44             <artifactId>netconf-notifications-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.guicedee.services</groupId>
48             <artifactId>javax.inject</artifactId>
49             <optional>true</optional>
50         </dependency>
51         <dependency>
52             <groupId>javax.annotation</groupId>
53             <artifactId>javax.annotation-api</artifactId>
54             <scope>provided</scope>
55             <optional>true</optional>
56         </dependency>
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.service.component.annotations</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.netconf</groupId>
63             <artifactId>sal-netconf-connector</artifactId>
64         </dependency>
65     </dependencies>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.felix</groupId>
71                 <artifactId>maven-bundle-plugin</artifactId>
72                 <extensions>true</extensions>
73                 <configuration>
74                     <instructions>
75                         <Bundle-Name>NETCONF performance test tools</Bundle-Name>
76                     </instructions>
77                 </configuration>
78             </plugin>
79         </plugins>
80     </build>
81 </project>