Bug-3075: BMP message parsers/serializers 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>io.netty</groupId>
43             <artifactId>netty-handler</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>junit</groupId>
47             <artifactId>junit</artifactId>
48         </dependency>
49     </dependencies>
50
51     <build>
52         <plugins>
53             <plugin>
54                 <groupId>org.apache.felix</groupId>
55                 <artifactId>maven-bundle-plugin</artifactId>
56                 <extensions>true</extensions>
57                 <configuration>
58                     <instructions>
59                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
60                         <Export-Package>
61                             org.opendaylight.protocol.bmp.impl.*,
62                         </Export-Package>
63                     </instructions>
64                 </configuration>
65             </plugin>
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-jar-plugin</artifactId>
69                 <executions>
70                     <execution>
71                         <phase>package</phase>
72                         <goals>
73                             <goal>test-jar</goal>
74                         </goals>
75                     </execution>
76                 </executions>
77             </plugin>
78         </plugins>
79     </build>
80 </project>