Migration to use MD-SAL Project
[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.5.0-SNAPSHOT</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</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.mdsal.model</groupId>
39             <artifactId>ietf-yang-types</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>org.opendaylight.tcpmd5</groupId>
63             <artifactId>tcpmd5-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>bgp-parser-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>bgp-rib-api</artifactId>
72         </dependency>
73     </dependencies>
74
75     <build>
76       <plugins>
77           <plugin>
78               <groupId>org.opendaylight.yangtools</groupId>
79               <artifactId>yang-maven-plugin</artifactId>
80           </plugin>
81           <plugin>
82               <groupId>org.apache.felix</groupId>
83               <artifactId>maven-bundle-plugin</artifactId>
84               <extensions>true</extensions>
85               <configuration>
86                   <instructions>
87                       <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
88                   </instructions>
89               </configuration>
90           </plugin>
91       </plugins>
92   </build>
93
94 </project>