Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Foundation |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 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 | --> |
cheng fan | 48e832c | 2015-05-29 01:54:47 +0800 | [diff] [blame] | 16 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Phanendra Manda | 37b97fb | 2015-08-15 02:04:24 +0530 | [diff] [blame] | 17 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | <parent> |
| 20 | <groupId>org.onosproject</groupId> |
| 21 | <artifactId>onos-pcep-providers</artifactId> |
ONOS Jenkins User | aa868b6 | 2018-04-13 23:05:13 +0000 | [diff] [blame] | 22 | <version>1.13.0-SNAPSHOT</version> |
Phanendra Manda | 37b97fb | 2015-08-15 02:04:24 +0530 | [diff] [blame] | 23 | </parent> |
| 24 | <artifactId>onos-pcep-provider-tunnel</artifactId> |
| 25 | <packaging>bundle</packaging> |
Ayaka Koshibe | 41ee2f0 | 2015-07-01 16:06:25 -0700 | [diff] [blame] | 26 | <description>PCEP-based tunnel provider</description> |
Phanendra Manda | 37b97fb | 2015-08-15 02:04:24 +0530 | [diff] [blame] | 27 | <dependencies> |
| 28 | <dependency> |
| 29 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 834894a | 2017-08-29 10:24:05 -0700 | [diff] [blame] | 30 | <artifactId>onos-apps-pcep-api</artifactId> |
Phanendra Manda | 37b97fb | 2015-08-15 02:04:24 +0530 | [diff] [blame] | 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>org.onosproject</groupId> |
harikrushna-Huawei | a2c7c20 | 2017-04-10 18:22:00 +0530 | [diff] [blame] | 34 | <artifactId>onos-pcep-server-api</artifactId> |
Phanendra Manda | 37b97fb | 2015-08-15 02:04:24 +0530 | [diff] [blame] | 35 | </dependency> |
chengfan | 2fff70f | 2015-08-24 18:20:19 -0500 | [diff] [blame] | 36 | <dependency> |
| 37 | <groupId>org.osgi</groupId> |
| 38 | <artifactId>org.osgi.compendium</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.onosproject</groupId> |
| 42 | <artifactId>onos-api</artifactId> |
| 43 | <classifier>tests</classifier> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-incubator-net</artifactId> |
chengfan | 2fff70f | 2015-08-24 18:20:19 -0500 | [diff] [blame] | 49 | <scope>test</scope> |
| 50 | </dependency> |
Avantika-Huawei | d1e36bd | 2016-05-26 12:47:16 +0530 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
harikrushna-Huawei | a2c7c20 | 2017-04-10 18:22:00 +0530 | [diff] [blame] | 53 | <artifactId>onos-pcep-server-impl</artifactId> |
Avantika-Huawei | d1e36bd | 2016-05-26 12:47:16 +0530 | [diff] [blame] | 54 | <version>${project.version} </version> |
| 55 | </dependency> |
Phanendra Manda | 37b97fb | 2015-08-15 02:04:24 +0530 | [diff] [blame] | 56 | </dependencies> |
Priyanka B | d2b2888 | 2016-04-04 16:57:04 +0530 | [diff] [blame] | 57 | </project> |