Bump versions by x.y.(z+1)
[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" 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.7</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.netconf</groupId>
20     <artifactId>messagebus-netconf</artifactId>
21     <version>1.3.4-SNAPSHOT</version>
22     <name>${project.artifactId}</name>
23     <packaging>bundle</packaging>
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.controller</groupId>
36                 <artifactId>mdsal-artifacts</artifactId>
37                 <version>1.6.4-SNAPSHOT</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41             <dependency>
42                 <groupId>org.opendaylight.yangtools</groupId>
43                 <artifactId>yangtools-artifacts</artifactId>
44                 <version>1.2.4-SNAPSHOT</version>
45                 <type>pom</type>
46                 <scope>import</scope>
47             </dependency>
48         </dependencies>
49     </dependencyManagement>
50
51     <dependencies>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>ietf-netconf-notifications</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-api</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>sal-core-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>sal-common-util</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-data-impl</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>messagebus-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>messagebus-spi</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>messagebus-util</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>sal-netconf-connector</artifactId>
87         </dependency>
88
89         <!-- Testing Dependencies -->
90         <dependency>
91             <groupId>org.mockito</groupId>
92             <artifactId>mockito-core</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.hamcrest</groupId>
97             <artifactId>hamcrest-core</artifactId>
98         </dependency>
99     </dependencies>
100
101     <build>
102         <plugins>
103             <plugin>
104                 <groupId>org.apache.maven.plugins</groupId>
105                 <artifactId>maven-checkstyle-plugin</artifactId>
106                 <configuration>
107                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112 </project>