Fix missing exports
[bgpcep.git] / bgp / parser-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-parser-spi</artifactId>
14         <description>BGP Parser 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>concepts</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>util</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>${project.groupId}</groupId>
32                         <artifactId>framework</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>${project.groupId}</groupId>
36                         <artifactId>bgp-concepts</artifactId>
37                 </dependency>
38                 <dependency>
39                         <groupId>${project.groupId}</groupId>
40                         <artifactId>bgp-parser-api</artifactId>
41                 </dependency>
42                 <dependency>
43                         <groupId>com.google.guava</groupId>
44                         <artifactId>guava</artifactId>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.slf4j</groupId>
48                         <artifactId>slf4j-api</artifactId>
49         </dependency>
50
51         <!-- FIXME: move into bgp-parser-spi-osgi -->
52         <dependency>
53             <groupId>org.osgi</groupId>
54             <artifactId>org.osgi.core</artifactId>
55         </dependency>
56
57         <!-- Testing dependencies -->
58         <dependency>
59                         <groupId>junit</groupId>
60                         <artifactId>junit</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                                 <version>${maven.bundle.version}</version>
70                                 <extensions>true</extensions>
71                                 <configuration>
72                                         <instructions>
73                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
74                                                 <Export-Package>
75                             org.opendaylight.protocol.bgp.parser.spi,
76                             org.opendaylight.protocol.bgp.parser.spi.osgi,
77                         </Export-Package>
78                         <Private-Package>
79                             org.opendaylight.protocol.bgp.parser.spi.pojo,
80                         </Private-Package>
81                                         </instructions>
82                                 </configuration>
83                         </plugin>
84                 </plugins>
85         </build>
86
87         <distributionManagement>
88                 <site>
89                         <id>${project.artifactId}</id>
90                         <name>BGP-PARSER-SPI Module site</name>
91                         <url>${basedir}/target/site/${project.artifactId}</url>
92                 </site>
93         </distributionManagement>
94
95 </project>