Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 3 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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 |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 7 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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. |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 15 | --> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 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> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 22 | <groupId>org.onosproject</groupId> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 23 | <artifactId>onos-of</artifactId> |
Ray Milkey | 58c6af2 | 2016-11-22 17:26:52 -0800 | [diff] [blame] | 24 | <version>1.8.0-SNAPSHOT</version> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-of-ctl</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>ONOS OpenFlow controller subsystem API</description> |
| 31 | |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 34 | <groupId>org.onosproject</groupId> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 35 | <artifactId>onos-of-api</artifactId> |
| 36 | </dependency> |
tom | 73d6d1e | 2014-09-17 20:08:01 -0700 | [diff] [blame] | 37 | <dependency> |
Brian O'Connor | 01ac79e | 2016-04-04 14:10:09 -0700 | [diff] [blame] | 38 | <groupId>org.onosproject</groupId> |
| 39 | <artifactId>openflowj</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
tom | 73d6d1e | 2014-09-17 20:08:01 -0700 | [diff] [blame] | 42 | <groupId>io.netty</groupId> |
| 43 | <artifactId>netty</artifactId> |
| 44 | </dependency> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.apache.felix</groupId> |
| 47 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 48 | </dependency> |
Thomas Vachuska | 80b0a80 | 2015-07-17 08:43:30 -0700 | [diff] [blame] | 49 | <dependency> |
Jonathan Hart | bbd91d4 | 2015-02-27 11:18:04 -0800 | [diff] [blame] | 50 | <groupId>org.osgi</groupId> |
| 51 | <artifactId>org.osgi.compendium</artifactId> |
| 52 | </dependency> |
Ray Milkey | d931a9b | 2016-03-02 17:01:30 -0800 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>org.onosproject</groupId> |
| 55 | <artifactId>onos-api</artifactId> |
| 56 | <scope>test</scope> |
| 57 | <classifier>tests</classifier> |
Ray Milkey | d931a9b | 2016-03-02 17:01:30 -0800 | [diff] [blame] | 58 | </dependency> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 59 | </dependencies> |
| 60 | |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.felix</groupId> |
| 65 | <artifactId>maven-scr-plugin</artifactId> |
| 66 | </plugin> |
Charles Chan | 3b00e1b | 2015-08-26 23:12:52 +0800 | [diff] [blame] | 67 | <plugin> |
| 68 | <groupId>org.onosproject</groupId> |
| 69 | <artifactId>onos-maven-plugin</artifactId> |
| 70 | </plugin> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 71 | </plugins> |
| 72 | </build> |
| 73 | |
| 74 | </project> |