blob: 25d319a48f71edc830ccceb6c4df3b5c3a3310f4 [file] [log] [blame]
Pingping Linffa27d32015-04-30 14:41:03 -07001<?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'Connor33503902015-06-01 17:08:05 -070025 <version>1.2.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>
36 <web.context>/onos/virtualbng</web.context>
37 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onlab-rest</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>javax.ws.rs</groupId>
47 <artifactId>jsr311-api</artifactId>
48 <version>1.1.1</version>
49 </dependency>
50 </dependencies>
51
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
57 <extensions>true</extensions>
58 <configuration>
59 <instructions>
60 <_wab>src/main/webapp/</_wab>
61 <Bundle-SymbolicName>
62 ${project.groupId}.${project.artifactId}
63 </Bundle-SymbolicName>
64 <Import-Package>
65 org.slf4j,
66 javax.ws.rs,
67 com.sun.jersey.api.core,
68 com.sun.jersey.spi.container.servlet,
69 com.sun.jersey.server.impl.container.servlet,
70 com.fasterxml.jackson.databind,
71 com.google.common.*,
72 org.onlab.packet.*,
73 org.onlab.rest.*,
74 org.onosproject.*
75 </Import-Package>
76 <Web-ContextPath>${web.context}</Web-ContextPath>
77 </instructions>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
82
83</project>