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>binding-parent</artifactId>
14         <version>0.10.0-SNAPSHOT</version>
15         <relativePath>../../commons/binding-parent</relativePath>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <groupId>org.opendaylight.genius</groupId>
20     <artifactId>alarmmanager</artifactId>
21     <packaging>bundle</packaging>
22     <!-- <name> formatting is used by autorelease to parse and notify projects on
23          build failure. Please do not modify this unless you have a good reason. -->
24     <name>ODL :: genius :: ${project.artifactId}</name>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>fcaps-api</artifactId>
30             <version>${project.version}</version>
31         </dependency>
32     </dependencies>
33
34     <build>
35         <pluginManagement>
36             <plugins>
37                 <plugin>
38                     <artifactId>maven-checkstyle-plugin</artifactId>
39                     <dependencies>
40                         <dependency>
41                             <groupId>org.opendaylight.genius</groupId>
42                             <artifactId>checkstyle</artifactId>
43                             <version>${project.version}</version>
44                         </dependency>
45                     </dependencies>
46                     <executions>
47                         <execution>
48                             <id>check-databroker</id>
49                             <goals>
50                                 <goal>check</goal>
51                             </goals>
52                             <phase>process-sources</phase>
53                             <configuration>
54                                 <configLocation>databroker-checks.xml</configLocation>
55                                 <includeResources>false</includeResources>
56                                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
57                                 <includeTestResources>false</includeTestResources>
58                                 <sourceDirectories>
59                                     <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
60                                 </sourceDirectories>
61                                 <failsOnError>true</failsOnError>
62                                 <consoleOutput>true</consoleOutput>
63                             </configuration>
64                         </execution>
65                     </executions>
66                 </plugin>
67             </plugins>
68         </pluginManagement>
69         <plugins>
70             <plugin>
71                 <groupId>org.apache.felix</groupId>
72                 <artifactId>maven-bundle-plugin</artifactId>
73                 <extensions>true</extensions>
74                 <configuration>
75                     <instructions>
76                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
77                         <Bundle-Version>${project.version}</Bundle-Version>
78                         <Bundle-Activator>org.opendaylight.genius.fcapsmanager.alarmmanager.Activator</Bundle-Activator>
79                         <Export-Package>org.opendaylight.genius.fcapsmanager.alarmmanager*;version=${project.version}</Export-Package>
80                         <Import-Package>*</Import-Package>
81                     </instructions>
82                 </configuration>
83             </plugin>
84         </plugins>
85     </build>
86 </project>