fa77e42e4ce76acfeadd88db6c663f78c2907908
[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.2-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.2-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.2-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-netty-util</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>netconf-util</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>com.google.guava</groupId>
69       <artifactId>guava</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>threadpool-config-api</artifactId>
74     </dependency>
75     <!-- test dependencies -->
76     <dependency>
77       <groupId>org.opendaylight.yangtools</groupId>
78       <artifactId>mockito-configuration</artifactId>
79     </dependency>
80
81     <dependency>
82       <groupId>org.slf4j</groupId>
83       <artifactId>slf4j-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>${project.groupId}</groupId>
87       <artifactId>netconf-client</artifactId>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>${project.groupId}</groupId>
92       <artifactId>netconf-client</artifactId>
93       <type>test-jar</type>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>${project.groupId}</groupId>
98       <artifactId>netconf-util</artifactId>
99       <type>test-jar</type>
100       <scope>test</scope>
101     </dependency>
102
103     <dependency>
104       <groupId>org.xmlunit</groupId>
105       <artifactId>xmlunit-legacy</artifactId>
106       <scope>test</scope>
107     </dependency>
108   </dependencies>
109
110   <build>
111     <plugins>
112       <plugin>
113         <groupId>org.apache.felix</groupId>
114         <artifactId>maven-bundle-plugin</artifactId>
115         <configuration>
116           <instructions>
117             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
118           </instructions>
119         </configuration>
120       </plugin>
121       <plugin>
122         <groupId>org.apache.maven.plugins</groupId>
123         <artifactId>maven-jar-plugin</artifactId>
124         <executions>
125           <execution>
126             <goals>
127               <goal>test-jar</goal>
128             </goals>
129             <phase>package</phase>
130           </execution>
131         </executions>
132       </plugin>
133     </plugins>
134   </build>
135
136 </project>