Applying the Helium SR4 release patch
[bgpcep.git] / bgp / 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>bgp-parent</artifactId>
32     <description>BGP-related components</description>
33     <packaging>pom</packaging>
34     <name>${project.artifactId}</name>
35
36     <modules>
37         <module>concepts</module>
38         <module>linkstate</module>
39         <module>parser-api</module>
40         <module>parser-spi</module>
41         <module>parser-impl</module>
42         <module>parser-mock</module>
43         <module>rib-api</module>
44         <module>rib-spi</module>
45         <module>rib-impl</module>
46         <module>rib-mock</module>
47         <module>testtool</module>
48         <module>topology-provider</module>
49         <module>util</module>
50
51         <module>controller-config</module>
52         <module>feature</module>
53
54     </modules>
55
56     <dependencyManagement>
57         <dependencies>
58             <dependency>
59                 <groupId>${project.groupId}</groupId>
60                 <artifactId>bgp-concepts</artifactId>
61                 <version>${project.version}</version>
62             </dependency>
63             <dependency>
64                 <groupId>${project.groupId}</groupId>
65                 <artifactId>bgp-linkstate</artifactId>
66                 <version>${project.version}</version>
67             </dependency>
68             <dependency>
69                 <groupId>${project.groupId}</groupId>
70                 <artifactId>bgp-parser-api</artifactId>
71                 <version>${project.version}</version>
72             </dependency>
73             <dependency>
74                 <groupId>${project.groupId}</groupId>
75                 <artifactId>bgp-parser-spi</artifactId>
76                 <version>${project.version}</version>
77             </dependency>
78             <dependency>
79                 <groupId>${project.groupId}</groupId>
80                 <artifactId>bgp-parser-impl</artifactId>
81                 <version>${project.version}</version>
82             </dependency>
83             <dependency>
84                 <groupId>${project.groupId}</groupId>
85                 <artifactId>bgp-parser-mock</artifactId>
86                 <version>${project.version}</version>
87             </dependency>
88             <dependency>
89                 <groupId>${project.groupId}</groupId>
90                 <artifactId>bgp-rib-api</artifactId>
91                 <version>${project.version}</version>
92             </dependency>
93             <dependency>
94                 <groupId>${project.groupId}</groupId>
95                 <artifactId>bgp-rib-spi</artifactId>
96                 <version>${project.version}</version>
97             </dependency>
98             <dependency>
99                 <groupId>${project.groupId}</groupId>
100                 <artifactId>bgp-rib-impl</artifactId>
101                 <version>${project.version}</version>
102             </dependency>
103             <dependency>
104                 <groupId>${project.groupId}</groupId>
105                 <artifactId>bgp-testtool</artifactId>
106                 <version>${project.version}</version>
107             </dependency>
108             <dependency>
109                 <groupId>${project.groupId}</groupId>
110                 <artifactId>bgp-rib-mock</artifactId>
111                 <version>${project.version}</version>
112             </dependency>
113             <dependency>
114                 <groupId>${project.groupId}</groupId>
115                 <artifactId>bgp-topology-provider</artifactId>
116                 <version>${project.version}</version>
117             </dependency>
118             <dependency>
119                 <groupId>${project.groupId}</groupId>
120                 <artifactId>bgp-util</artifactId>
121                 <version>${project.version}</version>
122             </dependency>
123
124             <!-- Outside of this component -->
125             <dependency>
126                 <groupId>${project.groupId}</groupId>
127                 <artifactId>rsvp-api</artifactId>
128                 <version>${project.version}</version>
129             </dependency>
130             <dependency>
131                 <groupId>${project.groupId}</groupId>
132                 <artifactId>topology-api</artifactId>
133                 <version>${project.version}</version>
134             </dependency>
135         </dependencies>
136     </dependencyManagement>
137
138 </project>