e9955fe1886a5a1b766be4622547778900dc384b
[netconf.git] / netconf / 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>4.0.0-SNAPSHOT</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>org.opendaylight.netconf.model</groupId>
26       <artifactId>rfc6022</artifactId>
27     </dependency>
28     <!-- compile dependencies -->
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>netconf-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>netconf-mapping-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>netconf-notifications-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>netconf-netty-util</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>netconf-util</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.google.guava</groupId>
51       <artifactId>guava</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>threadpool-config-api</artifactId>
56     </dependency>
57     <!-- test dependencies -->
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>mockito-configuration</artifactId>
61     </dependency>
62
63     <dependency>
64       <groupId>org.slf4j</groupId>
65       <artifactId>slf4j-api</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>netconf-client</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>${project.groupId}</groupId>
74       <artifactId>netconf-client</artifactId>
75       <type>test-jar</type>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>netconf-util</artifactId>
81       <type>test-jar</type>
82       <scope>test</scope>
83     </dependency>
84
85     <dependency>
86       <groupId>org.xmlunit</groupId>
87       <artifactId>xmlunit-legacy</artifactId>
88       <scope>test</scope>
89     </dependency>
90   </dependencies>
91
92   <build>
93     <plugins>
94       <plugin>
95         <groupId>org.apache.felix</groupId>
96         <artifactId>maven-bundle-plugin</artifactId>
97         <configuration>
98           <instructions>
99             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
100           </instructions>
101         </configuration>
102       </plugin>
103       <plugin>
104         <artifactId>maven-jar-plugin</artifactId>
105         <executions>
106           <execution>
107             <goals>
108               <goal>test-jar</goal>
109             </goals>
110           </execution>
111         </executions>
112       </plugin>
113       <plugin>
114         <artifactId>maven-source-plugin</artifactId>
115         <executions>
116           <execution>
117             <goals>
118               <goal>test-jar-no-fork</goal>
119             </goals>
120           </execution>
121         </executions>
122       </plugin>
123     </plugins>
124   </build>
125
126 </project>