Bump versions by x.y.(z+1)
[netconf.git] / netconf / callhome-provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.mdsal</groupId>
8         <artifactId>binding-parent</artifactId>
9         <version>0.11.4-SNAPSHOT</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>callhome-provider</artifactId>
15     <version>1.3.4-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <dependencyManagement>
19         <dependencies>
20             <dependency>
21                 <groupId>org.opendaylight.netconf</groupId>
22                 <artifactId>netconf-artifacts</artifactId>
23                 <version>${project.version}</version>
24                 <type>pom</type>
25                 <scope>import</scope>
26             </dependency>
27             <dependency>
28                 <groupId>org.opendaylight.controller</groupId>
29                 <artifactId>mdsal-artifacts</artifactId>
30                 <version>1.6.4-SNAPSHOT</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-binding-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>sal-binding-broker-impl</artifactId>
45             <type>test-jar</type>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.netconf</groupId>
50             <artifactId>netconf-topology</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.netconf</groupId>
54             <artifactId>callhome-protocol</artifactId>
55             <version>${project.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.netconf</groupId>
59             <artifactId>callhome-model</artifactId>
60             <version>${project.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.mockito</groupId>
64             <artifactId>mockito-core</artifactId>
65         </dependency>
66     </dependencies>
67
68     <build>
69         <plugins>
70             <plugin>
71                 <groupId>org.apache.maven.plugins</groupId>
72                 <artifactId>maven-checkstyle-plugin</artifactId>
73                 <configuration>
74                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
75                 </configuration>
76             </plugin>
77         </plugins>
78     </build>
79 </project>