Bump versions by x.y.(z+1)
[netconf.git] / netconf / mdsal-netconf-notification / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 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     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>bundle-parent</artifactId>
14         <version>2.0.7</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.netconf</groupId>
19     <artifactId>mdsal-netconf-notification</artifactId>
20     <version>1.3.4-SNAPSHOT</version>
21     <name>${project.artifactId}</name>
22     <packaging>bundle</packaging>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.opendaylight.netconf</groupId>
28                 <artifactId>netconf-artifacts</artifactId>
29                 <version>${project.version}</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33             <dependency>
34                 <groupId>org.opendaylight.controller</groupId>
35                 <artifactId>mdsal-artifacts</artifactId>
36                 <version>1.6.4-SNAPSHOT</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40             <dependency>
41                 <groupId>org.opendaylight.yangtools</groupId>
42                 <artifactId>yangtools-artifacts</artifactId>
43                 <version>1.2.4-SNAPSHOT</version>
44                 <type>pom</type>
45                 <scope>import</scope>
46             </dependency>
47         </dependencies>
48     </dependencyManagement>
49
50     <dependencies>
51         <!-- compile dependencies -->
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>netconf-mapping-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>netconf-notifications-impl</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>netconf-notifications-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>sal-binding-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>sal-common-util</artifactId>
71         </dependency>
72
73         <dependency>
74             <groupId>org.slf4j</groupId>
75             <artifactId>slf4j-api</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>com.google.guava</groupId>
79             <artifactId>guava</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>mockito-configuration</artifactId>
84         </dependency>
85     </dependencies>
86
87     <build>
88         <plugins>
89             <plugin>
90                 <groupId>org.apache.felix</groupId>
91                 <artifactId>maven-bundle-plugin</artifactId>
92                 <extensions>true</extensions>
93                 <configuration>
94                     <instructions>
95                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
96                         <Embed-Dependency>netconf-notifications-impl</Embed-Dependency>
97                     </instructions>
98                 </configuration>
99             </plugin>
100             <plugin>
101                 <groupId>org.apache.maven.plugins</groupId>
102                 <artifactId>maven-checkstyle-plugin</artifactId>
103                 <configuration>
104                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
105                 </configuration>
106             </plugin>
107         </plugins>
108     </build>
109 </project>