Simplify bundle plugin configuration
[bgpcep.git] / bgp / util / 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-util</artifactId>
14     <description>BGP utilities</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>concepts</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>util</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>bgp-parser-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>bgp-concepts</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>commons-codec</groupId>
40             <artifactId>commons-codec</artifactId>
41             <version>${commonscodec.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>com.google.guava</groupId>
45             <artifactId>guava</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>com.google.code.findbugs</groupId>
49             <artifactId>jsr305</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.slf4j</groupId>
53             <artifactId>slf4j-api</artifactId>
54         </dependency>
55
56         <!-- Test dependencies -->
57         <dependency>
58             <groupId>org.opendaylight.yangtools.model</groupId>
59             <artifactId>ietf-inet-types</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65         </dependency>
66     </dependencies>
67
68     <build>
69         <plugins>
70             <plugin>
71                 <groupId>org.apache.felix</groupId>
72                 <artifactId>maven-bundle-plugin</artifactId>
73                 <extensions>true</extensions>
74                 <configuration>
75                     <instructions>
76                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
77                     </instructions>
78                 </configuration>
79             </plugin>
80         </plugins>
81     </build>
82 </project>