e7976f3def6f2c7e421095a62e62fe4739ccfb18
[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.0-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.0-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencyManagement>
25     <dependencies>
26       <dependency>
27         <groupId>org.opendaylight.controller</groupId>
28         <artifactId>config-artifacts</artifactId>
29         <version>0.9.0-SNAPSHOT</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35
36   <dependencies>
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>netconf-api</artifactId>
40     </dependency>
41       <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>netconf-auth</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>netconf-util</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>netconf-impl</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>threadpool-config-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>netty-config-api</artifactId>
60     </dependency>
61
62     <dependency>
63       <groupId>org.opendaylight.mdsal.model</groupId>
64       <artifactId>ietf-inet-types-2013-07-15</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>com.google.guava</groupId>
68       <artifactId>guava</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.slf4j</groupId>
72       <artifactId>slf4j-api</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.yangtools</groupId>
76       <artifactId>mockito-configuration</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>netconf-netty-util</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>netconf-client</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89         <groupId>org.osgi</groupId>
90         <artifactId>org.osgi.compendium</artifactId>
91     </dependency>
92   </dependencies>
93
94   <build>
95     <plugins>
96       <plugin>
97         <groupId>org.apache.felix</groupId>
98         <artifactId>maven-bundle-plugin</artifactId>
99       </plugin>
100       <plugin>
101         <groupId>org.apache.maven.plugins</groupId>
102         <artifactId>maven-jar-plugin</artifactId>
103         <executions>
104           <execution>
105             <goals>
106               <goal>test-jar</goal>
107             </goals>
108             <phase>package</phase>
109           </execution>
110         </executions>
111       </plugin>
112     </plugins>
113   </build>
114
115 </project>