Release netconf
[netconf.git] / protocol / netconf-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>5.0.4</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>netconf-impl</artifactId>
20   <name>${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>threadpool-config-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.netconf.model</groupId>
34       <artifactId>rfc6022</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>netconf-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>netconf-mapping-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>${project.groupId}</groupId>
46       <artifactId>netconf-notifications-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>netconf-netty-util</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>${project.groupId}</groupId>
54       <artifactId>netconf-util</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>com.guicedee.services</groupId>
58       <artifactId>javax.inject</artifactId>
59       <optional>true</optional>
60     </dependency>
61     <dependency>
62       <groupId>org.osgi</groupId>
63       <artifactId>org.osgi.service.component.annotations</artifactId>
64     </dependency>
65
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>mockito-configuration</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>netconf-client</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>netconf-client</artifactId>
78       <type>test-jar</type>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>netconf-util</artifactId>
84       <type>test-jar</type>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.xmlunit</groupId>
89       <artifactId>xmlunit-legacy</artifactId>
90       <scope>test</scope>
91     </dependency>
92   </dependencies>
93
94   <build>
95     <plugins>
96       <plugin>
97         <groupId>org.apache.felix</groupId>
98         <artifactId>maven-bundle-plugin</artifactId>
99         <configuration>
100           <instructions>
101             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
102           </instructions>
103         </configuration>
104       </plugin>
105       <plugin>
106         <artifactId>maven-jar-plugin</artifactId>
107         <executions>
108           <execution>
109             <goals>
110               <goal>test-jar</goal>
111             </goals>
112           </execution>
113         </executions>
114       </plugin>
115       <plugin>
116         <artifactId>maven-source-plugin</artifactId>
117         <executions>
118           <execution>
119             <goals>
120               <goal>test-jar-no-fork</goal>
121             </goals>
122           </execution>
123         </executions>
124       </plugin>
125     </plugins>
126   </build>
127
128 </project>