d90d3d9018f15d993f22060d9c528f5267a15790
[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     <dependency>
113       <groupId>org.osgi</groupId>
114       <artifactId>org.osgi.compendium</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>org.osgi</groupId>
118       <artifactId>org.osgi.core</artifactId>
119     </dependency>
120   </dependencies>
121
122   <build>
123     <plugins>
124       <plugin>
125         <groupId>org.apache.felix</groupId>
126         <artifactId>maven-bundle-plugin</artifactId>
127         <configuration>
128           <instructions>
129             <Bundle-Activator>org.opendaylight.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
130             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
131           </instructions>
132         </configuration>
133       </plugin>
134       <plugin>
135         <groupId>org.apache.maven.plugins</groupId>
136         <artifactId>maven-jar-plugin</artifactId>
137         <executions>
138           <execution>
139             <goals>
140               <goal>test-jar</goal>
141             </goals>
142             <phase>package</phase>
143           </execution>
144         </executions>
145       </plugin>
146     </plugins>
147   </build>
148
149 </project>