2ec2569ac3fe222882ff5713311cb159694589ca
[bgpcep.git] / bgp / 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>bgp-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>bgp-topology-provider</artifactId>
14         <description>BGP 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>bgp-rib-api</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>bgp-linkstate</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>${project.groupId}</groupId>
32                         <artifactId>topology-api</artifactId>
33                 </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>sal-binding-api</artifactId>
37         </dependency>
38                 <dependency>
39                         <groupId>org.slf4j</groupId>
40                         <artifactId>slf4j-api</artifactId>
41         </dependency>
42                 <dependency>
43                         <groupId>com.google.guava</groupId>
44                         <artifactId>guava</artifactId>
45                 </dependency>
46
47         <dependency>
48             <groupId>org.opendaylight.yangtools.model</groupId>
49             <artifactId>ietf-ted</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools.model</groupId>
53             <artifactId>ietf-topology</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools.model</groupId>
57             <artifactId>ietf-topology-isis</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools.model</groupId>
61             <artifactId>ietf-topology-ospf</artifactId>
62         </dependency>
63
64         <!-- Test dependencies -->
65                 <dependency>
66                         <groupId>${project.groupId}</groupId>
67                         <artifactId>mockito-configuration</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                <extensions>true</extensions>
77                <configuration>
78                    <instructions>
79                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
80                    </instructions>
81                </configuration>
82            </plugin>
83                 </plugins>
84         </build>
85 </project>