Remove duplicate models
[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                <version>${maven.bundle.version}</version>
52                <extensions>true</extensions>
53                <configuration>
54                    <instructions>
55                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
56                        <Export-Package>
57                            org.opendaylight.bgpcep.programming,
58                            org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.*,
59                        </Export-Package>
60                    </instructions>
61                </configuration>
62            </plugin>
63                 </plugins>
64         </build>
65
66         <distributionManagement>
67                 <site>
68                         <id>${project.artifactId}</id>
69                         <name>PROGRAMMING-API Module site</name>
70                         <url>${basedir}/target/site/${project.artifactId}</url>
71                 </site>
72         </distributionManagement>
73
74 </project>