5aaf5ca544ad264b2d99a40633f21b78bf8ef1ca
[bgpcep.git] / bgp / linkstate-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-linkstate-config</artifactId>
13    <description>BGP Linkstate configuration</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>org.opendaylight.controller</groupId>
23          <artifactId>config-api</artifactId>
24       </dependency>
25       <dependency>
26          <groupId>${project.groupId}</groupId>
27          <artifactId>bgp-linkstate</artifactId>
28       </dependency>
29       <dependency>
30          <groupId>${project.groupId}</groupId>
31          <artifactId>bgp-rib-spi</artifactId>
32       </dependency>
33       <dependency>
34          <groupId>${project.groupId}</groupId>
35          <artifactId>bgp-rib-spi-config</artifactId>
36       </dependency>
37       <dependency>
38          <groupId>${project.groupId}</groupId>
39          <artifactId>bgp-parser-spi-config</artifactId>
40       </dependency>
41       <dependency>
42           <groupId>org.slf4j</groupId>
43           <artifactId>slf4j-api</artifactId>
44       </dependency>
45    </dependencies>
46
47    <build>
48       <plugins>
49          <plugin>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-maven-plugin</artifactId>
52          </plugin>
53          <plugin>
54             <groupId>org.apache.felix</groupId>
55             <artifactId>maven-bundle-plugin</artifactId>
56             <extensions>true</extensions>
57             <configuration>
58                <instructions>
59                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
60                </instructions>
61             </configuration>
62          </plugin>
63       </plugins>
64    </build>
65 </project>