Bump versions by 0.1.0 for next dev cycle
[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.7.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>com.google.guava</groupId>
39             <artifactId>guava</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.slf4j</groupId>
43             <artifactId>slf4j-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>concepts</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>config-manager</artifactId>
52             <type>test-jar</type>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller</groupId>
57             <artifactId>config-manager</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>config-util</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.mockito</groupId>
70             <artifactId>mockito-core</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.yangtools</groupId>
74             <artifactId>mockito-configuration</artifactId>
75         </dependency>
76     </dependencies>
77
78     <build>
79         <plugins>
80             <plugin>
81                 <groupId>org.opendaylight.yangtools</groupId>
82                 <artifactId>yang-maven-plugin</artifactId>
83             </plugin>
84             <plugin>
85                 <groupId>org.apache.felix</groupId>
86                 <artifactId>maven-bundle-plugin</artifactId>
87                 <extensions>true</extensions>
88                 <configuration>
89                     <instructions>
90                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
91                     </instructions>
92                 </configuration>
93             </plugin>
94         </plugins>
95     </build>
96
97   <!--
98       Maven Site Configuration
99
100       The following configuration is necessary for maven-site-plugin to
101       correctly identify the correct deployment path for OpenDaylight Maven
102       sites.
103   -->
104   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
105
106   <distributionManagement>
107     <site>
108       <id>opendaylight-site</id>
109       <url>${nexus.site.url}/${project.artifactId}/</url>
110     </site>
111   </distributionManagement>
112 </project>