blob: 0423cc809fef1823687721528c32fcdbacfff752 [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>
21 <version>1.6.0-SNAPSHOT</version>
22 <relativePath>../pom.xml</relativePath>
23 </parent>
24
25 <artifactId>onos-bgpcep-providers</artifactId>
26 <packaging>pom</packaging>
27
28 <description>BGPCEP providers root</description>
29
30 <modules>
31 <module>flow</module>
32 </modules>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onos-pcep-controller-api</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-bgp-api</artifactId>
43 <version>${project.version}</version>
44 </dependency>
Priyanka Bbd455ca2016-05-05 22:13:25 +053045 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-pcep-provider-tunnel</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-pcepio</artifactId>
53 <version>${project.version}</version>
54 </dependency>
Priyanka B9bee0802016-04-27 22:06:02 +053055 </dependencies>
56
57</project>