88d2c1bb2808bd0bc1c22b4ab480f0af571c2210
[bgpcep.git] / concepts / 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>protocol-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>concepts</artifactId>
14         <description>Basic protocol concepts</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>util</artifactId>
25                         <version>${project.version}</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>com.google.code.findbugs</groupId>
29                         <artifactId>jsr305</artifactId>
30                         <version>2.0.1</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>com.google.guava</groupId>
34                         <artifactId>guava</artifactId>
35                         <version>${guava.version}</version>
36                 </dependency>
37         </dependencies>
38
39         <build>
40         <plugins>
41                         <plugin>
42                                 <groupId>org.apache.felix</groupId>
43                                 <artifactId>maven-bundle-plugin</artifactId>
44                                 <version>${maven.bundle.version}</version>
45                                 <extensions>true</extensions>
46                                 <configuration>
47                                         <instructions>
48                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
49                                                 <Import-Package>
50                                                         org.opendaylight.protocol.concepts,
51                             org.opendaylight.protocol.util,
52                             com.google.common.base,
53                             com.google.common.collect,
54                             com.google.common.net,
55                             com.google.common.primitives,
56                             com.google.guava;
57                                                 </Import-Package>
58                                                 <Export-Package>
59                             org.opendaylight.protocol.concepts,
60                                                 </Export-Package>
61                                         </instructions>
62                                 </configuration>
63                         </plugin>
64                 </plugins>
65         </build>
66
67         <distributionManagement>
68                 <site>
69                         <id>${project.artifactId}</id>
70                         <name>NPS-CONCEPTS Module site</name>
71                         <url>${basedir}/target/site/${project.artifactId}</url>
72                 </site>
73         </distributionManagement>
74
75 </project>