blob: f59990db7ca5fa60f5f8369bdb51a7b727a98b69 [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<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
Thomas Vachuska58de4162015-09-10 16:15:33 -07004 ~
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>
Ray Milkey64677e92017-08-01 10:48:08 -070025 <version>1.11.0-SNAPSHOT</version>
Thomas Vachuska58de4162015-09-10 16:15:33 -070026 </parent>
xuzhang41ad7282015-08-07 15:07:34 +080027
28
samueljccda82eb82015-10-07 16:29:52 -070029 <artifactId>onos-app-vtn-web</artifactId>
Thomas Vachuska58de4162015-09-10 16:15:33 -070030 <packaging>bundle</packaging>
31 <properties>
Thomas Vachuska58de4162015-09-10 16:15:33 -070032 <web.context>/onos/vtn</web.context>
33 </properties>
xuzhang41ad7282015-08-07 15:07:34 +080034
Thomas Vachuska58de4162015-09-10 16:15:33 -070035 <dependencies>
36 <dependency>
37 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080038 <artifactId>javax.ws.rs-api</artifactId>
39 <version>2.0.1</version>
Thomas Vachuska58de4162015-09-10 16:15:33 -070040 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
samueljccda82eb82015-10-07 16:29:52 -070043 <artifactId>onos-app-vtn-rsc</artifactId>
Thomas Vachuska58de4162015-09-10 16:15:33 -070044 <version>${project.version}</version>
45 </dependency>
Ray Milkey7c251822016-04-06 17:38:25 -070046 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-rest</artifactId>
49 <version>${project.version}</version>
50 <classifier>tests</classifier>
51 <scope>test</scope>
52 </dependency>
Thomas Vachuska58de4162015-09-10 16:15:33 -070053 </dependencies>
54 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
59 <extensions>true</extensions>
60 <configuration>
61 <instructions>
62 <_wab>src/main/webapp/</_wab>
63 <Bundle-SymbolicName>
64 ${project.groupId}.${project.artifactId}
65 </Bundle-SymbolicName>
66 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -070067 *,org.glassfish.jersey.servlet
Thomas Vachuska58de4162015-09-10 16:15:33 -070068 </Import-Package>
69 <Web-ContextPath>${web.context}</Web-ContextPath>
70 </instructions>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
xuzhang41ad7282015-08-07 15:07:34 +080075
Ray Milkey7c251822016-04-06 17:38:25 -070076</project>