Bump netconf to use yangtools 1.2.0
[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.4</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.4.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.netconf</groupId>
29         <artifactId>netconf-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.yangtools</groupId>
36         <artifactId>yangtools-artifacts</artifactId>
37         <version>1.2.0</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41       <dependency>
42         <groupId>openexi</groupId>
43         <artifactId>nagasena</artifactId>
44         <version>0000.0002.0062.0</version>
45       </dependency>
46       <dependency>
47         <groupId>openexi</groupId>
48         <artifactId>nagasena-rta</artifactId>
49         <version>0000.0002.0062.0</version>
50       </dependency>
51     </dependencies>
52   </dependencyManagement>
53
54   <dependencies>
55     <!-- compile dependencies -->
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>netconf-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>netconf-mapping-api</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>netconf-util</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>com.google.guava</groupId>
70       <artifactId>guava</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>io.netty</groupId>
74       <artifactId>netty-handler</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.apache.sshd</groupId>
78       <artifactId>sshd-core</artifactId>
79       <version>0.14.0</version>
80     </dependency>
81     <dependency>
82       <groupId>openexi</groupId>
83       <artifactId>nagasena</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>openexi</groupId>
87       <artifactId>nagasena-rta</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.slf4j</groupId>
91       <artifactId>slf4j-api</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>xmlunit</groupId>
95       <artifactId>xmlunit</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.yangtools</groupId>
99       <artifactId>mockito-configuration</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.aaa</groupId>
103       <artifactId>aaa-encrypt-service</artifactId>
104       <version>0.7.0-SNAPSHOT</version>
105     </dependency>
106   </dependencies>
107
108   <build>
109     <plugins>
110       <plugin>
111         <groupId>org.apache.maven.plugins</groupId>
112         <artifactId>maven-jar-plugin</artifactId>
113         <executions>
114           <execution>
115             <goals>
116               <goal>test-jar</goal>
117             </goals>
118             <phase>package</phase>
119           </execution>
120         </executions>
121       </plugin>
122       <plugin>
123         <groupId>org.apache.maven.plugins</groupId>
124         <artifactId>maven-checkstyle-plugin</artifactId>
125         <configuration>
126           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
127         </configuration>
128       </plugin>
129     </plugins>
130   </build>
131
132 </project>