Merge "BUG-9048 Fix actor crash when writing incorrect data"
[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.4.0-SNAPSHOT</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.0</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.8.0-SNAPSHOT</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.12.0-SNAPSHOT</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>com.google.guava</groupId>
89       <artifactId>guava</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.slf4j</groupId>
93       <artifactId>slf4j-api</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.yangtools</groupId>
97       <artifactId>mockito-configuration</artifactId>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>netconf-netty-util</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>${project.groupId}</groupId>
106       <artifactId>netconf-client</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110         <groupId>org.osgi</groupId>
111         <artifactId>org.osgi.compendium</artifactId>
112     </dependency>
113   </dependencies>
114
115   <build>
116     <plugins>
117       <plugin>
118         <groupId>org.apache.felix</groupId>
119         <artifactId>maven-bundle-plugin</artifactId>
120         <configuration>
121           <instructions>
122             <Bundle-Activator>org.opendaylight.netconf.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
123           </instructions>
124         </configuration>
125       </plugin>
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-jar-plugin</artifactId>
129         <executions>
130           <execution>
131             <goals>
132               <goal>test-jar</goal>
133             </goals>
134             <phase>package</phase>
135           </execution>
136         </executions>
137       </plugin>
138       <plugin>
139         <groupId>org.apache.maven.plugins</groupId>
140         <artifactId>maven-checkstyle-plugin</artifactId>
141         <configuration>
142           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
143         </configuration>
144       </plugin>
145     </plugins>
146   </build>
147
148 </project>