More missing copyright headers
[bgpcep.git] / pcep / api-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>pcep-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>pcep-api-config</artifactId>
12     <description>PCE Protocol API</description>
13     <packaging>bundle</packaging>
14     <name>${project.artifactId}</name>
15     <prerequisites>
16         <maven>3.0.4</maven>
17     </prerequisites>
18
19     <dependencies>
20         <dependency>
21             <groupId>org.opendaylight.controller</groupId>
22             <artifactId>config-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>pcep-api</artifactId>
27         </dependency>
28     </dependencies>
29
30     <build>
31         <plugins>
32             <plugin>
33                 <groupId>org.opendaylight.yangtools</groupId>
34                 <artifactId>yang-maven-plugin</artifactId>
35             </plugin>
36             <plugin>
37                 <groupId>org.apache.felix</groupId>
38                 <artifactId>maven-bundle-plugin</artifactId>
39                 <extensions>true</extensions>
40                 <configuration>
41                     <instructions>
42                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
43                     </instructions>
44                 </configuration>
45             </plugin>
46         </plugins>
47     </build>
48 </project>