Applying the Helium SR4 release patch
[bgpcep.git] / pcep / 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
11 <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">
12
13
14     <modelVersion>4.0.0</modelVersion>
15     <scm>
16         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
17         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
18         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
19         <tag>HEAD</tag>
20     </scm>
21     <parent>
22         <groupId>org.opendaylight.bgpcep</groupId>
23         <artifactId>commons.parent</artifactId>
24         <version>0.3.5-Helium-SR4</version>
25         <relativePath>../commons/parent</relativePath>
26     </parent>
27     <prerequisites>
28         <maven>3.0.4</maven>
29     </prerequisites>
30
31     <artifactId>pcep-parent</artifactId>
32     <description>PCEP protocol parent</description>
33     <packaging>pom</packaging>
34     <name>${project.artifactId}</name>
35
36     <modules>
37         <module>api</module>
38         <module>impl</module>
39         <module>spi</module>
40         <module>ietf-stateful02</module>
41         <module>ietf-stateful07</module>
42         <module>testtool</module>
43         <module>topology-api</module>
44         <module>topology-spi</module>
45         <module>topology-provider</module>
46         <module>tunnel-api</module>
47         <module>tunnel-provider</module>
48
49         <module>controller-config</module>
50         <module>segment-routing</module>
51         <module>pcc-mock</module>
52     </modules>
53
54     <dependencyManagement>
55         <dependencies>
56             <dependency>
57                 <groupId>${project.groupId}</groupId>
58                 <artifactId>pcep-api</artifactId>
59                 <version>${project.version}</version>
60             </dependency>
61             <dependency>
62                 <groupId>${project.groupId}</groupId>
63                 <artifactId>pcep-impl</artifactId>
64                 <version>${project.version}</version>
65             </dependency>
66             <dependency>
67                 <groupId>${project.groupId}</groupId>
68                 <artifactId>pcep-spi</artifactId>
69                 <version>${project.version}</version>
70             </dependency>
71             <dependency>
72                 <groupId>${project.groupId}</groupId>
73                 <artifactId>pcep-ietf-stateful02</artifactId>
74                 <version>${project.version}</version>
75             </dependency>
76              <dependency>
77                 <groupId>${project.groupId}</groupId>
78                 <artifactId>pcep-ietf-stateful07</artifactId>
79                 <version>${project.version}</version>
80             </dependency>
81             <dependency>
82                 <groupId>${project.groupId}</groupId>
83                 <artifactId>pcep-testtool</artifactId>
84                 <version>${project.version}</version>
85             </dependency>
86             <dependency>
87                 <groupId>${project.groupId}</groupId>
88                 <artifactId>pcep-topology-api</artifactId>
89                 <version>${project.version}</version>
90             </dependency>
91             <dependency>
92                 <groupId>${project.groupId}</groupId>
93                 <artifactId>pcep-topology-spi</artifactId>
94                 <version>${project.version}</version>
95             </dependency>
96             <dependency>
97                 <groupId>${project.groupId}</groupId>
98                 <artifactId>pcep-topology-provider</artifactId>
99                 <version>${project.version}</version>
100             </dependency>
101             <dependency>
102                 <groupId>${project.groupId}</groupId>
103                 <artifactId>pcep-tunnel-api</artifactId>
104                 <version>${project.version}</version>
105             </dependency>
106             <dependency>
107                 <groupId>${project.groupId}</groupId>
108                 <artifactId>pcep-tunnel-provider</artifactId>
109                 <version>${project.version}</version>
110             </dependency>
111
112             <!-- Stuff outside of this component -->
113             <dependency>
114                 <groupId>${project.groupId}</groupId>
115                 <artifactId>programming-api</artifactId>
116                 <version>${project.version}</version>
117             </dependency>
118             <dependency>
119                 <groupId>${project.groupId}</groupId>
120                 <artifactId>programming-spi</artifactId>
121                 <version>${project.version}</version>
122             </dependency>
123             <dependency>
124                 <groupId>${project.groupId}</groupId>
125                 <artifactId>programming-topology-api</artifactId>
126                 <version>${project.version}</version>
127             </dependency>
128             <dependency>
129                 <groupId>${project.groupId}</groupId>
130                 <artifactId>programming-tunnel-api</artifactId>
131                 <version>${project.version}</version>
132             </dependency>
133             <dependency>
134                 <groupId>${project.groupId}</groupId>
135                 <artifactId>rsvp-api</artifactId>
136                 <version>${project.version}</version>
137             </dependency>
138             <dependency>
139                 <groupId>${project.groupId}</groupId>
140                 <artifactId>topology-api</artifactId>
141                 <version>${project.version}</version>
142             </dependency>
143             <dependency>
144                 <groupId>${project.groupId}</groupId>
145                 <artifactId>topology-tunnel-api</artifactId>
146                 <version>${project.version}</version>
147             </dependency>
148         </dependencies>
149     </dependencyManagement>
150 </project>