blob: 9e3f56dda535537e6384a9c6488e516bfda79bd9 [file] [log] [blame]
Luca Prete9c2ee072016-02-16 11:00:44 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2016-present Open Networking Foundation
Luca Prete9c2ee072016-02-16 11:00:44 -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-apps</artifactId>
Ray Milkeybaa74b02017-08-16 15:04:45 -070025 <version>1.11.0-rc1</version>
Luca Prete9c2ee072016-02-16 11:00:44 -080026 </parent>
27
28 <artifactId>onos-app-vpls</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>Application to create L2 broadcast network using VLAN</description>
32
33 <properties>
34 <onos.app.name>org.onosproject.vpls</onos.app.name>
Jian Lifd46e1d2016-03-08 09:18:53 -080035 <onos.app.category>Traffic Steering</onos.app.category>
Jian Li2b746f42016-03-07 21:26:48 -080036 <onos.app.title>VLAN L2 Broadcast Network App</onos.app.title>
Jian Lifd46e1d2016-03-08 09:18:53 -080037 <onos.app.url>http://onosproject.org</onos.app.url>
Luca Prete9c2ee072016-02-16 11:00:44 -080038 </properties>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-incubator-api</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.onosproject</groupId>
Luca Prete9c2ee072016-02-16 11:00:44 -080047 <artifactId>onos-api</artifactId>
Luca Prete9c2ee072016-02-16 11:00:44 -080048 <scope>test</scope>
49 <classifier>tests</classifier>
50 </dependency>
51 <dependency>
Luca Prete9c2ee072016-02-16 11:00:44 -080052 <groupId>org.easymock</groupId>
53 <artifactId>easymock</artifactId>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-junit</artifactId>
59 <scope>test</scope>
60 </dependency>
breezestarsdf95f9f2016-09-16 15:35:25 -070061 <dependency>
62 <groupId>org.apache.karaf.shell</groupId>
63 <artifactId>org.apache.karaf.shell.console</artifactId>
64 </dependency>
Yi Tsengf4e13e32017-03-30 15:38:39 -070065 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onos-core-serializers</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-cli</artifactId>
73 <version>${project.version}</version>
74 </dependency>
Luca Prete9c2ee072016-02-16 11:00:44 -080075 </dependencies>
76</project>