blob: 527c06d72a5c4e5e76ad413bb7e56c55d4bec0fe [file] [log] [blame]
Shashikanth VH1ca26ce2015-11-20 23:19:49 +05301<!--
2 ~ Copyright 2015 Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.onosproject</groupId>
21 <artifactId>onos-bgp-providers</artifactId>
Brian O'Connord1cdd192015-12-15 15:36:45 -080022 <version>1.4.0-rc3</version>
Shashikanth VH1ca26ce2015-11-20 23:19:49 +053023 <relativePath>../pom.xml</relativePath>
24 </parent>
25
26 <artifactId>onos-bgp-app</artifactId>
27 <packaging>pom</packaging>
28 <description>BGP protocol southbound providers</description>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.onosproject</groupId>
33 <artifactId>onos-bgpio</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.onosproject</groupId>
38 <artifactId>onos-bgp-api</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-bgp-ctl</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-bgp-provider-topology</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 </dependencies>
52</project>