blob: 27d9b4d2b8a939d70d6d468aa88476e6686a8080 [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>
Brian O'Connore642f7c2016-05-23 18:33:04 -070021 <version>1.7.0-SNAPSHOT</version>
Priyanka B9bee0802016-04-27 22:06:02 +053022 <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>
Priyanka B259847d2016-06-03 21:28:35 +053032 <module>app</module>
Priyanka B9bee0802016-04-27 22:06:02 +053033 </modules>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.onosproject</groupId>
38 <artifactId>onos-pcep-controller-api</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-bgp-api</artifactId>
44 <version>${project.version}</version>
45 </dependency>
Priyanka Bbd455ca2016-05-05 22:13:25 +053046 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-pcep-provider-tunnel</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-pcepio</artifactId>
54 <version>${project.version}</version>
55 </dependency>
Priyanka B9bee0802016-04-27 22:06:02 +053056 </dependencies>
57
58</project>