e85706193c60e5d1ee16ad96618685cca32c80be
[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.9.0-SNAPSHOT</version>
18     <relativePath>../../commons/binding-parent</relativePath>
19   </parent>
20
21   <artifactId>alivenessmonitor-impl</artifactId>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: genius :: ${project.artifactId}</name>
26
27   <dependencies>
28     <dependency>
29       <groupId>org.opendaylight.genius</groupId>
30       <artifactId>alivenessmonitor-api</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.serviceutils</groupId>
35       <artifactId>listener-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.genius</groupId>
39       <artifactId>mdsalutil-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.openflowplugin.model</groupId>
43       <artifactId>model-flow-service</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.openflowplugin.libraries</groupId>
47       <artifactId>liblldp</artifactId>
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</groupId>
55       <artifactId>mdsal-binding-util</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
59       <artifactId>rfc7223</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.genius</groupId>
63       <artifactId>idmanager-api</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.genius</groupId>
67       <artifactId>ipv6util-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>javax.inject</groupId>
71       <artifactId>javax.inject</artifactId>
72       <optional>true</optional>
73     </dependency>
74     <dependency>
75       <groupId>javax.annotation</groupId>
76       <artifactId>javax.annotation-api</artifactId>
77       <optional>true</optional>
78     </dependency>
79     <dependency>
80       <groupId>org.apache.aries.blueprint</groupId>
81       <artifactId>blueprint-maven-plugin-annotation</artifactId>
82       <optional>true</optional>
83     </dependency>
84   </dependencies>
85   <build>
86     <plugins>
87       <plugin>
88         <groupId>org.apache.aries.blueprint</groupId>
89         <artifactId>blueprint-maven-plugin</artifactId>
90         <configuration>
91           <scanPaths>org.opendaylight.genius.alivenessmonitor</scanPaths>
92         </configuration>
93       </plugin>
94     </plugins>
95   </build>
96 </project>