Merge changes
[bgpcep.git] / programming / 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>programming-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>programming-spi</artifactId>
14         <description>Programming Service Provider Interface</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>programming-api</artifactId>
25         </dependency>
26
27         <dependency>
28                         <groupId>io.netty</groupId>
29                         <artifactId>netty-common</artifactId>
30                 </dependency>
31
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-binding-api</artifactId>
35             <version>1.0-SNAPSHOT</version>
36         </dependency>
37                 <dependency>
38                         <groupId>com.google.code.findbugs</groupId>
39                         <artifactId>jsr305</artifactId>
40                 </dependency>
41                 <dependency>
42                         <groupId>com.google.guava</groupId>
43                         <artifactId>guava</artifactId>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.slf4j</groupId>
47                         <artifactId>slf4j-api</artifactId>
48         </dependency>
49
50         <!-- Testing dependencies -->
51                 <dependency>
52                         <groupId>${project.groupId}</groupId>
53                         <artifactId>mockito-configuration</artifactId>
54         </dependency>
55         </dependencies>
56
57         <build>
58         <plugins>
59            <plugin>
60                <groupId>org.apache.felix</groupId>
61                <artifactId>maven-bundle-plugin</artifactId>
62                <version>${maven.bundle.version}</version>
63                <extensions>true</extensions>
64                <configuration>
65                    <instructions>
66                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
67                        <Export-Package>
68                            org.opendaylight.bgpcep.programming.spi,
69                        </Export-Package>
70                    </instructions>
71                </configuration>
72            </plugin>
73                 </plugins>
74         </build>
75
76         <distributionManagement>
77                 <site>
78                         <id>${project.artifactId}</id>
79                         <name>PROGRAMMING-SPI Module site</name>
80                         <url>${basedir}/target/site/${project.artifactId}</url>
81                 </site>
82         </distributionManagement>
83
84 </project>