blob: 861932875ca0b0ec9ff8940c6126b000c5cb3113 [file] [log] [blame]
Pingping Linffa27d32015-04-30 14:41:03 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Lic35415d2016-01-14 17:22:31 -08003 ~ Copyright 2015-2016 Open Networking Laboratory
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>
Brian O'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.0-SNAPSHOT</version>
Pingping Linffa27d32015-04-30 14:41:03 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-virtualbng</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>A virtual Broadband Network Gateway(BNG) application</description>
33
34 <properties>
35 <onos.app.name>org.onosproject.virtualbng</onos.app.name>
Simon Huntafae2f72016-03-04 21:18:23 -080036 <onos.app.title>Virtual Broadband Gateway App</onos.app.title>
Jian Lifd46e1d2016-03-08 09:18:53 -080037 <onos.app.category>Utility</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080038 <onos.app.url>http://onosproject.org</onos.app.url>
39 <onos.app.readme>Virtual broadband gateway application.</onos.app.readme>
Pingping Linffa27d32015-04-30 14:41:03 -070040 <web.context>/onos/virtualbng</web.context>
Ray Milkeyf2ab6f32015-08-20 14:25:51 -070041 <api.version>1.0.0</api.version>
42 <api.title>ONOS Virtual BNG Gateway REST API</api.title>
43 <api.description>
44 APIs for interacting with the Virtual Broadband Network Gateway (BNG) application.
45 </api.description>
46 <api.package>org.onosproject.virtualbng</api.package>
Pingping Linffa27d32015-04-30 14:41:03 -070047 </properties>
48
49 <dependencies>
50 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080051 <groupId>org.glassfish.jersey.core</groupId>
Pingping Lin53ae34f2015-06-09 10:07:08 -070052 <artifactId>jersey-client</artifactId>
Pingping Lin53ae34f2015-06-09 10:07:08 -070053 </dependency>
54 <dependency>
Pingping Linffa27d32015-04-30 14:41:03 -070055 <groupId>org.onosproject</groupId>
Pingping Linde77ee52015-06-03 17:16:07 -070056 <artifactId>onos-cli</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.apache.karaf.shell</groupId>
61 <artifactId>org.apache.karaf.shell.console</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.onosproject</groupId>
Pingping Linffa27d32015-04-30 14:41:03 -070065 <artifactId>onlab-rest</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080070 <artifactId>javax.ws.rs-api</artifactId>
71 <version>2.0.1</version>
Pingping Linffa27d32015-04-30 14:41:03 -070072 </dependency>
73 </dependencies>
74
75 <build>
76 <plugins>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
80 <extensions>true</extensions>
81 <configuration>
82 <instructions>
83 <_wab>src/main/webapp/</_wab>
Ray Milkeyf2ab6f32015-08-20 14:25:51 -070084 <Include-Resource>
85 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
86 {maven-resources}
87 </Include-Resource>
Pingping Linffa27d32015-04-30 14:41:03 -070088 <Bundle-SymbolicName>
89 ${project.groupId}.${project.artifactId}
90 </Bundle-SymbolicName>
91 <Import-Package>
92 org.slf4j,
93 javax.ws.rs,
Pingping Lin339cdfb2015-06-04 10:02:47 -070094 javax.ws.rs.core,
Jian Li9d616492016-03-09 10:52:49 -080095 org.glassfish.jersey,
96 org.glassfish.jersey.servlet,
Pingping Linffa27d32015-04-30 14:41:03 -070097 com.sun.jersey.server.impl.container.servlet,
98 com.fasterxml.jackson.databind,
Pingping Lin339cdfb2015-06-04 10:02:47 -070099 com.fasterxml.jackson.databind.node,
Pingping Linde77ee52015-06-03 17:16:07 -0700100 org.apache.karaf.shell.commands,
Pingping Linffa27d32015-04-30 14:41:03 -0700101 com.google.common.*,
102 org.onlab.packet.*,
Pingping Linffa27d32015-04-30 14:41:03 -0700103 org.onosproject.*
104 </Import-Package>
105 <Web-ContextPath>${web.context}</Web-ContextPath>
106 </instructions>
107 </configuration>
108 </plugin>
109 </plugins>
110 </build>
111
Ray Milkeyf2ab6f32015-08-20 14:25:51 -0700112</project>