mohamed rahil | e04626f | 2016-04-05 20:42:53 +0530 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2016-present Open Networking Laboratory |
mohamed rahil | e04626f | 2016-04-05 20:42:53 +0530 | [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 | --> |
| 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> |
Ray Milkey | 54a7851 | 2017-02-13 11:13:52 -0800 | [diff] [blame] | 24 | <version>1.10.0-SNAPSHOT</version> |
mohamed rahil | e04626f | 2016-04-05 20:42:53 +0530 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-isis-isisio</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>ONOS ISIS controller protocol</description> |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>org.onosproject</groupId> |
| 34 | <artifactId>onos-isis-api</artifactId> |
| 35 | <version>${project.version}</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>io.netty</groupId> |
sunishvk | a1dfc3e | 2016-04-16 12:24:47 +0530 | [diff] [blame] | 39 | <artifactId>netty</artifactId> |
mohamed rahil | e04626f | 2016-04-05 20:42:53 +0530 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.easymock</groupId> |
| 43 | <artifactId>easymock</artifactId> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | </dependencies> |
| 47 | |
| 48 | </project> |