blob: be3af847c4518443dd01bc682113025551ada9ec [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>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070022 <artifactId>onos-providers-bgp</artifactId>
Ray Milkey312d9872018-08-20 16:09:54 -070023 <version>1.15.0-SNAPSHOT</version>
Mohammad Shahid30fedc52017-08-09 11:49:40 +053024 </parent>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070025 <artifactId>onos-providers-bgp-route</artifactId>
Mohammad Shahid30fedc52017-08-09 11:49:40 +053026 <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>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070043 <artifactId>onos-protocols-bgp-api</artifactId>
Mohammad Shahid30fedc52017-08-09 11:49:40 +053044 </dependency>
Ray Milkeya95193c2017-08-10 15:35:36 -070045 <dependency>
46 <groupId>org.onosproject</groupId>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070047 <artifactId>onos-apps-evpn-route-service-api</artifactId>
Ray Milkeya95193c2017-08-10 15:35:36 -070048 <version>${project.version}</version>
49 </dependency>
Mohammad Shahid30fedc52017-08-09 11:49:40 +053050 </dependencies>
51</project>