Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 4 | ~ |
| 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 User | 42482b2 | 2019-06-28 17:48:59 +0000 | [diff] [blame] | 25 | <version>1.13.10-SNAPSHOT</version> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 26 | </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 Hunt | afae2f7 | 2016-03-04 21:18:23 -0800 | [diff] [blame] | 35 | <onos.app.title>Virtual Broadband Gateway App</onos.app.title> |
Jian Li | fd46e1d | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 36 | <onos.app.category>Utility</onos.app.category> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 37 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 38 | <onos.app.readme>Virtual broadband gateway application.</onos.app.readme> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 39 | <web.context>/onos/virtualbng</web.context> |
Ray Milkey | f2ab6f3 | 2015-08-20 14:25:51 -0700 | [diff] [blame] | 40 | <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 Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 46 | </properties> |
| 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 50 | <groupId>org.glassfish.jersey.core</groupId> |
Pingping Lin | 53ae34f | 2015-06-09 10:07:08 -0700 | [diff] [blame] | 51 | <artifactId>jersey-client</artifactId> |
Pingping Lin | 53ae34f | 2015-06-09 10:07:08 -0700 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 54 | <groupId>org.onosproject</groupId> |
Pingping Lin | de77ee5 | 2015-06-03 17:16:07 -0700 | [diff] [blame] | 55 | <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 Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 64 | <artifactId>onlab-rest</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>javax.ws.rs</groupId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 69 | <artifactId>javax.ws.rs-api</artifactId> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 70 | </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 Milkey | f2ab6f3 | 2015-08-20 14:25:51 -0700 | [diff] [blame] | 82 | <Include-Resource> |
| 83 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 84 | {maven-resources} |
| 85 | </Include-Resource> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 86 | <Bundle-SymbolicName> |
| 87 | ${project.groupId}.${project.artifactId} |
| 88 | </Bundle-SymbolicName> |
| 89 | <Import-Package> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 90 | *,org.glassfish.jersey.servlet |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 91 | </Import-Package> |
| 92 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 93 | </instructions> |
| 94 | </configuration> |
| 95 | </plugin> |
| 96 | </plugins> |
| 97 | </build> |
| 98 | |
Ray Milkey | f2ab6f3 | 2015-08-20 14:25:51 -0700 | [diff] [blame] | 99 | </project> |