4767f300cf30928dbc3d9a1294cb92cb883b7716
[bgpcep.git] / programming / api / 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>programming-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>programming-api</artifactId>
14         <description>Programming API</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>org.opendaylight.yangtools</groupId>
24             <artifactId>yang-binding</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.yangtools</groupId>
28             <artifactId>yang-common</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools.model</groupId>
32             <artifactId>ietf-inet-types</artifactId>
33         </dependency>
34
35         <!-- Testing dependencies -->
36         <dependency>
37             <groupId>junit</groupId>
38             <artifactId>junit</artifactId>
39         </dependency>
40         </dependencies>
41
42         <build>
43         <plugins>
44            <plugin>
45                <groupId>org.opendaylight.yangtools</groupId>
46                <artifactId>yang-maven-plugin</artifactId>
47            </plugin>
48            <plugin>
49                <groupId>org.apache.felix</groupId>
50                <artifactId>maven-bundle-plugin</artifactId>
51                <extensions>true</extensions>
52                <configuration>
53                    <instructions>
54                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
55                    </instructions>
56                </configuration>
57            </plugin>
58                 </plugins>
59         </build>
60 </project>