Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / pcep / segment-routing / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>binding-parent</artifactId>
16         <version>0.9.0-SNAPSHOT</version>
17         <relativePath>../../binding-parent</relativePath>
18     </parent>
19
20    <artifactId>pcep-segment-routing</artifactId>
21    <description>PCE Segment Routing model plugin</description>
22    <packaging>bundle</packaging>
23    <name>${project.artifactId}</name>
24
25    <dependencies>
26        <dependency>
27            <groupId>${project.groupId}</groupId>
28            <artifactId>util</artifactId>
29        </dependency>
30        <dependency>
31            <groupId>${project.groupId}</groupId>
32            <artifactId>pcep-ietf-stateful07</artifactId>
33        </dependency>
34        <dependency>
35            <groupId>${project.groupId}</groupId>
36            <artifactId>pcep-api</artifactId>
37        </dependency>
38        <dependency>
39            <groupId>${project.groupId}</groupId>
40            <artifactId>pcep-spi</artifactId>
41        </dependency>
42        <dependency>
43            <groupId>${project.groupId}</groupId>
44            <artifactId>pcep-impl</artifactId>
45        </dependency>
46        <dependency>
47            <groupId>${project.groupId}</groupId>
48            <artifactId>rsvp-api</artifactId>
49        </dependency>
50        <dependency>
51            <groupId>${project.groupId}</groupId>
52            <artifactId>pcep-topology-api</artifactId>
53        </dependency>
54
55        <dependency>
56            <groupId>org.opendaylight.mdsal</groupId>
57            <artifactId>yang-binding</artifactId>
58        </dependency>
59        <dependency>
60            <groupId>org.opendaylight.yangtools</groupId>
61            <artifactId>yang-common</artifactId>
62        </dependency>
63        <dependency>
64            <groupId>org.opendaylight.yangtools</groupId>
65            <artifactId>concepts</artifactId>
66        </dependency>
67        <dependency>
68            <groupId>org.opendaylight.mdsal.model</groupId>
69            <artifactId>ietf-inet-types-2013-07-15</artifactId>
70        </dependency>
71        <dependency>
72            <groupId>org.opendaylight.mdsal.model</groupId>
73            <artifactId>ietf-topology</artifactId>
74        </dependency>
75        <dependency>
76            <groupId>org.opendaylight.controller</groupId>
77            <artifactId>config-api</artifactId>
78        </dependency>
79
80        <dependency>
81            <groupId>io.netty</groupId>
82            <artifactId>netty-buffer</artifactId>
83        </dependency>
84        <dependency>
85            <groupId>com.google.guava</groupId>
86            <artifactId>guava</artifactId>
87        </dependency>
88        <dependency>
89            <groupId>org.slf4j</groupId>
90            <artifactId>slf4j-api</artifactId>
91        </dependency>
92        <dependency>
93            <groupId>org.osgi</groupId>
94            <artifactId>org.osgi.core</artifactId>
95            <scope>provided</scope>
96        </dependency>
97        <!--test dependencies -->
98        <dependency>
99            <groupId>junit</groupId>
100            <artifactId>junit</artifactId>
101        </dependency>
102        <dependency>
103            <groupId>org.opendaylight.controller</groupId>
104            <artifactId>config-manager</artifactId>
105            <type>test-jar</type>
106        </dependency>
107        <dependency>
108            <groupId>org.opendaylight.controller</groupId>
109            <artifactId>config-manager</artifactId>
110            <scope>test</scope>
111        </dependency>
112        <dependency>
113            <groupId>org.opendaylight.controller</groupId>
114            <artifactId>config-util</artifactId>
115        </dependency>
116        <dependency>
117            <groupId>org.opendaylight.yangtools</groupId>
118            <artifactId>mockito-configuration</artifactId>
119        </dependency>
120        <dependency>
121            <groupId>${project.groupId}</groupId>
122            <artifactId>pcep-spi</artifactId>
123            <type>test-jar</type>
124            <scope>test</scope>
125        </dependency>
126        <dependency>
127            <groupId>${project.groupId}</groupId>
128            <artifactId>testtool-util</artifactId>
129            <scope>test</scope>
130        </dependency>
131        <dependency>
132            <groupId>org.opendaylight.controller</groupId>
133            <artifactId>sal-binding-broker-impl</artifactId>
134            <scope>test</scope>
135        </dependency>
136        <dependency>
137            <groupId>org.opendaylight.controller</groupId>
138            <artifactId>sal-binding-broker-impl</artifactId>
139            <scope>test</scope>
140            <type>test-jar</type>
141        </dependency>
142        <dependency>
143            <groupId>${project.groupId}</groupId>
144            <artifactId>pcep-topology-provider</artifactId>
145            <type>test-jar</type>
146            <scope>test</scope>
147        </dependency>
148        <dependency>
149            <groupId>${project.groupId}</groupId>
150            <artifactId>pcep-topology-provider</artifactId>
151            <scope>test</scope>
152        </dependency>
153    </dependencies>
154
155    <scm>
156        <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
157        <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
158        <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
159        <tag>HEAD</tag>
160    </scm>
161
162    <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
163    <distributionManagement>
164        <site>
165            <id>opendaylight-site</id>
166            <url>${nexus.site.url}/${project.artifactId}/</url>
167        </site>
168    </distributionManagement>
169 </project>