Merge "Simplify maven site configuration"
[bgpcep.git] / pcep / 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>pcep-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>pcep-spi</artifactId>
14         <description>PCE Protocol 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>pcep-api</artifactId>
25         </dependency>
26
27                 <dependency>
28                         <groupId>${project.groupId}</groupId>
29                         <artifactId>concepts</artifactId>
30         </dependency>
31
32                 <dependency>
33                         <groupId>org.slf4j</groupId>
34                         <artifactId>slf4j-api</artifactId>
35         </dependency>
36
37         <!-- Testing dependencies -->
38         <dependency>
39             <groupId>junit</groupId>
40             <artifactId>junit</artifactId>
41         </dependency>
42                 <dependency>
43                         <groupId>${project.groupId}</groupId>
44                         <artifactId>mockito-configuration</artifactId>
45         </dependency>
46         </dependencies>
47
48         <build>
49         <plugins>
50            <plugin>
51                <groupId>org.apache.felix</groupId>
52                <artifactId>maven-bundle-plugin</artifactId>
53                <version>${maven.bundle.version}</version>
54                <extensions>true</extensions>
55                <configuration>
56                    <instructions>
57                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
58                        <Export-Package>
59                            org.opendaylight.protocol.pcep.spi,
60                            org.opendaylight.protocol.pcep.spi.pojo,
61                        </Export-Package>
62                    </instructions>
63                </configuration>
64            </plugin>
65                 </plugins>
66         </build>
67 </project>