blob: fdb429714d47e24e2a2ac6e0f1afcdd43df35428 [file] [log] [blame]
Mohammad Shahid30fedc52017-08-09 11:49:40 +05301<!--
2 ~ Copyright 2017-present Open Networking Foundation
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"
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 User4bf9e3a2017-12-12 18:46:22 +000023 <version>1.13.0-SNAPSHOT</version>
Mohammad Shahid30fedc52017-08-09 11:49:40 +053024 </parent>
25 <artifactId>onos-bgp-provider-route</artifactId>
26 <packaging>bundle</packaging>
27 <description>BGP route provider</description>
28 <dependencies>
29 <dependency>
30 <groupId>org.onosproject</groupId>
Mohammad Shahid30fedc52017-08-09 11:49:40 +053031 <artifactId>onos-incubator-api</artifactId>
32 <version>${project.version}</version>
33 <scope>test</scope>
34 <classifier>tests</classifier>
35 </dependency>
36 <dependency>
37 <groupId>org.easymock</groupId>
38 <artifactId>easymock</artifactId>
39 <scope>test</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-bgp-api</artifactId>
44 </dependency>
Ray Milkeya95193c2017-08-10 15:35:36 -070045 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-app-evpn-route-service-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
Mohammad Shahid30fedc52017-08-09 11:49:40 +053050 </dependencies>
51</project>