blob: 8257e8ea6b3b21a4154b7b2c1cd06857b308c84a [file] [log] [blame]
xuzhang41ad7282015-08-07 15:07:34 +08001<?xml version="1.0"?>
Thomas Vachuska58de4162015-09-10 16:15:33 -07002<!--
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 -->
xuzhang41ad7282015-08-07 15:07:34 +080017<project
Thomas Vachuska58de4162015-09-10 16:15:33 -070018 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
19 xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-apps</artifactId>
25 <version>1.3.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
xuzhang41ad7282015-08-07 15:07:34 +080028
29
Thomas Vachuska58de4162015-09-10 16:15:33 -070030 <artifactId>onos-app-vtnweb</artifactId>
31 <packaging>bundle</packaging>
32 <properties>
33 <onos.app.name>org.onosproject.vtnweb</onos.app.name>
34 <web.context>/onos/vtn</web.context>
35 </properties>
xuzhang41ad7282015-08-07 15:07:34 +080036
Thomas Vachuska58de4162015-09-10 16:15:33 -070037 <dependencies>
38 <dependency>
39 <groupId>javax.ws.rs</groupId>
40 <artifactId>jsr311-api</artifactId>
41 <version>1.1.1</version>
42 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-app-vtnrsc</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48 </dependencies>
49 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
54 <extensions>true</extensions>
55 <configuration>
56 <instructions>
57 <_wab>src/main/webapp/</_wab>
58 <Bundle-SymbolicName>
59 ${project.groupId}.${project.artifactId}
60 </Bundle-SymbolicName>
61 <Import-Package>
62 org.slf4j,
63 org.osgi.framework,
64 javax.ws.rs,
65 javax.ws.rs.core,
66 com.sun.jersey.api.core,
67 com.sun.jersey.spi.container.servlet,
68 com.sun.jersey.server.impl.container.servlet,
69 com.fasterxml.jackson.databind,
70 com.fasterxml.jackson.databind.node,
71 com.fasterxml.jackson.core,
72 org.apache.karaf.shell.commands,
73 org.apache.commons.lang.math.*,
74 com.google.common.*,
75 org.onlab.packet.*,
76 org.onlab.rest.*,
77 org.onosproject.*,
78 org.onlab.util.*,
79 org.jboss.netty.util.*
80 </Import-Package>
81 <Web-ContextPath>${web.context}</Web-ContextPath>
82 </instructions>
83 </configuration>
84 </plugin>
85 </plugins>
86 </build>
xuzhang41ad7282015-08-07 15:07:34 +080087
88</project>