blob: 015ba63ff021adaf99dc13d58add29d279253681 [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 Milkeya09f87f2017-11-21 09:38:31 -080025 <version>1.13.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>
Thomas Vachuska58de4162015-09-10 16:15:33 -070039 </dependency>
40 <dependency>
41 <groupId>org.onosproject</groupId>
samueljccda82eb82015-10-07 16:29:52 -070042 <artifactId>onos-app-vtn-rsc</artifactId>
Thomas Vachuska58de4162015-09-10 16:15:33 -070043 <version>${project.version}</version>
44 </dependency>
Ray Milkey7c251822016-04-06 17:38:25 -070045 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-rest</artifactId>
48 <version>${project.version}</version>
49 <classifier>tests</classifier>
50 <scope>test</scope>
51 </dependency>
Thomas Vachuska58de4162015-09-10 16:15:33 -070052 </dependencies>
53 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-bundle-plugin</artifactId>
58 <extensions>true</extensions>
59 <configuration>
60 <instructions>
61 <_wab>src/main/webapp/</_wab>
62 <Bundle-SymbolicName>
63 ${project.groupId}.${project.artifactId}
64 </Bundle-SymbolicName>
65 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -070066 *,org.glassfish.jersey.servlet
Thomas Vachuska58de4162015-09-10 16:15:33 -070067 </Import-Package>
68 <Web-ContextPath>${web.context}</Web-ContextPath>
69 </instructions>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
xuzhang41ad7282015-08-07 15:07:34 +080074
Ray Milkey7c251822016-04-06 17:38:25 -070075</project>