Skip to content

Commit b01db5e

Browse files
committed
Add sample forwarding application by using groups
Change-Id: I955342847b6c6ba5693e00952ba0886e2c41d1a9
1 parent cad4227 commit b01db5e

File tree

4 files changed

+610
-0
lines changed

4 files changed

+610
-0
lines changed

group-fwd/pom.xml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2017 Open Networking Laboratory
4+
~
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
8+
~
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.
16+
-->
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>
23+
<groupId>org.onosproject</groupId>
24+
<artifactId>onos-dependencies</artifactId>
25+
<version>1.8.0</version>
26+
<relativePath/>
27+
</parent>
28+
29+
<groupId>org.onosproject</groupId>
30+
<artifactId>onos-app-group-fwd</artifactId>
31+
<version>1.9.0</version>
32+
<packaging>bundle</packaging>
33+
34+
<description>Forwarding application using groups.</description>
35+
36+
<properties>
37+
<onos.version>1.8.0</onos.version>
38+
<onos.app.name>org.onosproject.groupfwd</onos.app.name>
39+
<onos.app.origin>ON.Lab</onos.app.origin>
40+
<onos.app.title>Forwarding App (Group)</onos.app.title>
41+
<onos.app.category>Traffic Steering</onos.app.category>
42+
<onos.app.url>http://onosproject.org</onos.app.url>
43+
</properties>
44+
45+
<dependencies>
46+
47+
<dependency>
48+
<groupId>org.onosproject</groupId>
49+
<artifactId>onos-api</artifactId>
50+
<version>${onos.version}</version>
51+
</dependency>
52+
53+
</dependencies>
54+
55+
<build>
56+
<plugins>
57+
<plugin>
58+
<groupId>org.apache.felix</groupId>
59+
<artifactId>maven-bundle-plugin</artifactId>
60+
</plugin>
61+
<plugin>
62+
<groupId>org.apache.felix</groupId>
63+
<artifactId>maven-scr-plugin</artifactId>
64+
</plugin>
65+
<plugin>
66+
<groupId>org.onosproject</groupId>
67+
<artifactId>onos-maven-plugin</artifactId>
68+
</plugin>
69+
</plugins>
70+
</build>
71+
72+
</project>

0 commit comments

Comments
 (0)