Release Nitrogen
[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.odlparent</groupId>
13     <artifactId>bundle-parent</artifactId>
14     <version>2.0.5</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-ssh</artifactId>
20   <version>1.3.2</version>
21   <name>${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencyManagement>
25     <dependencies>
26       <dependency>
27         <groupId>org.opendaylight.netconf</groupId>
28         <artifactId>netconf-artifacts</artifactId>
29         <version>${project.version}</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33       <dependency>
34         <groupId>org.opendaylight.yangtools</groupId>
35         <artifactId>yangtools-artifacts</artifactId>
36         <version>1.2.2</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40       <dependency>
41         <groupId>org.opendaylight.controller</groupId>
42         <artifactId>config-artifacts</artifactId>
43         <version>0.7.2</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>org.opendaylight.mdsal.model</groupId>
49         <artifactId>mdsal-model-artifacts</artifactId>
50         <version>0.11.2</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54     </dependencies>
55   </dependencyManagement>
56
57   <dependencies>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>netconf-api</artifactId>
61     </dependency>
62       <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>netconf-auth</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>netconf-util</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>netconf-impl</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>threadpool-config-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>netty-config-api</artifactId>
81     </dependency>
82
83     <dependency>
84       <groupId>org.opendaylight.mdsal.model</groupId>
85       <artifactId>ietf-inet-types-2013-07-15</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.bouncycastle</groupId>
89       <artifactId>bcpkix-jdk15on</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.bouncycastle</groupId>
93       <artifactId>bcprov-jdk15on</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>com.google.guava</groupId>
97       <artifactId>guava</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.slf4j</groupId>
101       <artifactId>slf4j-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.yangtools</groupId>
105       <artifactId>mockito-configuration</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>netconf-netty-util</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>${project.groupId}</groupId>
114       <artifactId>netconf-client</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118         <groupId>org.osgi</groupId>
119         <artifactId>org.osgi.compendium</artifactId>
120     </dependency>
121   </dependencies>
122
123   <build>
124     <plugins>
125       <plugin>
126         <groupId>org.apache.felix</groupId>
127         <artifactId>maven-bundle-plugin</artifactId>
128         <configuration>
129           <instructions>
130             <Bundle-Activator>org.opendaylight.netconf.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
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       <plugin>
147         <groupId>org.apache.maven.plugins</groupId>
148         <artifactId>maven-checkstyle-plugin</artifactId>
149         <configuration>
150           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
151         </configuration>
152       </plugin>
153     </plugins>
154   </build>
155
156 </project>