Merge "BUG-7758: Fix creation of FLAT and VLAN networks with the same parent"
[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.2.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.2.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.genius</groupId>
28       <artifactId>alivenessmonitor-api</artifactId>
29       <version>${genius.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>liblldp</artifactId>
34       <version>${liblldp.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.genius</groupId>
38       <artifactId>mdsalutil-api</artifactId>
39       <version>${genius.mdsalutil.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.openflowplugin.model</groupId>
43       <artifactId>model-flow-service</artifactId>
44       <version>${openflowplugin.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller.model</groupId>
48       <artifactId>model-inventory</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal.model</groupId>
52       <artifactId>ietf-interfaces</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.genius</groupId>
56       <artifactId>idmanager-api</artifactId>
57       <version>${genius.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal-binding-broker-impl</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>javax.inject</groupId>
65       <artifactId>javax.inject</artifactId>
66     </dependency>
67
68     <!-- Testing Dependencies -->
69     <dependency>
70       <groupId>junit</groupId>
71       <artifactId>junit</artifactId>
72       <scope>test</scope>
73     </dependency>
74
75     <dependency>
76       <groupId>org.mockito</groupId>
77       <artifactId>mockito-core</artifactId>
78       <scope>test</scope>
79     </dependency>
80   </dependencies>
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.maven.plugins</groupId>
85         <artifactId>maven-checkstyle-plugin</artifactId>
86         <configuration>
87           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
88         </configuration>
89       </plugin>
90       <plugin>
91         <groupId>org.apache.aries.blueprint</groupId>
92         <artifactId>blueprint-maven-plugin</artifactId>
93       </plugin>
94     </plugins>
95   </build>
96 </project>