blob: 687ee06d5d2dff4392f702433dc96178a33c6f12 [file] [log] [blame]
SureshBR25058b72015-08-13 13:05:06 +05301<!--
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>
24 <version>1.3.0-SNAPSHOT</version>
25 <relativePath>../pom.xml</relativePath>
26 </parent>
27
28 <artifactId>onos-pcep-controller-impl</artifactId>
29 <packaging>bundle</packaging>
30
Phanendra Manda51fb9c22015-09-01 16:17:41 +053031 <description>ONOS PCEP client controller subsystem API implementation</description>
SureshBR25058b72015-08-13 13:05:06 +053032
33 <dependencies>
34 <dependency>
35 <!-- FIXME once experimenter gets merged to upstream -->
36 <groupId>org.onosproject</groupId>
37 <artifactId>onos-pcep-controller-api</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>io.netty</groupId>
41 <artifactId>netty</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.apache.felix.scr.annotations</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.osgi</groupId>
49 <artifactId>org.osgi.compendium</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onlab-misc</artifactId>
54 </dependency>
55 </dependencies>
56
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-scr-plugin</artifactId>
62 </plugin>
63 </plugins>
64 </build>
65
66</project>