blob: ad22a9a23fa958fd1e068d7f989759a1be2088cf [file] [log] [blame]
SureshBR25058b72015-08-13 13:05:06 +05301<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 ~ Copyright 2015-present Open Networking Foundation
SureshBR25058b72015-08-13 13:05:06 +05303 ~
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>
harikrushna-Huaweia2c7c202017-04-10 18:22:00 +053023 <artifactId>onos-pcep-server</artifactId>
ONOS Jenkins User4e5f2d62018-08-13 23:16:37 +000024 <version>1.14.0-SNAPSHOT</version>
SureshBR25058b72015-08-13 13:05:06 +053025 </parent>
26
harikrushna-Huaweia2c7c202017-04-10 18:22:00 +053027 <artifactId>onos-pcep-server-impl</artifactId>
SureshBR25058b72015-08-13 13:05:06 +053028 <packaging>bundle</packaging>
29
Phanendra Manda51fb9c22015-09-01 16:17:41 +053030 <description>ONOS PCEP client controller subsystem API implementation</description>
SureshBR25058b72015-08-13 13:05:06 +053031
32 <dependencies>
33 <dependency>
SureshBR25058b72015-08-13 13:05:06 +053034 <groupId>org.onosproject</groupId>
harikrushna-Huaweia2c7c202017-04-10 18:22:00 +053035 <artifactId>onos-pcep-server-api</artifactId>
SureshBR25058b72015-08-13 13:05:06 +053036 </dependency>
37 <dependency>
38 <groupId>io.netty</groupId>
39 <artifactId>netty</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.scr.annotations</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.osgi</groupId>
47 <artifactId>org.osgi.compendium</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onlab-misc</artifactId>
52 </dependency>
Avantika-Huawei9e848e82016-09-01 12:12:42 +053053 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-core-serializers</artifactId>
56 <version>${project.version}</version>
57 </dependency>
Ray Milkeyd1c34da2018-06-22 18:10:53 -070058 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-api</artifactId>
61 <scope>test</scope>
62 <classifier>tests</classifier>
63 </dependency>
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onos-incubator-api</artifactId>
67 <version>${project.version}</version>
68 <scope>test</scope>
69 <classifier>tests</classifier>
70 </dependency>
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-pcep-server-api</artifactId>
74 <version>${project.version}</version>
75 <scope>test</scope>
76 <classifier>tests</classifier>
77 </dependency>
SureshBR25058b72015-08-13 13:05:06 +053078 </dependencies>
79
80 <build>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-scr-plugin</artifactId>
85 </plugin>
86 </plugins>
87 </build>
88
89</project>