blob: ec7c6ffe01a536726a60bdd3517510833c50ba69 [file] [log] [blame]
Yi Tsengb01db5e2017-02-01 16:48:51 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor6547c0e2017-08-03 18:48:25 -07003 ~ Copyright 2017 Open Networking Foundation
Yi Tsengb01db5e2017-02-01 16:48:51 -08004 ~
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>