Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2015 Open Networking Laboratory |
| 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> |
Brian O'Connor | f967ad6 | 2015-09-18 15:19:54 -0700 | [diff] [blame] | 25 | <version>1.4.0-SNAPSHOT</version> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 26 | <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> |
| 36 | <web.context>/onos/virtualbng</web.context> |
Ray Milkey | f2ab6f3 | 2015-08-20 14:25:51 -0700 | [diff] [blame] | 37 | <api.version>1.0.0</api.version> |
| 38 | <api.title>ONOS Virtual BNG Gateway REST API</api.title> |
| 39 | <api.description> |
| 40 | APIs for interacting with the Virtual Broadband Network Gateway (BNG) application. |
| 41 | </api.description> |
| 42 | <api.package>org.onosproject.virtualbng</api.package> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 43 | </properties> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
Pingping Lin | 53ae34f | 2015-06-09 10:07:08 -0700 | [diff] [blame] | 47 | <groupId>com.sun.jersey</groupId> |
| 48 | <artifactId>jersey-client</artifactId> |
| 49 | <version>1.19</version> |
| 50 | </dependency> |
| 51 | <dependency> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 52 | <groupId>org.onosproject</groupId> |
Pingping Lin | de77ee5 | 2015-06-03 17:16:07 -0700 | [diff] [blame] | 53 | <artifactId>onos-cli</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.apache.karaf.shell</groupId> |
| 58 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.onosproject</groupId> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 62 | <artifactId>onlab-rest</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>javax.ws.rs</groupId> |
| 67 | <artifactId>jsr311-api</artifactId> |
| 68 | <version>1.1.1</version> |
| 69 | </dependency> |
| 70 | </dependencies> |
| 71 | |
| 72 | <build> |
| 73 | <plugins> |
| 74 | <plugin> |
| 75 | <groupId>org.apache.felix</groupId> |
| 76 | <artifactId>maven-bundle-plugin</artifactId> |
| 77 | <extensions>true</extensions> |
| 78 | <configuration> |
| 79 | <instructions> |
| 80 | <_wab>src/main/webapp/</_wab> |
Ray Milkey | f2ab6f3 | 2015-08-20 14:25:51 -0700 | [diff] [blame] | 81 | <Include-Resource> |
| 82 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 83 | {maven-resources} |
| 84 | </Include-Resource> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 85 | <Bundle-SymbolicName> |
| 86 | ${project.groupId}.${project.artifactId} |
| 87 | </Bundle-SymbolicName> |
| 88 | <Import-Package> |
| 89 | org.slf4j, |
| 90 | javax.ws.rs, |
Pingping Lin | 339cdfb | 2015-06-04 10:02:47 -0700 | [diff] [blame] | 91 | javax.ws.rs.core, |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 92 | com.sun.jersey.api.core, |
Pingping Lin | 53ae34f | 2015-06-09 10:07:08 -0700 | [diff] [blame] | 93 | com.sun.jersey.api.client, |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 94 | com.sun.jersey.spi.container.servlet, |
| 95 | com.sun.jersey.server.impl.container.servlet, |
| 96 | com.fasterxml.jackson.databind, |
Pingping Lin | 339cdfb | 2015-06-04 10:02:47 -0700 | [diff] [blame] | 97 | com.fasterxml.jackson.databind.node, |
Pingping Lin | de77ee5 | 2015-06-03 17:16:07 -0700 | [diff] [blame] | 98 | org.apache.karaf.shell.commands, |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 99 | com.google.common.*, |
| 100 | org.onlab.packet.*, |
| 101 | org.onlab.rest.*, |
| 102 | org.onosproject.* |
| 103 | </Import-Package> |
| 104 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 105 | </instructions> |
| 106 | </configuration> |
| 107 | </plugin> |
| 108 | </plugins> |
| 109 | </build> |
| 110 | |
Ray Milkey | f2ab6f3 | 2015-08-20 14:25:51 -0700 | [diff] [blame] | 111 | </project> |