Bump versions by 0.1.0 for next dev cycle
[vpnservice.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.vpnservice</groupId>
13         <artifactId>config-parent</artifactId>
14         <version>0.4.0-SNAPSHOT</version>
15         <relativePath>../../commons/config-parent</relativePath>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <groupId>org.opendaylight.vpnservice</groupId>
20     <artifactId>alarmmanager</artifactId>
21     <version>${vpnservices.version}</version>
22     <packaging>bundle</packaging>
23
24     <properties>
25         <maven-bundle-plugin.version>2.5.3</maven-bundle-plugin.version>
26         <osgi.version>5.0.0</osgi.version>
27     </properties>
28     <dependencies>
29         <dependency>
30             <groupId>org.slf4j</groupId>
31             <artifactId>slf4j-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.osgi</groupId>
35             <artifactId>org.osgi.core</artifactId>
36             <version>${osgi.version}</version>
37             <scope>provided</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.vpnservice</groupId>
41             <artifactId>fcaps-api</artifactId>
42             <version>${vpnservices.version}</version>
43         </dependency>
44     </dependencies>
45     <build>
46         <plugins>
47             <plugin>
48                 <groupId>org.apache.felix</groupId>
49                 <artifactId>maven-bundle-plugin</artifactId>
50                 <version>${maven-bundle-plugin.version}</version>
51                 <extensions>true</extensions>
52                 <configuration>
53                     <instructions>
54                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
55                         <Bundle-Version>${project.version}</Bundle-Version>
56                         <Bundle-Activator>org.opendaylight.vpnservice.fcapsmanager.alarmmanager.Activator</Bundle-Activator>
57                         <Export-Package>org.opendaylight.vpnservice.fcapsmanager.alarmmanager*;version=${project.version}</Export-Package>
58                         <Import-Package>*</Import-Package>
59                     </instructions>
60                 </configuration>
61             </plugin>
62         </plugins>
63     </build>
64 </project>