Bump versions by x.y.(z+1)
[netconf.git] / netconf / netconf-ssh / 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   <parent>
12     <groupId>org.opendaylight.netconf</groupId>
13     <artifactId>netconf-parent</artifactId>
14     <version>1.5.4-SNAPSHOT</version>
15     <relativePath>../netconf-parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-ssh</artifactId>
20   <version>1.5.4-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>netconf-api</artifactId>
28     </dependency>
29       <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>netconf-auth</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>netconf-util</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>netconf-impl</artifactId>
40     </dependency>
41
42     <dependency>
43       <groupId>org.opendaylight.mdsal.model</groupId>
44       <artifactId>ietf-inet-types-2013-07-15</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>com.google.guava</groupId>
48       <artifactId>guava</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.slf4j</groupId>
52       <artifactId>slf4j-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.yangtools</groupId>
56       <artifactId>mockito-configuration</artifactId>
57       <scope>test</scope>
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-client</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69         <groupId>org.osgi</groupId>
70         <artifactId>org.osgi.compendium</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.osgi</groupId>
74       <artifactId>org.osgi.core</artifactId>
75     </dependency>
76   </dependencies>
77
78   <build>
79     <plugins>
80       <plugin>
81         <groupId>org.apache.felix</groupId>
82         <artifactId>maven-bundle-plugin</artifactId>
83       </plugin>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-jar-plugin</artifactId>
87         <executions>
88           <execution>
89             <goals>
90               <goal>test-jar</goal>
91             </goals>
92             <phase>package</phase>
93           </execution>
94         </executions>
95       </plugin>
96     </plugins>
97   </build>
98
99 </project>