Merge "Add JSONRestconfService impl for the restconf Draft18 impl"
[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.2</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-ssh</artifactId>
20   <version>1.3.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-subsystem</artifactId>
29         <version>${project.version}</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>org.bouncycastle</groupId>
68       <artifactId>bcpkix-jdk15on</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.bouncycastle</groupId>
72       <artifactId>bcprov-jdk15on</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>com.google.guava</groupId>
76       <artifactId>guava</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.slf4j</groupId>
80       <artifactId>slf4j-api</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.yangtools</groupId>
84       <artifactId>mockito-configuration</artifactId>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>${project.groupId}</groupId>
89       <artifactId>netconf-netty-util</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>${project.groupId}</groupId>
93       <artifactId>netconf-client</artifactId>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97         <groupId>org.osgi</groupId>
98         <artifactId>org.osgi.compendium</artifactId>
99     </dependency>
100   </dependencies>
101
102   <build>
103     <plugins>
104       <plugin>
105         <groupId>org.apache.felix</groupId>
106         <artifactId>maven-bundle-plugin</artifactId>
107         <configuration>
108           <instructions>
109             <Bundle-Activator>org.opendaylight.netconf.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
110           </instructions>
111         </configuration>
112       </plugin>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-jar-plugin</artifactId>
116         <executions>
117           <execution>
118             <goals>
119               <goal>test-jar</goal>
120             </goals>
121             <phase>package</phase>
122           </execution>
123         </executions>
124       </plugin>
125       <plugin>
126           <groupId>org.opendaylight.yangtools</groupId>
127           <artifactId>yang-maven-plugin</artifactId>
128       </plugin>
129       <plugin>
130         <groupId>org.apache.maven.plugins</groupId>
131         <artifactId>maven-checkstyle-plugin</artifactId>
132         <configuration>
133           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
134         </configuration>
135       </plugin>
136     </plugins>
137   </build>
138
139 </project>