Fix version warning
[netvirt.git] / vpnservice / bgpmanager / bgpmanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2015 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.netvirt</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <artifactId>bgpmanager-impl</artifactId>
20   <packaging>bundle</packaging>
21   <dependencies>
22
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>bgpmanager-api</artifactId>
26       <version>${vpnservices.version}</version>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.genius</groupId>
30       <artifactId>mdsalutil-api</artifactId>
31       <version>${genius.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>model-bgp</artifactId>
36       <version>${model.bgp.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>fibmanager-api</artifactId>
41       <version>${vpnservices.version}</version>
42     </dependency>
43
44     <dependency>
45       <groupId>org.apache.thrift</groupId>
46       <artifactId>libthrift</artifactId>
47       <version>0.9.1</version>
48     </dependency>
49
50     <dependency>
51       <groupId>${project.groupId}</groupId>
52       <artifactId>vpnmanager-api</artifactId>
53       <version>${vpnservices.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.genius</groupId>
57       <artifactId>itm-api</artifactId>
58       <version>${genius.version}</version>
59     </dependency>
60
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal-binding-broker-impl</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-binding-broker-impl</artifactId>
69       <version>${mdsal.version}</version>
70       <scope>test</scope>
71       <type>test-jar</type>
72     </dependency>
73         
74         <dependency>
75       <groupId>org.apache.karaf.shell</groupId>
76       <artifactId>org.apache.karaf.shell.console</artifactId>
77           <version>3.0.3</version>
78           <exclusions>
79         <exclusion>
80         <groupId>org.slf4j</groupId>
81         <artifactId>log4j</artifactId>
82         </exclusion>
83         </exclusions>
84    </dependency>
85     <dependency>
86       <groupId>io.dropwizard.metrics</groupId>
87       <artifactId>metrics-core</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>io.dropwizard.metrics</groupId>
91       <artifactId>metrics-graphite</artifactId>
92     </dependency>
93
94   </dependencies>
95
96   <!--
97       Maven Site Configuration
98
99       The following configuration is necessary for maven-site-plugin to
100       correctly identify the correct deployment path for OpenDaylight Maven
101       sites.
102   -->
103   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
104
105   <distributionManagement>
106     <site>
107       <id>opendaylight-site</id>
108       <url>${nexus.site.url}/${project.artifactId}/</url>
109     </site>
110   </distributionManagement>
111 </project>