blob: 4214bedbff8cd6e7d9c193f7db9426abe995def1 [file] [log] [blame]
Priyanka B9bee0802016-04-27 22:06:02 +05301<!--
2 ~ Copyright 2016-present 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
17 <modelVersion>4.0.0</modelVersion>
18 <parent>
19 <groupId>org.onosproject</groupId>
20 <artifactId>onos-providers</artifactId>
Ray Milkeyf14cc6d2017-06-28 09:07:17 -070021 <version>1.11.0-SNAPSHOT</version>
Priyanka B9bee0802016-04-27 22:06:02 +053022 </parent>
23
24 <artifactId>onos-bgpcep-providers</artifactId>
25 <packaging>pom</packaging>
26
27 <description>BGPCEP providers root</description>
28
29 <modules>
30 <module>flow</module>
Priyanka B259847d2016-06-03 21:28:35 +053031 <module>app</module>
Priyanka B9bee0802016-04-27 22:06:02 +053032 </modules>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onos-pcep-controller-api</artifactId>
Priyanka B9bee0802016-04-27 22:06:02 +053038 </dependency>
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-bgp-api</artifactId>
Priyanka B9bee0802016-04-27 22:06:02 +053042 </dependency>
Priyanka Bbd455ca2016-05-05 22:13:25 +053043 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-pcep-provider-tunnel</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-pcepio</artifactId>
Priyanka Bbd455ca2016-05-05 22:13:25 +053051 </dependency>
Priyanka B9bee0802016-04-27 22:06:02 +053052 </dependencies>
53
54</project>