blob: fdbfe00dfd046df3f6aaa4670c0b42950019f54e [file] [log] [blame]
Jian Lic35415d2016-01-14 17:22:31 -08001<?xml version="1.0" encoding="UTF-8"?>
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>
samueljccda82eb82015-10-07 16:29:52 -070024 <artifactId>onos-app-vtn</artifactId>
Brian O'Connor880dc20d2015-12-16 22:53:14 -080025 <version>1.5.0-SNAPSHOT</version>
Thomas Vachuska58de4162015-09-10 16:15:33 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
xuzhang41ad7282015-08-07 15:07:34 +080028
29
samueljccda82eb82015-10-07 16:29:52 -070030 <artifactId>onos-app-vtn-web</artifactId>
Thomas Vachuska58de4162015-09-10 16:15:33 -070031 <packaging>bundle</packaging>
32 <properties>
Thomas Vachuska58de4162015-09-10 16:15:33 -070033 <web.context>/onos/vtn</web.context>
34 </properties>
xuzhang41ad7282015-08-07 15:07:34 +080035
Thomas Vachuska58de4162015-09-10 16:15:33 -070036 <dependencies>
37 <dependency>
38 <groupId>javax.ws.rs</groupId>
39 <artifactId>jsr311-api</artifactId>
40 <version>1.1.1</version>
41 </dependency>
42 <dependency>
43 <groupId>org.onosproject</groupId>
samueljccda82eb82015-10-07 16:29:52 -070044 <artifactId>onos-app-vtn-rsc</artifactId>
Thomas Vachuska58de4162015-09-10 16:15:33 -070045 <version>${project.version}</version>
46 </dependency>
47 </dependencies>
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
53 <extensions>true</extensions>
54 <configuration>
55 <instructions>
56 <_wab>src/main/webapp/</_wab>
57 <Bundle-SymbolicName>
58 ${project.groupId}.${project.artifactId}
59 </Bundle-SymbolicName>
60 <Import-Package>
61 org.slf4j,
62 org.osgi.framework,
63 javax.ws.rs,
64 javax.ws.rs.core,
65 com.sun.jersey.api.core,
66 com.sun.jersey.spi.container.servlet,
67 com.sun.jersey.server.impl.container.servlet,
68 com.fasterxml.jackson.databind,
69 com.fasterxml.jackson.databind.node,
70 com.fasterxml.jackson.core,
71 org.apache.karaf.shell.commands,
72 org.apache.commons.lang.math.*,
73 com.google.common.*,
74 org.onlab.packet.*,
75 org.onlab.rest.*,
76 org.onosproject.*,
77 org.onlab.util.*,
78 org.jboss.netty.util.*
79 </Import-Package>
80 <Web-ContextPath>${web.context}</Web-ContextPath>
81 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
xuzhang41ad7282015-08-07 15:07:34 +080086
87</project>