Enable NetVirt Maven site
[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.3.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>${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
56     <!--Dependencies for Unit Test -->
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-all</artifactId>
66       <scope>test</scope>
67     </dependency>
68
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>sal-binding-broker-impl</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal-binding-broker-impl</artifactId>
77       <version>${mdsal.version}</version>
78       <scope>test</scope>
79       <type>test-jar</type>
80     </dependency>
81         
82         <dependency>
83       <groupId>org.apache.karaf.shell</groupId>
84       <artifactId>org.apache.karaf.shell.console</artifactId>
85           <version>3.0.3</version>
86           <exclusions>
87         <exclusion>
88         <groupId>org.slf4j</groupId>
89         <artifactId>log4j</artifactId>
90         </exclusion>
91         </exclusions>
92    </dependency>
93  <dependency>
94         <groupId>com.codahale.metrics</groupId>
95         <artifactId>metrics-core</artifactId>
96                 <version>3.0.1</version>
97         
98     </dependency>
99         <dependency>
100         <groupId>com.codahale.metrics</groupId>
101         <artifactId>metrics-graphite</artifactId>
102                 <version>3.0.1</version>
103         
104     </dependency>
105
106   </dependencies>
107
108   <!--
109       Maven Site Configuration
110
111       The following configuration is necessary for maven-site-plugin to
112       correctly identify the correct deployment path for OpenDaylight Maven
113       sites.
114   -->
115   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
116
117   <distributionManagement>
118     <site>
119       <id>opendaylight-site</id>
120       <url>${nexus.site.url}/${project.artifactId}/</url>
121     </site>
122   </distributionManagement>
123 </project>