Bug-5023: Simplify client re-connection strategies
[bgpcep.git] / bgp / bmp-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <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">
12     <modelVersion>4.0.0</modelVersion>
13     <scm>
14         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
15         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
16         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
17         <tag>HEAD</tag>
18     </scm>
19     <parent>
20         <groupId>org.opendaylight.bgpcep</groupId>
21         <artifactId>bgp-parent</artifactId>
22         <version>0.6.0-SNAPSHOT</version>
23     </parent>
24     <artifactId>bgp-bmp-spi</artifactId>
25     <description>BMP SPI</description>
26     <packaging>bundle</packaging>
27     <name>${project.artifactId}</name>
28     <prerequisites>
29         <maven>3.0.4</maven>
30     </prerequisites>
31
32     <dependencies>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>bgp-bmp-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>bgp-parser-spi</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>io.netty</groupId>
43             <artifactId>netty-transport</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.tcpmd5</groupId>
47             <artifactId>tcpmd5-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>io.netty</groupId>
51             <artifactId>netty-buffer</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.google.guava</groupId>
55             <artifactId>guava</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.slf4j</groupId>
59             <artifactId>slf4j-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>concepts</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal.model</groupId>
67             <artifactId>ietf-yang-types</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal.model</groupId>
71             <artifactId>ietf-inet-types</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.osgi</groupId>
75             <artifactId>org.osgi.core</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>util</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>concepts</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>config-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>yang-binding</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>config-util</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.yangtools</groupId>
99             <artifactId>yang-common</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>com.google.code.findbugs</groupId>
103             <artifactId>jsr305</artifactId>
104         </dependency>
105
106         <dependency>
107             <groupId>junit</groupId>
108             <artifactId>junit</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.controller</groupId>
112             <artifactId>config-manager</artifactId>
113             <type>test-jar</type>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.controller</groupId>
118             <artifactId>config-manager</artifactId>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.mockito</groupId>
123             <artifactId>mockito-core</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.yangtools</groupId>
127             <artifactId>mockito-configuration</artifactId>
128         </dependency>
129     </dependencies>
130
131     <build>
132       <plugins>
133           <plugin>
134               <groupId>org.opendaylight.yangtools</groupId>
135               <artifactId>yang-maven-plugin</artifactId>
136           </plugin>
137           <plugin>
138               <groupId>org.apache.felix</groupId>
139               <artifactId>maven-bundle-plugin</artifactId>
140               <extensions>true</extensions>
141               <configuration>
142                   <instructions>
143                       <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
144                   </instructions>
145               </configuration>
146           </plugin>
147       </plugins>
148   </build>
149
150   <!--
151       Maven Site Configuration
152
153       The following configuration is necessary for maven-site-plugin to
154       correctly identify the correct deployment path for OpenDaylight Maven
155       sites.
156   -->
157   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
158
159   <distributionManagement>
160     <site>
161       <id>opendaylight-site</id>
162       <url>${nexus.site.url}/${project.artifactId}/</url>
163     </site>
164   </distributionManagement>
165 </project>