Switch to controller-provided protocol framework
[bgpcep.git] / pcep / 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     <modelVersion>4.0.0</modelVersion>
7     <scm>
8         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
9         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
10         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
11         <tag>HEAD</tag>
12     </scm>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>pcep-parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17     </parent>
18
19     <artifactId>pcep-api</artifactId>
20     <description>PCE Protocol API</description>
21     <packaging>bundle</packaging>
22     <name>${project.artifactId}</name>
23     <prerequisites>
24         <maven>3.0.4</maven>
25     </prerequisites>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>concepts</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>util</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>rsvp-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>io.netty</groupId>
42             <artifactId>netty-transport</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>com.google.guava</groupId>
46             <artifactId>guava</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.slf4j</groupId>
50             <artifactId>slf4j-api</artifactId>
51         </dependency>
52
53         <!--
54             FIXME: this is in support of the generated code. This should not
55                    be here, but the plugin should bring it in.
56         -->
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-binding</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>yang-common</artifactId>
64         </dependency>
65
66         <dependency>
67             <groupId>org.opendaylight.controller</groupId>
68             <artifactId>protocol-framework</artifactId>
69         </dependency>
70
71         <!--
72              FIXME: these are IETF models which are pre-generated in SAL infra.
73                     This should not be here, but rather should somehow be
74                     discovered by the plugin.
75         -->
76         <dependency>
77             <groupId>org.opendaylight.yangtools.model</groupId>
78             <artifactId>ietf-inet-types</artifactId>
79         </dependency>
80
81         <!-- Testing dependencies -->
82         <dependency>
83             <groupId>junit</groupId>
84             <artifactId>junit</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.yangtools</groupId>
88             <artifactId>mockito-configuration</artifactId>
89         </dependency>
90     </dependencies>
91
92     <build>
93         <plugins>
94
95             <plugin>
96                 <groupId>org.opendaylight.yangtools</groupId>
97                 <artifactId>yang-maven-plugin</artifactId>
98             </plugin>
99             <plugin>
100                 <groupId>org.apache.felix</groupId>
101                 <artifactId>maven-bundle-plugin</artifactId>
102                 <extensions>true</extensions>
103                 <configuration>
104                     <instructions>
105                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
106                     </instructions>
107                 </configuration>
108             </plugin>
109         </plugins>
110     </build>
111 </project>