Bump versions by x.(y+1).z for next dev cycle
[genius.git] / fcapsmanager / alarmmanager / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. 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
11     <parent>
12         <groupId>org.opendaylight.genius</groupId>
13         <artifactId>config-parent</artifactId>
14         <version>0.3.0-SNAPSHOT</version>
15         <relativePath>../../commons/config-parent</relativePath>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <groupId>org.opendaylight.genius</groupId>
20     <artifactId>alarmmanager</artifactId>
21     <version>${genius.version}</version>
22     <packaging>bundle</packaging>
23     <!-- <name> formatting is used by autorelease to parse and notify projects on
24          build failure. Please do not modify this unless you have a good reason. -->
25     <name>ODL :: genius :: ${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>fcaps-api</artifactId>
31             <version>${project.version}</version>
32         </dependency>
33     </dependencies>
34
35     <build>
36         <plugins>
37             <plugin>
38                 <groupId>org.apache.felix</groupId>
39                 <artifactId>maven-bundle-plugin</artifactId>
40                 <extensions>true</extensions>
41                 <configuration>
42                     <instructions>
43                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
44                         <Bundle-Version>${project.version}</Bundle-Version>
45                         <Bundle-Activator>org.opendaylight.genius.fcapsmanager.alarmmanager.Activator</Bundle-Activator>
46                         <Export-Package>org.opendaylight.genius.fcapsmanager.alarmmanager*;version=${project.version}</Export-Package>
47                         <Import-Package>*</Import-Package>
48                     </instructions>
49                 </configuration>
50             </plugin>
51             <plugin>
52               <groupId>org.apache.maven.plugins</groupId>
53               <artifactId>maven-checkstyle-plugin</artifactId>
54               <configuration>
55                 <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
56               </configuration>
57             </plugin>
58             <plugin>
59               <groupId>org.codehaus.mojo</groupId>
60               <artifactId>findbugs-maven-plugin</artifactId>
61               <configuration>
62                 <failOnError>true</failOnError>
63               </configuration>
64             </plugin>
65         </plugins>
66     </build>
67 </project>