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