Thejaswi N K | 6a4cd00 | 2015-09-21 17:19:55 +0530 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Laboratory |
Thejaswi N K | 6a4cd00 | 2015-09-21 17:19:55 +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="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-bgp</artifactId> |
Brian O'Connor | e642f7c | 2016-05-23 18:33:04 -0700 | [diff] [blame] | 24 | <version>1.7.0-SNAPSHOT</version> |
Thejaswi N K | 6a4cd00 | 2015-09-21 17:19:55 +0530 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-bgp-ctl</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>ONOS BGP controller subsystem API</description> |
| 31 | |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.onosproject</groupId> |
| 35 | <artifactId>onos-bgp-api</artifactId> |
| 36 | </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> |
Shashikanth VH | 83f77e4 | 2016-05-26 20:34:56 +0530 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>io.netty</groupId> |
| 51 | <artifactId>netty-common</artifactId> |
| 52 | <version>4.0.36.Final</version> |
| 53 | </dependency> |
Thejaswi N K | 6a4cd00 | 2015-09-21 17:19:55 +0530 | [diff] [blame] | 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> |