Bump versions by 0.1.0 for next dev cycle
[vpnservice.git] / 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.vpnservice</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.vpnservice</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>${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>${project.groupId}</groupId>
57       <artifactId>itm-api</artifactId>
58       <version>${vpnservices.version}</version>
59     </dependency>
60
61     <!--Dependencies for Unit Test -->
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67
68     <dependency>
69       <groupId>org.mockito</groupId>
70       <artifactId>mockito-all</artifactId>
71       <scope>test</scope>
72     </dependency>
73
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal-binding-broker-impl</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal-binding-broker-impl</artifactId>
82       <version>${mdsal.version}</version>
83       <scope>test</scope>
84       <type>test-jar</type>
85     </dependency>
86         
87         <dependency>
88       <groupId>org.apache.karaf.shell</groupId>
89       <artifactId>org.apache.karaf.shell.console</artifactId>
90           <version>3.0.3</version>
91           <exclusions>
92         <exclusion>
93         <groupId>org.slf4j</groupId>
94         <artifactId>log4j</artifactId>
95         </exclusion>
96         </exclusions>
97    </dependency>
98  <dependency>
99         <groupId>com.codahale.metrics</groupId>
100         <artifactId>metrics-core</artifactId>
101                 <version>3.0.1</version>
102         
103     </dependency>
104         <dependency>
105         <groupId>com.codahale.metrics</groupId>
106         <artifactId>metrics-graphite</artifactId>
107                 <version>3.0.1</version>
108         
109     </dependency>
110
111   </dependencies>
112
113 </project>