ce54976688022581065bb3179485710906eabf68
[bgpcep.git] / bgp / util / pom.xml
1 <?xml version="1.0"?>
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-util</artifactId>
14         <description>BGP utilities</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>1.0</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>${project.groupId}</groupId>
29                         <artifactId>bgp-linkstate</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>com.google.guava</groupId>
39                         <artifactId>guava</artifactId>
40                         <version>${guava.version}</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>com.google.code.findbugs</groupId>
44                         <artifactId>jsr305</artifactId>
45                         <version>2.0.1</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>org.slf4j</groupId>
49                         <artifactId>slf4j-api</artifactId>
50                         <version>${slf4j.version}</version>
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.util,
66                                                 </Export-Package>
67                                                 <Import-Package>
68                                                         org.opendaylight.protocol.bgp.concepts,
69                             org.opendaylight.protocol.bgp.linkstate,
70                                                         org.opendaylight.protocol.bgp.parser,
71                                                         org.opendaylight.protocol.concepts,
72                             org.opendaylight.protocol.util,
73                                                         com.google.common.*, 
74                                                         org.opendaylight.protocol.concepts, 
75                                                         org.apache.commons.*,
76                                                         org.slf4j
77                                                 </Import-Package>
78                                         </instructions>
79                                 </configuration>
80                         </plugin>
81                 </plugins>
82         </build>
83
84         <distributionManagement>
85                 <site>
86                         <id>${project.artifactId}</id>
87                         <name>BGP-UTIL Module site</name>
88                         <url>${basedir}/target/site/${project.artifactId}</url>
89                 </site>
90         </distributionManagement>
91
92 </project>