blob: 67b9ae335f55dba08113ada830f15972299b3b60 [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>
ONOS Jenkins Userd22dccc2017-12-12 21:18:01 +000025 <version>1.13.0-b7</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>
Pingping Linffa27d32015-04-30 14:41:03 -070070 </dependency>
71 </dependencies>
72
73 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.felix</groupId>
77 <artifactId>maven-bundle-plugin</artifactId>
78 <extensions>true</extensions>
79 <configuration>
80 <instructions>
81 <_wab>src/main/webapp/</_wab>
Ray Milkeyf2ab6f32015-08-20 14:25:51 -070082 <Include-Resource>
83 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
84 {maven-resources}
85 </Include-Resource>
Pingping Linffa27d32015-04-30 14:41:03 -070086 <Bundle-SymbolicName>
87 ${project.groupId}.${project.artifactId}
88 </Bundle-SymbolicName>
89 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -070090 *,org.glassfish.jersey.servlet
Pingping Linffa27d32015-04-30 14:41:03 -070091 </Import-Package>
92 <Web-ContextPath>${web.context}</Web-ContextPath>
93 </instructions>
94 </configuration>
95 </plugin>
96 </plugins>
97 </build>
98
Ray Milkeyf2ab6f32015-08-20 14:25:51 -070099</project>