Merge "Add egress split horizon drop flows for external interfaces"
[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.2.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
24     <dependencies>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>fcaps-api</artifactId>
28             <version>${project.version}</version>
29         </dependency>
30     </dependencies>
31     
32     <build>
33         <plugins>
34             <plugin>
35                 <groupId>org.apache.felix</groupId>
36                 <artifactId>maven-bundle-plugin</artifactId>
37                 <extensions>true</extensions>
38                 <configuration>
39                     <instructions>
40                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
41                         <Bundle-Version>${project.version}</Bundle-Version>
42                         <Bundle-Activator>org.opendaylight.genius.fcapsmanager.alarmmanager.Activator</Bundle-Activator>
43                         <Export-Package>org.opendaylight.genius.fcapsmanager.alarmmanager*;version=${project.version}</Export-Package>
44                         <Import-Package>*</Import-Package>
45                     </instructions>
46                 </configuration>
47             </plugin>
48             <plugin>
49               <groupId>org.apache.maven.plugins</groupId>
50               <artifactId>maven-checkstyle-plugin</artifactId>
51               <configuration>
52                 <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
53               </configuration>
54             </plugin>
55         </plugins>
56     </build>
57 </project>