BUG 2230: RSVP SPI
[bgpcep.git] / rsvp / spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xmlns="http://maven.apache.org/POM/4.0.0"
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         <artifactId>rsvp-parent</artifactId>
15         <groupId>org.opendaylight.bgpcep</groupId>
16         <version>0.5.0-SNAPSHOT</version>
17     </parent>
18
19
20     <artifactId>rsvp-spi</artifactId>
21     <description>RSVP SPI</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24     <prerequisites>
25         <maven>3.0.4</maven>
26     </prerequisites>
27
28     <dependencies>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>util</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>rsvp-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>pcep-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>com.google.guava</groupId>
43             <artifactId>guava</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.slf4j</groupId>
47             <artifactId>slf4j-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>concepts</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>config-manager</artifactId>
56             <type>test-jar</type>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>config-manager</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>junit</groupId>
66             <artifactId>junit</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>config-util</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.mockito</groupId>
74             <artifactId>mockito-core</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.yangtools</groupId>
78             <artifactId>mockito-configuration</artifactId>
79         </dependency>
80     </dependencies>
81
82     <build>
83         <plugins>
84             <plugin>
85                 <groupId>org.opendaylight.yangtools</groupId>
86                 <artifactId>yang-maven-plugin</artifactId>
87             </plugin>
88             <plugin>
89                 <groupId>org.apache.felix</groupId>
90                 <artifactId>maven-bundle-plugin</artifactId>
91                 <extensions>true</extensions>
92                 <configuration>
93                     <instructions>
94                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
95                     </instructions>
96                 </configuration>
97             </plugin>
98         </plugins>
99     </build>
100 </project>