blob: b0c787650daf4831aabf50527b656cfef21d41f1 [file] [log] [blame]
Shashikanth VH1ca26ce2015-11-20 23:19:49 +05301<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 ~ Copyright 2015-present Open Networking Foundation
Shashikanth VH1ca26ce2015-11-20 23:19:49 +05303 ~
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 -->
Jian Lic35415d2016-01-14 17:22:31 -080016<project xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-bgp-providers</artifactId>
ONOS Jenkins User32ebb5a2018-01-09 01:54:28 +000023 <version>1.13.0-b8</version>
Jian Lic35415d2016-01-14 17:22:31 -080024 </parent>
Shashikanth VH1ca26ce2015-11-20 23:19:49 +053025
Jian Lic35415d2016-01-14 17:22:31 -080026 <artifactId>onos-bgp-app</artifactId>
27 <packaging>pom</packaging>
28 <description>BGP protocol southbound providers</description>
Shashikanth VH1ca26ce2015-11-20 23:19:49 +053029
Jian Lic35415d2016-01-14 17:22:31 -080030 <dependencies>
31 <dependency>
32 <groupId>org.onosproject</groupId>
33 <artifactId>onos-bgpio</artifactId>
Jian Lic35415d2016-01-14 17:22:31 -080034 </dependency>
35 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onos-bgp-api</artifactId>
Jian Lic35415d2016-01-14 17:22:31 -080038 </dependency>
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-bgp-ctl</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-bgp-provider-topology</artifactId>
47 <version>${project.version}</version>
48 </dependency>
mohamedrahil00f6f262016-11-24 20:20:41 +053049 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-bgp-provider-cli</artifactId>
52 <version>${project.version}</version>
53 </dependency>
Avantika-Huawei9e848e82016-09-01 12:12:42 +053054 <dependency>
55 <groupId>org.onosproject</groupId>
Yuta HIGUCHI834894a2017-08-29 10:24:05 -070056 <artifactId>onos-apps-pce-app</artifactId>
Avantika-Huawei9e848e82016-09-01 12:12:42 +053057 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.onosproject</groupId>
Yuta HIGUCHI834894a2017-08-29 10:24:05 -070061 <artifactId>onos-apps-pce-pceweb</artifactId>
Avantika-Huawei9e848e82016-09-01 12:12:42 +053062 <version>${project.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.onosproject</groupId>
Yuta HIGUCHI834894a2017-08-29 10:24:05 -070066 <artifactId>onos-apps-pce-pcerest</artifactId>
Avantika-Huawei9e848e82016-09-01 12:12:42 +053067 <version>${project.version}</version>
68 </dependency>
Jian Lic35415d2016-01-14 17:22:31 -080069 </dependencies>
Shashikanth VH1ca26ce2015-11-20 23:19:49 +053070</project>