Release Boron-SR1
[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.1-Boron-SR1</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>io.netty</groupId>
47             <artifactId>netty-buffer</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>com.google.guava</groupId>
51             <artifactId>guava</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.slf4j</groupId>
55             <artifactId>slf4j-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>concepts</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal.model</groupId>
63             <artifactId>ietf-yang-types-20130715</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal.model</groupId>
67             <artifactId>ietf-inet-types-2013-07-15</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.osgi</groupId>
71             <artifactId>org.osgi.core</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>util</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>concepts</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>config-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.mdsal</groupId>
87             <artifactId>yang-binding</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>config-util</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.yangtools</groupId>
95             <artifactId>yang-common</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>com.google.code.findbugs</groupId>
99             <artifactId>jsr305</artifactId>
100         </dependency>
101
102         <dependency>
103             <groupId>junit</groupId>
104             <artifactId>junit</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.controller</groupId>
108             <artifactId>config-manager</artifactId>
109             <type>test-jar</type>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>config-manager</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.mockito</groupId>
119             <artifactId>mockito-core</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.yangtools</groupId>
123             <artifactId>mockito-configuration</artifactId>
124         </dependency>
125     </dependencies>
126
127     <build>
128       <plugins>
129           <plugin>
130               <groupId>org.apache.felix</groupId>
131               <artifactId>maven-bundle-plugin</artifactId>
132               <extensions>true</extensions>
133               <configuration>
134                   <instructions>
135                       <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
136                   </instructions>
137               </configuration>
138           </plugin>
139       </plugins>
140   </build>
141
142   <!--
143       Maven Site Configuration
144
145       The following configuration is necessary for maven-site-plugin to
146       correctly identify the correct deployment path for OpenDaylight Maven
147       sites.
148   -->
149   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
150
151   <distributionManagement>
152     <site>
153       <id>opendaylight-site</id>
154       <url>${nexus.site.url}/${project.artifactId}/</url>
155     </site>
156   </distributionManagement>
157 </project>