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