Bug-3075: BMP session implementation
[bgpcep.git] / bgp / bmp-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <scm>
7         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
8         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
9         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
10         <tag>HEAD</tag>
11     </scm>
12
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>bgp-parent</artifactId>
16         <version>0.5.0-SNAPSHOT</version>
17     </parent>
18
19     <artifactId>bgp-bmp-impl</artifactId>
20     <packaging>bundle</packaging>
21     <name>${project.artifactId}</name>
22     <prerequisites>
23         <maven>3.0.4</maven>
24     </prerequisites>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>bgp-bmp-api</artifactId>
30             <version>${project.version}</version>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-bmp-spi</artifactId>
35             <version>${project.version}</version>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>util</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>bgp-parser-impl</artifactId>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>io.netty</groupId>
48             <artifactId>netty-handler</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>junit</groupId>
52             <artifactId>junit</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.mockito</groupId>
56             <artifactId>mockito-core</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>mockito-configuration</artifactId>
61         </dependency>
62     </dependencies>
63
64     <build>
65         <plugins>
66             <plugin>
67                 <groupId>org.apache.felix</groupId>
68                 <artifactId>maven-bundle-plugin</artifactId>
69                 <extensions>true</extensions>
70                 <configuration>
71                     <instructions>
72                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
73                         <Export-Package>
74                             org.opendaylight.protocol.bmp.impl.*,
75                         </Export-Package>
76                     </instructions>
77                 </configuration>
78             </plugin>
79           <plugin>
80               <groupId>org.opendaylight.yangtools</groupId>
81               <artifactId>yang-maven-plugin</artifactId>
82           </plugin>
83         </plugins>
84     </build>
85 </project>