blob: 651d3932538ddf017912d8b11d5b9c3d72e7d279 [file] [log] [blame]
mohamed rahile04626f2016-04-05 20:42:53 +05301<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 ~ Copyright 2016-present Open Networking Laboratory
mohamed rahile04626f2016-04-05 20:42:53 +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:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xmlns="http://maven.apache.org/POM/4.0.0"
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-isis</artifactId>
24 <version>1.6.0-SNAPSHOT</version>
25 <relativePath>../pom.xml</relativePath>
26 </parent>
27
28 <artifactId>onos-isis-isisio</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>ONOS ISIS controller protocol</description>
32 <dependencies>
33 <dependency>
34 <groupId>org.onosproject</groupId>
35 <artifactId>onos-isis-api</artifactId>
36 <version>${project.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>io.netty</groupId>
40 <artifactId>netty-buffer</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.easymock</groupId>
44 <artifactId>easymock</artifactId>
45 <scope>test</scope>
46 </dependency>
47 </dependencies>
48
49</project>