Bump versions by 0.1.0 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"
11    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12    <modelVersion>4.0.0</modelVersion>
13    <scm>
14       <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
15       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
16       <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
17       <tag>HEAD</tag>
18    </scm>
19    <parent>
20       <groupId>org.opendaylight.bgpcep</groupId>
21       <artifactId>pcep-parent</artifactId>
22       <version>0.7.0-SNAPSHOT</version>
23    </parent>
24    <artifactId>pcep-segment-routing</artifactId>
25    <description>PCE Segment Routing model plugin</description>
26    <packaging>bundle</packaging>
27    <name>${project.artifactId}</name>
28    <prerequisites>
29       <maven>3.0.4</maven>
30    </prerequisites>
31
32    <dependencies>
33       <dependency>
34          <groupId>${project.groupId}</groupId>
35          <artifactId>util</artifactId>
36       </dependency>
37       <dependency>
38          <groupId>${project.groupId}</groupId>
39          <artifactId>pcep-ietf-stateful07</artifactId>
40       </dependency>
41       <dependency>
42          <groupId>${project.groupId}</groupId>
43          <artifactId>pcep-api</artifactId>
44       </dependency>
45       <dependency>
46          <groupId>${project.groupId}</groupId>
47          <artifactId>pcep-spi</artifactId>
48       </dependency>
49       <dependency>
50          <groupId>${project.groupId}</groupId>
51          <artifactId>pcep-impl</artifactId>
52       </dependency>
53       <dependency>
54          <groupId>${project.groupId}</groupId>
55          <artifactId>rsvp-api</artifactId>
56       </dependency>
57       <dependency>
58          <groupId>${project.groupId}</groupId>
59          <artifactId>pcep-topology-api</artifactId>
60       </dependency>
61
62       <dependency>
63          <groupId>org.opendaylight.mdsal</groupId>
64          <artifactId>yang-binding</artifactId>
65       </dependency>
66       <dependency>
67          <groupId>org.opendaylight.yangtools</groupId>
68          <artifactId>yang-common</artifactId>
69       </dependency>
70       <dependency>
71          <groupId>org.opendaylight.yangtools</groupId>
72          <artifactId>concepts</artifactId>
73       </dependency>
74       <dependency>
75          <groupId>org.opendaylight.mdsal.model</groupId>
76          <artifactId>ietf-inet-types-2013-07-15</artifactId>
77       </dependency>
78       <dependency>
79          <groupId>org.opendaylight.mdsal.model</groupId>
80          <artifactId>ietf-topology</artifactId>
81       </dependency>
82       <dependency>
83           <groupId>org.opendaylight.controller</groupId>
84           <artifactId>config-api</artifactId>
85       </dependency>
86
87       <dependency>
88           <groupId>io.netty</groupId>
89           <artifactId>netty-buffer</artifactId>
90       </dependency>
91       <dependency>
92          <groupId>com.google.guava</groupId>
93          <artifactId>guava</artifactId>
94       </dependency>
95       <dependency>
96          <groupId>org.slf4j</groupId>
97          <artifactId>slf4j-api</artifactId>
98       </dependency>
99       <dependency>
100          <groupId>org.osgi</groupId>
101          <artifactId>org.osgi.core</artifactId>
102          <scope>provided</scope>
103       </dependency>
104       <!--test dependencies -->
105       <dependency>
106          <groupId>junit</groupId>
107          <artifactId>junit</artifactId>
108       </dependency>
109       <dependency>
110          <groupId>org.opendaylight.controller</groupId>
111          <artifactId>config-manager</artifactId>
112          <type>test-jar</type>
113       </dependency>
114       <dependency>
115          <groupId>org.opendaylight.controller</groupId>
116          <artifactId>config-manager</artifactId>
117          <scope>test</scope>
118       </dependency>
119       <dependency>
120          <groupId>org.opendaylight.controller</groupId>
121          <artifactId>config-util</artifactId>
122       </dependency>
123       <dependency>
124          <groupId>org.opendaylight.yangtools</groupId>
125          <artifactId>mockito-configuration</artifactId>
126       </dependency>
127       <dependency>
128          <groupId>${project.groupId}</groupId>
129          <artifactId>pcep-spi</artifactId>
130          <type>test-jar</type>
131          <scope>test</scope>
132       </dependency>
133       <dependency>
134          <groupId>org.opendaylight.controller</groupId>
135          <artifactId>sal-binding-broker-impl</artifactId>
136          <scope>test</scope>
137       </dependency>
138       <dependency>
139           <groupId>org.opendaylight.controller</groupId>
140           <artifactId>sal-binding-broker-impl</artifactId>
141           <scope>test</scope>
142           <type>test-jar</type>
143       </dependency>
144       <dependency>
145          <groupId>${project.groupId}</groupId>
146          <artifactId>pcep-topology-provider</artifactId>
147          <type>test-jar</type>
148          <scope>test</scope>
149       </dependency>
150       <dependency>
151          <groupId>${project.groupId}</groupId>
152          <artifactId>pcep-topology-provider</artifactId>
153          <scope>test</scope>
154       </dependency>
155    </dependencies>
156
157    <build>
158       <plugins>
159          <plugin>
160             <groupId>org.opendaylight.yangtools</groupId>
161             <artifactId>yang-maven-plugin</artifactId>
162          </plugin>
163          <plugin>
164             <groupId>org.apache.felix</groupId>
165             <artifactId>maven-bundle-plugin</artifactId>
166             <extensions>true</extensions>
167             <configuration>
168                <instructions>
169                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
170                </instructions>
171             </configuration>
172          </plugin>
173       </plugins>
174    </build>
175
176   <!--
177       Maven Site Configuration
178
179       The following configuration is necessary for maven-site-plugin to
180       correctly identify the correct deployment path for OpenDaylight Maven
181       sites.
182   -->
183   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
184
185   <distributionManagement>
186     <site>
187       <id>opendaylight-site</id>
188       <url>${nexus.site.url}/${project.artifactId}/</url>
189     </site>
190   </distributionManagement>
191 </project>