2ebd6713b8d8264e3229dcd35045a42e0236bdc0
[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>1.6.0-SNAPSHOT</version>
16     <relativePath>../netconf-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-impl</artifactId>
21   <version>1.6.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.controller</groupId>
29         <artifactId>config-artifacts</artifactId>
30         <version>0.10.0-SNAPSHOT</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>ietf-netconf-monitoring</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>ietf-netconf-monitoring-extension</artifactId>
45     </dependency>
46     <!-- compile dependencies -->
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>netconf-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>netconf-mapping-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>netconf-notifications-api</artifactId>
58     </dependency>
59     <dependency>
60        <groupId>${project.groupId}</groupId>
61        <artifactId>netconf-notifications-impl</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>netconf-netty-util</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>netconf-util</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>com.google.guava</groupId>
73       <artifactId>guava</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>threadpool-config-api</artifactId>
78     </dependency>
79     <!-- test dependencies -->
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>mockito-configuration</artifactId>
83     </dependency>
84
85     <dependency>
86       <groupId>org.slf4j</groupId>
87       <artifactId>slf4j-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>netconf-client</artifactId>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>${project.groupId}</groupId>
96       <artifactId>netconf-client</artifactId>
97       <type>test-jar</type>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>netconf-util</artifactId>
103       <type>test-jar</type>
104       <scope>test</scope>
105     </dependency>
106
107     <dependency>
108       <groupId>org.xmlunit</groupId>
109       <artifactId>xmlunit-legacy</artifactId>
110       <scope>test</scope>
111     </dependency>
112   </dependencies>
113
114   <build>
115     <plugins>
116       <plugin>
117         <groupId>org.apache.felix</groupId>
118         <artifactId>maven-bundle-plugin</artifactId>
119         <configuration>
120           <instructions>
121             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
122           </instructions>
123         </configuration>
124       </plugin>
125       <plugin>
126         <groupId>org.apache.maven.plugins</groupId>
127         <artifactId>maven-jar-plugin</artifactId>
128         <executions>
129           <execution>
130             <goals>
131               <goal>test-jar</goal>
132             </goals>
133             <phase>package</phase>
134           </execution>
135         </executions>
136       </plugin>
137     </plugins>
138   </build>
139
140 </project>