Pull checkstyle enforcement from parent poms
[netvirt.git] / vpnservice / vpnmanager / vpnmanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2015 - 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
12     <parent>
13         <groupId>org.opendaylight.netvirt</groupId>
14         <artifactId>config-parent</artifactId>
15         <version>0.4.0-SNAPSHOT</version>
16         <relativePath>../../commons/config-parent</relativePath>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>vpnmanager-impl</artifactId>
21
22     <packaging>bundle</packaging>
23     <dependencies>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>vpnmanager-api</artifactId>
27             <version>${vpnservices.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>bgpmanager-api</artifactId>
32             <version>${vpnservices.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>fibmanager-api</artifactId>
37             <version>${vpnservices.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.genius</groupId>
41             <artifactId>mdsalutil-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>interfacemanager-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.genius</groupId>
51             <artifactId>idmanager-api</artifactId>
52             <version>${genius.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.genius</groupId>
56             <artifactId>itm-api</artifactId>
57             <version>${genius.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.genius</groupId>
61             <artifactId>arputil-api</artifactId>
62             <version>${genius.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>neutronvpn-api</artifactId>
67             <version>${vpnservices.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>sal-binding-broker-impl</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>elanmanager-api</artifactId>
76             <version>${vpnservices.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.netvirt</groupId>
80             <artifactId>natservice-api</artifactId>
81             <version>${vpnservices.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.genius</groupId>
85             <artifactId>lockmanager-api</artifactId>
86             <version>${genius.version}</version>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.infrautils</groupId>
90             <artifactId>counters-api</artifactId>
91             <version>${infrautils.version}</version>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.genius</groupId>
95             <artifactId>alivenessmonitor-api</artifactId>
96             <version>${genius.version}</version>
97         </dependency>
98     </dependencies>
99
100     <!--
101         Maven Site Configuration
102
103         The following configuration is necessary for maven-site-plugin to
104         correctly identify the correct deployment path for OpenDaylight Maven
105         sites.
106     -->
107     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
108
109     <distributionManagement>
110         <site>
111             <id>opendaylight-site</id>
112             <url>${nexus.site.url}/${project.artifactId}/</url>
113         </site>
114     </distributionManagement>
115 </project>