tom | 5786ac6 | 2014-09-15 14:48:23 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Foundation |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 4 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 8 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 16 | --> |
tom | 5786ac6 | 2014-09-15 14:48:23 -0700 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 23 | <groupId>org.onosproject</groupId> |
tom | 5786ac6 | 2014-09-15 14:48:23 -0700 | [diff] [blame] | 24 | <artifactId>onos-apps</artifactId> |
ONOS Jenkins User | 42482b2 | 2019-06-28 17:48:59 +0000 | [diff] [blame] | 25 | <version>1.13.10-SNAPSHOT</version> |
tom | 5786ac6 | 2014-09-15 14:48:23 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-app-fwd</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
Thomas Vachuska | a7a0f56 | 2015-04-14 23:27:44 -0700 | [diff] [blame] | 31 | <description>Reactive forwarding application using flow subsystem</description> |
tom | 5786ac6 | 2014-09-15 14:48:23 -0700 | [diff] [blame] | 32 | |
Thomas Vachuska | 586afd8 | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 33 | <properties> |
| 34 | <onos.app.name>org.onosproject.fwd</onos.app.name> |
Simon Hunt | afae2f7 | 2016-03-04 21:18:23 -0800 | [diff] [blame] | 35 | <onos.app.title>Reactive Forwarding App</onos.app.title> |
Jian Li | fd46e1d | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 36 | <onos.app.category>Traffic Steering</onos.app.category> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 37 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 38 | <onos.app.readme>Reactive forwarding application using flow subsystem.</onos.app.readme> |
Thomas Vachuska | 586afd8 | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 39 | </properties> |
| 40 | |
tom | c16656f | 2014-10-15 18:30:31 -0700 | [diff] [blame] | 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.osgi</groupId> |
| 44 | <artifactId>org.osgi.compendium</artifactId> |
| 45 | </dependency> |
kalagesa | 1a1867a | 2017-03-07 13:06:41 +0530 | [diff] [blame] | 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-core-serializers</artifactId> |
Yuta HIGUCHI | 32eee7a | 2017-04-20 18:24:54 -0700 | [diff] [blame] | 49 | <version>${project.version}</version> |
kalagesa | 1a1867a | 2017-03-07 13:06:41 +0530 | [diff] [blame] | 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-api</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
| 57 | <artifactId>onos-core-primitives</artifactId> |
Yuta HIGUCHI | 32eee7a | 2017-04-20 18:24:54 -0700 | [diff] [blame] | 58 | <version>${project.version}</version> |
kalagesa | 1a1867a | 2017-03-07 13:06:41 +0530 | [diff] [blame] | 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.onosproject</groupId> |
| 62 | <artifactId>onos-cli</artifactId> |
Yuta HIGUCHI | 32eee7a | 2017-04-20 18:24:54 -0700 | [diff] [blame] | 63 | <version>${project.version}</version> |
kalagesa | 1a1867a | 2017-03-07 13:06:41 +0530 | [diff] [blame] | 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.apache.karaf.shell</groupId> |
| 67 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.felix</groupId> |
| 71 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 72 | </dependency> |
tom | c16656f | 2014-10-15 18:30:31 -0700 | [diff] [blame] | 73 | </dependencies> |
| 74 | |
tom | 5786ac6 | 2014-09-15 14:48:23 -0700 | [diff] [blame] | 75 | </project> |