Merge "BUG-218: expose instruction status in MD-SAL"
[bgpcep.git] / programming / impl / 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-impl</artifactId>
14         <description>Programming Implementation</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                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>programming-spi</artifactId>
29         </dependency>
30
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>sal-binding-api</artifactId>
34         </dependency>
35                 <dependency>
36                         <groupId>com.google.code.findbugs</groupId>
37                         <artifactId>jsr305</artifactId>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.slf4j</groupId>
41                         <artifactId>slf4j-api</artifactId>
42                 </dependency>
43                 <dependency>
44                         <groupId>com.google.guava</groupId>
45                         <artifactId>guava</artifactId>
46                 </dependency>
47         <dependency>
48                         <groupId>io.netty</groupId>
49                         <artifactId>netty-common</artifactId>
50         </dependency>
51
52         <!-- Testing dependencies -->
53                 <dependency>
54                         <groupId>${project.groupId}</groupId>
55                         <artifactId>mockito-configuration</artifactId>
56         </dependency>
57         </dependencies>
58
59         <build>
60         <plugins>
61            <plugin>
62                <groupId>org.apache.felix</groupId>
63                <artifactId>maven-bundle-plugin</artifactId>
64                <extensions>true</extensions>
65                <configuration>
66                    <instructions>
67                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
68                        <Export-Package>
69                            org.opendaylight.bgpcep.programming.impl.*,
70                        </Export-Package>
71                    </instructions>
72                </configuration>
73            </plugin>
74                 </plugins>
75         </build>
76 </project>