Cleanup config-parent usage
[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 <!--suppress MavenDuplicateDependenciesInspection -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.genius</groupId>
16     <artifactId>binding-parent</artifactId>
17     <version>0.4.0-SNAPSHOT</version>
18     <relativePath>../../commons/binding-parent</relativePath>
19   </parent>
20
21   <groupId>org.opendaylight.genius</groupId>
22   <artifactId>alivenessmonitor-impl</artifactId>
23   <version>0.4.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <!-- <name> formatting is used by autorelease to parse and notify projects on
26        build failure. Please do not modify this unless you have a good reason. -->
27   <name>ODL :: genius :: ${project.artifactId}</name>
28
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.genius</groupId>
32       <artifactId>alivenessmonitor-api</artifactId>
33       <version>${genius.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>liblldp</artifactId>
38       <version>${liblldp.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.genius</groupId>
42       <artifactId>mdsalutil-api</artifactId>
43       <version>${genius.mdsalutil.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.openflowplugin.model</groupId>
47       <artifactId>model-flow-service</artifactId>
48       <version>${openflowplugin.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller.model</groupId>
52       <artifactId>model-inventory</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.model</groupId>
56       <artifactId>ietf-interfaces</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.genius</groupId>
60       <artifactId>idmanager-api</artifactId>
61       <version>${genius.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>sal-binding-broker-impl</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>javax.inject</groupId>
69       <artifactId>javax.inject</artifactId>
70     </dependency>
71   </dependencies>
72   <build>
73     <plugins>
74 <!-- TODO HwVtepTunnelsStateHandler should not implements AlivenessProtocolHandler but have NOOP return null handlePacketIn() ...
75       <plugin>
76         <groupId>org.codehaus.mojo</groupId>
77         <artifactId>findbugs-maven-plugin</artifactId>
78         <configuration>
79           <failOnError>true</failOnError>
80         </configuration>
81       </plugin>
82   -->
83       <plugin>
84         <groupId>org.apache.aries.blueprint</groupId>
85         <artifactId>blueprint-maven-plugin</artifactId>
86       </plugin>
87     </plugins>
88   </build>
89 </project>