Unify yang-to-sources plugin configuration
[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
43         <dependency>
44             <groupId>org.opendaylight.yangtools.model</groupId>
45             <artifactId>ietf-ted</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools.model</groupId>
49             <artifactId>ietf-topology</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools.model</groupId>
53             <artifactId>ietf-topology-isis</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools.model</groupId>
57             <artifactId>ietf-topology-ospf</artifactId>
58         </dependency>
59
60         <!-- Test dependencies -->
61                 <dependency>
62                         <groupId>${project.groupId}</groupId>
63                         <artifactId>mockito-configuration</artifactId>
64         </dependency>
65         </dependencies>
66
67         <build>
68         <plugins>
69            <plugin>
70                <groupId>org.apache.felix</groupId>
71                <artifactId>maven-bundle-plugin</artifactId>
72                <version>${maven.bundle.version}</version>
73                <extensions>true</extensions>
74                <configuration>
75                    <instructions>
76                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
77                        <Export-Package>
78                            org.opendaylight.bgpcep.bgp.topology.provider
79                        </Export-Package>
80                    </instructions>
81                </configuration>
82            </plugin>
83                 </plugins>
84         </build>
85 </project>