Bump versions by x.y.(z+1)
[netconf.git] / netconf / netconf-notifications-impl / 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     <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>netconf-notifications-impl</artifactId>
20     <version>1.3.4-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22
23     <dependencyManagement>
24         <dependencies>
25             <dependency>
26                 <groupId>org.opendaylight.netconf</groupId>
27                 <artifactId>netconf-artifacts</artifactId>
28                 <version>${project.version}</version>
29                 <type>pom</type>
30                 <scope>import</scope>
31             </dependency>
32             <dependency>
33                 <groupId>org.opendaylight.controller</groupId>
34                 <artifactId>mdsal-artifacts</artifactId>
35                 <version>1.6.4-SNAPSHOT</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39             <dependency>
40                 <groupId>org.opendaylight.mdsal</groupId>
41                 <artifactId>mdsal-artifacts</artifactId>
42                 <version>2.3.4-SNAPSHOT</version>
43                 <type>pom</type>
44                 <scope>import</scope>
45             </dependency>
46             <dependency>
47                 <groupId>org.opendaylight.yangtools</groupId>
48                 <artifactId>yangtools-artifacts</artifactId>
49                 <version>1.2.4-SNAPSHOT</version>
50                 <type>pom</type>
51                 <scope>import</scope>
52             </dependency>
53         </dependencies>
54     </dependencyManagement>
55
56     <dependencies>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>netconf-notifications-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>netconf-util</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-binding-generator-impl</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>netconf-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.mdsal</groupId>
75             <artifactId>mdsal-binding-dom-codec</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>ietf-netconf-notifications</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>com.google.guava</groupId>
83             <artifactId>guava</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.slf4j</groupId>
87             <artifactId>slf4j-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>xmlunit</groupId>
91             <artifactId>xmlunit</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.yangtools</groupId>
95             <artifactId>mockito-configuration</artifactId>
96         </dependency>
97     </dependencies>
98
99     <build>
100         <plugins>
101             <plugin>
102                 <groupId>org.apache.felix</groupId>
103                 <artifactId>maven-bundle-plugin</artifactId>
104                 <configuration>
105                     <instructions>
106                         <Bundle-Activator>org.opendaylight.netconf.notifications.impl.osgi.Activator</Bundle-Activator>
107                         <Export-Package>org.opendaylight.netconf.notifications.impl.*</Export-Package>
108                     </instructions>
109                 </configuration>
110             </plugin>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-checkstyle-plugin</artifactId>
114                 <configuration>
115                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
116                 </configuration>
117             </plugin>
118         </plugins>
119     </build>
120 </project>