BUG-110 : integration test : pcep message -> topology provider -> md sal
[bgpcep.git] / pcep / topology-provider / 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-topology-provider</artifactId>
14         <description>PCEP Topology Provider</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                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>pcep-topology-api</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>${project.groupId}</groupId>
32                         <artifactId>pcep-topology-spi</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>${project.groupId}</groupId>
36                         <artifactId>programming-api</artifactId>
37                 </dependency>
38                 <dependency>
39                         <groupId>${project.groupId}</groupId>
40                         <artifactId>programming-spi</artifactId>
41                 </dependency>
42                 <dependency>
43                         <groupId>${project.groupId}</groupId>
44                         <artifactId>topology-api</artifactId>
45                 </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-binding-api</artifactId>
49         </dependency>
50                 <dependency>
51                         <groupId>org.slf4j</groupId>
52                         <artifactId>slf4j-api</artifactId>
53         </dependency>
54
55         <!-- Test dependencies -->
56                 <dependency>
57                         <groupId>${project.groupId}</groupId>
58                         <artifactId>mockito-configuration</artifactId>
59         </dependency>
60         <dependency>
61                         <groupId>${project.groupId}</groupId>
62                         <artifactId>pcep-impl</artifactId>
63                         <scope>test</scope>
64                 </dependency>
65         <dependency>
66                         <groupId>junit</groupId>
67                         <artifactId>junit</artifactId>
68                 </dependency>
69         </dependencies>
70
71         <build>
72         <plugins>
73            <plugin>
74                <groupId>org.apache.felix</groupId>
75                <artifactId>maven-bundle-plugin</artifactId>
76                <version>${maven.bundle.version}</version>
77                <extensions>true</extensions>
78                <configuration>
79                    <instructions>
80                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
81                        <Export-Package>
82                            org.opendaylight.bgpcep.pcep.topology.provider
83                        </Export-Package>
84                    </instructions>
85                </configuration>
86            </plugin>
87                 </plugins>
88         </build>
89 </project>