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