Rename artifacts
[bgpcep.git] / bgp / rib-api / 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>1.0</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>bgp-rib-api</artifactId>
14         <description>BGP RIB API</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>concepts</artifactId>
25                         <version>1.0</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>${project.groupId}</groupId>
29                         <artifactId>bgp-parser-api</artifactId>
30                         <version>1.0</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>${project.groupId}</groupId>
34                         <artifactId>bgp-concepts</artifactId>
35                         <version>1.0</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>${project.groupId}</groupId>
39                         <artifactId>bgp-linkstate</artifactId>
40                         <version>1.0</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>junit</groupId>
44                         <artifactId>junit</artifactId>
45                         <version>${junit.version}</version>
46                         <scope>test</scope>
47                 </dependency>
48         </dependencies>
49
50         <build>
51                 <plugins>
52                         <plugin>
53                                 <groupId>org.apache.felix</groupId>
54                                 <artifactId>maven-bundle-plugin</artifactId>
55                                 <version>${maven.bundle.version}</version>
56                                 <extensions>true</extensions>
57                                 <configuration>
58                                         <instructions>
59                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
60                         <Import-Package>
61                             org.opendaylight.protocol.bgp.concepts,
62                             org.opendaylight.protocol.bgp.linkstate, 
63                             org.opendaylight.protocol.bgp.parser, 
64                             org.opendaylight.protocol.concepts,
65                                                         com.google.common.base,
66                                                         com.google.guava,
67                                                         org.slf4j,
68                                                 </Import-Package>
69                                                 <Export-Package>
70                             org.opendaylight.protocol.bgp.rib,
71                                                 </Export-Package>
72                                         </instructions>
73                                 </configuration>
74                         </plugin>
75                 </plugins>
76         </build>
77
78         <distributionManagement>
79                 <site>
80                         <id>${project.artifactId}</id>
81                         <name>BGP-RIB-API Module site</name>
82                         <url>${basedir}/target/site/${project.artifactId}</url>
83                 </site>
84         </distributionManagement>
85
86 </project>