Merge "Changing Netvirt Classifier Egress service tables"
[genius.git] / alivenessmonitor / alivenessmonitor-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 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"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.genius</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.3.0-SNAPSHOT</version>
17     <relativePath>../../commons/config-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>alivenessmonitor-impl</artifactId>
22   <version>0.3.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: genius :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.genius</groupId>
31       <artifactId>alivenessmonitor-api</artifactId>
32       <version>${genius.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>liblldp</artifactId>
37       <version>${liblldp.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.genius</groupId>
41       <artifactId>mdsalutil-api</artifactId>
42       <version>${genius.mdsalutil.version}</version>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.openflowplugin.model</groupId>
46       <artifactId>model-flow-service</artifactId>
47       <version>${openflowplugin.version}</version>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller.model</groupId>
51       <artifactId>model-inventory</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.mdsal.model</groupId>
55       <artifactId>ietf-interfaces</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.genius</groupId>
59       <artifactId>idmanager-api</artifactId>
60       <version>${genius.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-binding-broker-impl</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>javax.inject</groupId>
68       <artifactId>javax.inject</artifactId>
69     </dependency>
70
71     <!-- Testing Dependencies -->
72     <dependency>
73       <groupId>junit</groupId>
74       <artifactId>junit</artifactId>
75       <scope>test</scope>
76     </dependency>
77
78     <dependency>
79       <groupId>org.mockito</groupId>
80       <artifactId>mockito-core</artifactId>
81       <scope>test</scope>
82     </dependency>
83   </dependencies>
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.maven.plugins</groupId>
88         <artifactId>maven-checkstyle-plugin</artifactId>
89         <configuration>
90           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
91         </configuration>
92       </plugin>
93 <!-- TODO HwVtepTunnelsStateHandler should not implements AlivenessProtocolHandler but have NOOP return null handlePacketIn() ...
94       <plugin>
95         <groupId>org.codehaus.mojo</groupId>
96         <artifactId>findbugs-maven-plugin</artifactId>
97         <configuration>
98           <failOnError>true</failOnError>
99         </configuration>
100       </plugin>
101   -->
102       <plugin>
103         <groupId>org.apache.aries.blueprint</groupId>
104         <artifactId>blueprint-maven-plugin</artifactId>
105       </plugin>
106     </plugins>
107   </build>
108 </project>