blob: e42f8880f92500d783b57e811ea58ab8a0019a75 [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'Connorafc2d7d2015-06-05 23:31:25 -070025 <version>1.3.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>
Pingping Lin53ae34f2015-06-09 10:07:08 -070041 <groupId>com.sun.jersey</groupId>
42 <artifactId>jersey-client</artifactId>
43 <version>1.19</version>
44 </dependency>
45 <dependency>
Pingping Linffa27d32015-04-30 14:41:03 -070046 <groupId>org.onosproject</groupId>
Pingping Linde77ee52015-06-03 17:16:07 -070047 <artifactId>onos-cli</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.karaf.shell</groupId>
52 <artifactId>org.apache.karaf.shell.console</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>org.onosproject</groupId>
Pingping Linffa27d32015-04-30 14:41:03 -070056 <artifactId>onlab-rest</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>javax.ws.rs</groupId>
61 <artifactId>jsr311-api</artifactId>
62 <version>1.1.1</version>
63 </dependency>
64 </dependencies>
65
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 <extensions>true</extensions>
72 <configuration>
73 <instructions>
74 <_wab>src/main/webapp/</_wab>
75 <Bundle-SymbolicName>
76 ${project.groupId}.${project.artifactId}
77 </Bundle-SymbolicName>
78 <Import-Package>
79 org.slf4j,
80 javax.ws.rs,
Pingping Lin339cdfb2015-06-04 10:02:47 -070081 javax.ws.rs.core,
Pingping Linffa27d32015-04-30 14:41:03 -070082 com.sun.jersey.api.core,
Pingping Lin53ae34f2015-06-09 10:07:08 -070083 com.sun.jersey.api.client,
Pingping Linffa27d32015-04-30 14:41:03 -070084 com.sun.jersey.spi.container.servlet,
85 com.sun.jersey.server.impl.container.servlet,
86 com.fasterxml.jackson.databind,
Pingping Lin339cdfb2015-06-04 10:02:47 -070087 com.fasterxml.jackson.databind.node,
Pingping Linde77ee52015-06-03 17:16:07 -070088 org.apache.karaf.shell.commands,
Pingping Linffa27d32015-04-30 14:41:03 -070089 com.google.common.*,
90 org.onlab.packet.*,
91 org.onlab.rest.*,
92 org.onosproject.*
93 </Import-Package>
94 <Web-ContextPath>${web.context}</Web-ContextPath>
95 </instructions>
96 </configuration>
97 </plugin>
98 </plugins>
99 </build>
100
101</project>