Bump yangtools to 2.0.2
[netconf.git] / netconf / messagebus-netconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>bundle-parent</artifactId>
17         <version>3.0.2</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>messagebus-netconf</artifactId>
23     <version>1.5.0-SNAPSHOT</version>
24     <name>${project.artifactId}</name>
25     <packaging>bundle</packaging>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.netconf</groupId>
31                 <artifactId>netconf-artifacts</artifactId>
32                 <version>${project.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36             <dependency>
37                 <groupId>org.opendaylight.mdsal</groupId>
38                 <artifactId>mdsal-artifacts</artifactId>
39                 <version>2.5.0-SNAPSHOT</version>
40                 <type>pom</type>
41                 <scope>import</scope>
42             </dependency>
43             <dependency>
44                 <groupId>org.opendaylight.controller</groupId>
45                 <artifactId>mdsal-artifacts</artifactId>
46                 <version>1.8.0-SNAPSHOT</version>
47                 <type>pom</type>
48                 <scope>import</scope>
49             </dependency>
50             <dependency>
51                 <groupId>org.opendaylight.yangtools</groupId>
52                 <artifactId>yangtools-artifacts</artifactId>
53                 <version>2.0.2</version>
54                 <type>pom</type>
55                 <scope>import</scope>
56             </dependency>
57         </dependencies>
58     </dependencyManagement>
59
60     <dependencies>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>ietf-netconf-notifications</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.controller</groupId>
67             <artifactId>sal-binding-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>sal-core-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>sal-common-util</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-data-impl</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>messagebus-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>messagebus-spi</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>messagebus-util</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>sal-netconf-connector</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal</groupId>
99             <artifactId>mdsal-binding-dom-codec</artifactId>
100         </dependency>
101
102         <!-- Testing Dependencies -->
103         <dependency>
104             <groupId>org.mockito</groupId>
105             <artifactId>mockito-core</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.hamcrest</groupId>
110             <artifactId>hamcrest-core</artifactId>
111         </dependency>
112     </dependencies>
113
114     <build>
115         <plugins>
116             <plugin>
117                 <groupId>org.apache.maven.plugins</groupId>
118                 <artifactId>maven-checkstyle-plugin</artifactId>
119                 <configuration>
120                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
121                 </configuration>
122             </plugin>
123         </plugins>
124     </build>
125 </project>