Merge "Add JSONRestconfService impl for the restconf Draft18 impl"
[netconf.git] / netconf / netconf-netty-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2014 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
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>bundle-parent</artifactId>
15     <version>2.0.2</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-netty-util</artifactId>
21   <packaging>bundle</packaging>
22   <version>1.3.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.netconf</groupId>
29         <artifactId>netconf-parent</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34
35       <dependency>
36         <groupId>org.opendaylight.netconf</groupId>
37         <artifactId>netconf-subsystem</artifactId>
38         <version>${project.version}</version>
39         <type>pom</type>
40         <scope>import</scope>
41       </dependency>
42
43       <dependency>
44         <groupId>openexi</groupId>
45         <artifactId>nagasena</artifactId>
46         <version>0000.0002.0062.0</version>
47       </dependency>
48       <dependency>
49         <groupId>openexi</groupId>
50         <artifactId>nagasena-rta</artifactId>
51         <version>0000.0002.0062.0</version>
52       </dependency>
53     </dependencies>
54   </dependencyManagement>
55
56   <dependencies>
57     <!-- compile 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-mapping-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>netconf-util</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>com.google.guava</groupId>
72       <artifactId>guava</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>io.netty</groupId>
76       <artifactId>netty-handler</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>config-api</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>protocol-framework</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.apache.sshd</groupId>
88       <artifactId>sshd-core</artifactId>
89       <version>0.14.0</version>
90     </dependency>
91     <dependency>
92       <groupId>openexi</groupId>
93       <artifactId>nagasena</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>openexi</groupId>
97       <artifactId>nagasena-rta</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.slf4j</groupId>
101       <artifactId>slf4j-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>xmlunit</groupId>
105       <artifactId>xmlunit</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.yangtools</groupId>
109       <artifactId>mockito-configuration</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.aaa</groupId>
113       <artifactId>aaa-encrypt-service</artifactId>
114       <version>0.6.0-SNAPSHOT</version>
115     </dependency>
116   </dependencies>
117
118   <build>
119     <plugins>
120       <plugin>
121         <groupId>org.apache.maven.plugins</groupId>
122         <artifactId>maven-jar-plugin</artifactId>
123         <executions>
124           <execution>
125             <goals>
126               <goal>test-jar</goal>
127             </goals>
128             <phase>package</phase>
129           </execution>
130         </executions>
131       </plugin>
132       <plugin>
133         <groupId>org.apache.maven.plugins</groupId>
134         <artifactId>maven-checkstyle-plugin</artifactId>
135         <configuration>
136           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
137         </configuration>
138       </plugin>
139     </plugins>
140   </build>
141
142 </project>