Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Phaneendra Manda | bcdb7c9 | 2015-11-13 19:26:34 +0530 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
| 23 | <artifactId>onos-pcep-providers</artifactId> |
Brian O'Connor | 955c316 | 2016-03-10 15:27:19 -0800 | [diff] [blame] | 24 | <version>1.6.0-SNAPSHOT</version> |
Phaneendra Manda | bcdb7c9 | 2015-11-13 19:26:34 +0530 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
Brian O'Connor | 3f877a8 | 2015-05-28 17:26:52 -0700 | [diff] [blame] | 27 | |
Phaneendra Manda | bcdb7c9 | 2015-11-13 19:26:34 +0530 | [diff] [blame] | 28 | <artifactId>onos-pcep</artifactId> |
| 29 | <packaging>pom</packaging> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 30 | <description>PCEP protocol southbound providers</description> |
cheng fan | 48e832c | 2015-05-29 01:54:47 +0800 | [diff] [blame] | 31 | |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 32 | <dependencies> |
Phaneendra Manda | bcdb7c9 | 2015-11-13 19:26:34 +0530 | [diff] [blame] | 33 | <dependency> |
| 34 | <groupId>org.onosproject</groupId> |
| 35 | <artifactId>onos-app-pcep-api</artifactId> |
| 36 | </dependency> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 37 | <dependency> |
Phaneendra Manda | bcdb7c9 | 2015-11-13 19:26:34 +0530 | [diff] [blame] | 38 | <groupId>org.onosproject</groupId> |
| 39 | <artifactId>onos-pcepio</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 42 | <dependency> |
Phaneendra Manda | bcdb7c9 | 2015-11-13 19:26:34 +0530 | [diff] [blame] | 43 | <groupId>org.onosproject</groupId> |
| 44 | <artifactId>onos-pcep-controller-api</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 47 | <dependency> |
Phaneendra Manda | bcdb7c9 | 2015-11-13 19:26:34 +0530 | [diff] [blame] | 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onos-pcep-controller-impl</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.onosproject</groupId> |
| 54 | <artifactId>onos-pcep-provider-topology</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.onosproject</groupId> |
| 59 | <artifactId>onos-pcep-provider-tunnel</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | </dependency> |
| 62 | |
| 63 | </dependencies> |
Brian O'Connor | 3f877a8 | 2015-05-28 17:26:52 -0700 | [diff] [blame] | 64 | </project> |