Cleanup package imports
[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             <version>${project.version}</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>${project.groupId}</groupId>
29                         <artifactId>bgp-rib-api</artifactId>
30             <version>${project.version}</version>
31                 </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-binding-api</artifactId>
35             <version>1.0-SNAPSHOT</version>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-binding</artifactId>
40             <version>${yang.binding.version}</version>
41         </dependency>
42         
43                 <dependency>
44                         <groupId>org.mockito</groupId>
45                         <artifactId>mockito-core</artifactId>
46             <version>${mockito.version}</version>
47                         <scope>test</scope>
48                 </dependency>
49                 <dependency>
50                         <groupId>${project.groupId}</groupId>
51                         <artifactId>mockito-configuration</artifactId>
52             <version>${project.version}</version>
53                         <scope>test</scope>
54                 </dependency>
55                 <dependency>
56                         <groupId>junit</groupId>
57                         <artifactId>junit</artifactId>
58                         <version>${junit.version}</version>
59                         <scope>test</scope>
60                 </dependency>
61         </dependencies>
62
63         <build>
64                 <plugins>
65                         <plugin>
66                                 <groupId>org.apache.felix</groupId>
67                                 <artifactId>maven-bundle-plugin</artifactId>
68                                 <version>${maven.bundle.version}</version>
69                                 <extensions>true</extensions>
70                                 <configuration>
71                                         <instructions>
72                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
73                                                 <Export-Package>
74                                                         org.opendaylight.protocol.bgp.rib.spi
75                                                 </Export-Package>
76                                         </instructions>
77                                 </configuration>
78                         </plugin>
79                 </plugins>
80         </build>
81
82         <distributionManagement>
83                 <site>
84                         <id>${project.artifactId}</id>
85                         <name>BGP-RIB-SPI Module site</name>
86                         <url>${basedir}/target/site/${project.artifactId}</url>
87                 </site>
88         </distributionManagement>
89
90 </project>