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 | afc2d7d | 2015-06-05 23:31:25 -0700 | [diff] [blame] | 25 | <version>1.3.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> |
| 37 | </properties> |
| 38 | |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.onosproject</groupId> |
Pingping Lin | de77ee5 | 2015-06-03 17:16:07 -0700 | [diff] [blame] | 42 | <artifactId>onos-cli</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.apache.karaf.shell</groupId> |
| 47 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 51 | <artifactId>onlab-rest</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>javax.ws.rs</groupId> |
| 56 | <artifactId>jsr311-api</artifactId> |
| 57 | <version>1.1.1</version> |
| 58 | </dependency> |
| 59 | </dependencies> |
| 60 | |
| 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.felix</groupId> |
| 65 | <artifactId>maven-bundle-plugin</artifactId> |
| 66 | <extensions>true</extensions> |
| 67 | <configuration> |
| 68 | <instructions> |
| 69 | <_wab>src/main/webapp/</_wab> |
| 70 | <Bundle-SymbolicName> |
| 71 | ${project.groupId}.${project.artifactId} |
| 72 | </Bundle-SymbolicName> |
| 73 | <Import-Package> |
| 74 | org.slf4j, |
| 75 | javax.ws.rs, |
Pingping Lin | 339cdfb | 2015-06-04 10:02:47 -0700 | [diff] [blame] | 76 | javax.ws.rs.core, |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 77 | com.sun.jersey.api.core, |
| 78 | com.sun.jersey.spi.container.servlet, |
| 79 | com.sun.jersey.server.impl.container.servlet, |
| 80 | com.fasterxml.jackson.databind, |
Pingping Lin | 339cdfb | 2015-06-04 10:02:47 -0700 | [diff] [blame] | 81 | com.fasterxml.jackson.databind.node, |
Pingping Lin | de77ee5 | 2015-06-03 17:16:07 -0700 | [diff] [blame] | 82 | org.apache.karaf.shell.commands, |
Pingping Lin | ffa27d3 | 2015-04-30 14:41:03 -0700 | [diff] [blame] | 83 | com.google.common.*, |
| 84 | org.onlab.packet.*, |
| 85 | org.onlab.rest.*, |
| 86 | org.onosproject.* |
| 87 | </Import-Package> |
| 88 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 89 | </instructions> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | </plugins> |
| 93 | </build> |
| 94 | |
| 95 | </project> |