blob: 50c8aec460b7ef95927275ba0075575b499d9b91 [file] [log] [blame]
Pingping Linffa27d32015-04-30 14:41:03 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
Pingping Linffa27d32015-04-30 14:41:03 -07004 ~
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 Milkeycedf3a22017-08-28 17:04:45 -070025 <version>1.11.0-SNAPSHOT</version>
Pingping Linffa27d32015-04-30 14:41:03 -070026 </parent>
27
28 <artifactId>onos-app-virtualbng</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>A virtual Broadband Network Gateway(BNG) application</description>
32
33 <properties>
34 <onos.app.name>org.onosproject.virtualbng</onos.app.name>
Simon Huntafae2f72016-03-04 21:18:23 -080035 <onos.app.title>Virtual Broadband Gateway App</onos.app.title>
Jian Lifd46e1d2016-03-08 09:18:53 -080036 <onos.app.category>Utility</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080037 <onos.app.url>http://onosproject.org</onos.app.url>
38 <onos.app.readme>Virtual broadband gateway application.</onos.app.readme>
Pingping Linffa27d32015-04-30 14:41:03 -070039 <web.context>/onos/virtualbng</web.context>
Ray Milkeyf2ab6f32015-08-20 14:25:51 -070040 <api.version>1.0.0</api.version>
41 <api.title>ONOS Virtual BNG Gateway REST API</api.title>
42 <api.description>
43 APIs for interacting with the Virtual Broadband Network Gateway (BNG) application.
44 </api.description>
45 <api.package>org.onosproject.virtualbng</api.package>
Pingping Linffa27d32015-04-30 14:41:03 -070046 </properties>
47
48 <dependencies>
49 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080050 <groupId>org.glassfish.jersey.core</groupId>
Pingping Lin53ae34f2015-06-09 10:07:08 -070051 <artifactId>jersey-client</artifactId>
Pingping Lin53ae34f2015-06-09 10:07:08 -070052 </dependency>
53 <dependency>
Pingping Linffa27d32015-04-30 14:41:03 -070054 <groupId>org.onosproject</groupId>
Pingping Linde77ee52015-06-03 17:16:07 -070055 <artifactId>onos-cli</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.karaf.shell</groupId>
60 <artifactId>org.apache.karaf.shell.console</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.onosproject</groupId>
Pingping Linffa27d32015-04-30 14:41:03 -070064 <artifactId>onlab-rest</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080069 <artifactId>javax.ws.rs-api</artifactId>
70 <version>2.0.1</version>
Pingping Linffa27d32015-04-30 14:41:03 -070071 </dependency>
72 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
79 <extensions>true</extensions>
80 <configuration>
81 <instructions>
82 <_wab>src/main/webapp/</_wab>
Ray Milkeyf2ab6f32015-08-20 14:25:51 -070083 <Include-Resource>
84 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
85 {maven-resources}
86 </Include-Resource>
Pingping Linffa27d32015-04-30 14:41:03 -070087 <Bundle-SymbolicName>
88 ${project.groupId}.${project.artifactId}
89 </Bundle-SymbolicName>
90 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -070091 *,org.glassfish.jersey.servlet
Pingping Linffa27d32015-04-30 14:41:03 -070092 </Import-Package>
93 <Web-ContextPath>${web.context}</Web-ContextPath>
94 </instructions>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99
Ray Milkeyf2ab6f32015-08-20 14:25:51 -0700100</project>