SureshBR | 25058b7 | 2015-08-13 13:05:06 +0530 | [diff] [blame] | 1 | <!-- |
| 2 | ~ Copyright 2014 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" |
| 17 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
| 21 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
| 23 | <artifactId>onos-pcep-controller</artifactId> |
Brian O'Connor | 955c316 | 2016-03-10 15:27:19 -0800 | [diff] [blame] | 24 | <version>1.6.0-SNAPSHOT</version> |
SureshBR | 25058b7 | 2015-08-13 13:05:06 +0530 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-pcep-controller-impl</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
Phanendra Manda | 51fb9c2 | 2015-09-01 16:17:41 +0530 | [diff] [blame] | 31 | <description>ONOS PCEP client controller subsystem API implementation</description> |
SureshBR | 25058b7 | 2015-08-13 13:05:06 +0530 | [diff] [blame] | 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
SureshBR | 25058b7 | 2015-08-13 13:05:06 +0530 | [diff] [blame] | 35 | <groupId>org.onosproject</groupId> |
| 36 | <artifactId>onos-pcep-controller-api</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>io.netty</groupId> |
| 40 | <artifactId>netty</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.apache.felix</groupId> |
| 44 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.osgi</groupId> |
| 48 | <artifactId>org.osgi.compendium</artifactId> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onlab-misc</artifactId> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | |
| 56 | <build> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>maven-scr-plugin</artifactId> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | |
| 65 | </project> |