Release Boron-SR1
[bgpcep.git] / bgp / bmp-api / 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-api</artifactId>
25     <description>BMP API</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>org.opendaylight.mdsal.model</groupId>
35             <artifactId>ietf-inet-types-2013-07-15</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.mdsal.model</groupId>
39             <artifactId>ietf-yang-types-20130715</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>io.netty</groupId>
43             <artifactId>netty-transport</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>yang-binding</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>concepts</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-common</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>concepts</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>bgp-concepts</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>bgp-parser-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>bgp-rib-api</artifactId>
76         </dependency>
77     </dependencies>
78
79     <build>
80       <plugins>
81           <plugin>
82               <groupId>org.opendaylight.yangtools</groupId>
83               <artifactId>yang-maven-plugin</artifactId>
84           </plugin>
85           <plugin>
86               <groupId>org.apache.felix</groupId>
87               <artifactId>maven-bundle-plugin</artifactId>
88               <extensions>true</extensions>
89               <configuration>
90                   <instructions>
91                       <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
92                   </instructions>
93               </configuration>
94           </plugin>
95       </plugins>
96   </build>
97
98   <!--
99       Maven Site Configuration
100
101       The following configuration is necessary for maven-site-plugin to
102       correctly identify the correct deployment path for OpenDaylight Maven
103       sites.
104   -->
105   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
106
107   <distributionManagement>
108     <site>
109       <id>opendaylight-site</id>
110       <url>${nexus.site.url}/${project.artifactId}/</url>
111     </site>
112   </distributionManagement>
113 </project>