blob: fc5e7bc31320071798fd55525f42436d2b1c8ea2 [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 </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>
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>