Simplify bundle plugin configuration
[bgpcep.git] / bgp / topology-provider-config / 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     <parent>
6         <groupId>org.opendaylight.bgpcep</groupId>
7         <artifactId>bgp-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9     </parent>
10
11     <modelVersion>4.0.0</modelVersion>
12     <artifactId>bgp-topology-provider-config</artifactId>
13     <description>BGP Topology provider CONFIG</description>
14     <packaging>bundle</packaging>
15     <name>${project.artifactId}</name>
16     <prerequisites>
17         <maven>3.0.4</maven>
18     </prerequisites>
19
20     <dependencies>
21         <dependency>
22             <groupId>${project.groupId}</groupId>
23             <artifactId>bgp-topology-provider</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>topology-api-config</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>config-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-binding-config</artifactId>
36         </dependency>
37     </dependencies>
38
39     <build>
40         <plugins>
41             <plugin>
42                 <groupId>org.opendaylight.yangtools</groupId>
43                 <artifactId>yang-maven-plugin</artifactId>
44             </plugin>
45             <plugin>
46                 <groupId>org.apache.felix</groupId>
47                 <artifactId>maven-bundle-plugin</artifactId>
48                 <extensions>true</extensions>
49                 <configuration>
50                     <instructions>
51                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
52                     </instructions>
53                 </configuration>
54             </plugin>
55         </plugins>
56     </build>
57 </project>