Remove duplicate models
[bgpcep.git] / bgp / rib-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
6         <parent>
7                 <groupId>org.opendaylight.bgpcep</groupId>
8                 <artifactId>bgp-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>bgp-rib-spi</artifactId>
14         <description>BGP RIB SPI</description>
15         <packaging>bundle</packaging>
16         <name>${project.artifactId}</name>
17         <prerequisites>
18                 <maven>3.0.4</maven>
19         </prerequisites>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>${project.groupId}</groupId>
24                         <artifactId>bgp-parser-api</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>bgp-rib-api</artifactId>
29                 </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>sal-binding-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-binding</artifactId>
37         </dependency>
38
39         <!-- Test dependencies -->
40                 <dependency>
41                         <groupId>org.mockito</groupId>
42                         <artifactId>mockito-core</artifactId>
43                 </dependency>
44                 <dependency>
45                         <groupId>${project.groupId}</groupId>
46                         <artifactId>mockito-configuration</artifactId>
47                 </dependency>
48                 <dependency>
49                         <groupId>junit</groupId>
50                         <artifactId>junit</artifactId>
51                 </dependency>
52         </dependencies>
53
54         <build>
55                 <plugins>
56                         <plugin>
57                                 <groupId>org.apache.felix</groupId>
58                                 <artifactId>maven-bundle-plugin</artifactId>
59                                 <version>${maven.bundle.version}</version>
60                                 <extensions>true</extensions>
61                                 <configuration>
62                                         <instructions>
63                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
64                                                 <Export-Package>
65                                                         org.opendaylight.protocol.bgp.rib.spi
66                                                 </Export-Package>
67                                         </instructions>
68                                 </configuration>
69                         </plugin>
70                 </plugins>
71         </build>
72
73         <distributionManagement>
74                 <site>
75                         <id>${project.artifactId}</id>
76                         <name>BGP-RIB-SPI Module site</name>
77                         <url>${basedir}/target/site/${project.artifactId}</url>
78                 </site>
79         </distributionManagement>
80
81 </project>