Bump versions by 0.1.0 for next dev cycle
[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   <groupId>org.opendaylight.netvirt</groupId>
20   <artifactId>bgpmanager-impl</artifactId>
21   <version>${vpnservices.version}</version>
22   <packaging>bundle</packaging>
23   <properties>
24    <codahale.metrics.version>3.0.1</codahale.metrics.version>
25    </properties>
26   <dependencies>
27
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>bgpmanager-api</artifactId>
31       <version>${vpnservices.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.genius</groupId>
35       <artifactId>mdsalutil-api</artifactId>
36       <version>${genius.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>model-bgp</artifactId>
41       <version>${model.bgp.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>fibmanager-api</artifactId>
46       <version>${vpnservices.version}</version>
47     </dependency>
48
49     <dependency>
50       <groupId>org.apache.thrift</groupId>
51       <artifactId>libthrift</artifactId>
52       <version>0.9.1</version>
53     </dependency>
54
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>vpnmanager-api</artifactId>
58       <version>${vpnservices.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.genius</groupId>
62       <artifactId>itm-api</artifactId>
63       <version>${genius.version}</version>
64     </dependency>
65
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-binding-broker-impl</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>sal-binding-broker-impl</artifactId>
74       <version>${mdsal.version}</version>
75       <scope>test</scope>
76       <type>test-jar</type>
77     </dependency>
78         
79         <dependency>
80       <groupId>org.apache.karaf.shell</groupId>
81       <artifactId>org.apache.karaf.shell.console</artifactId>
82           <version>3.0.3</version>
83           <exclusions>
84         <exclusion>
85         <groupId>org.slf4j</groupId>
86         <artifactId>log4j</artifactId>
87         </exclusion>
88         </exclusions>
89    </dependency>
90  <dependency>
91         <groupId>com.codahale.metrics</groupId>
92         <artifactId>metrics-core</artifactId>
93                 <version>3.0.1</version>
94         
95     </dependency>
96         <dependency>
97         <groupId>com.codahale.metrics</groupId>
98         <artifactId>metrics-graphite</artifactId>
99                 <version>3.0.1</version>
100         
101     </dependency>
102
103   </dependencies>
104
105   <!--
106       Maven Site Configuration
107
108       The following configuration is necessary for maven-site-plugin to
109       correctly identify the correct deployment path for OpenDaylight Maven
110       sites.
111   -->
112   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
113
114   <distributionManagement>
115     <site>
116       <id>opendaylight-site</id>
117       <url>${nexus.site.url}/${project.artifactId}/</url>
118     </site>
119   </distributionManagement>
120 </project>