blob: 9bf48daf16b866daae09a6d5b7ba8b5de62a8438 [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'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.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>
Jian Li9d616492016-03-09 10:52:49 -080039 <artifactId>javax.ws.rs-api</artifactId>
40 <version>2.0.1</version>
Thomas Vachuska58de4162015-09-10 16:15:33 -070041 </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>
Ray Milkey7c251822016-04-06 17:38:25 -070047 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-rest</artifactId>
50 <version>${project.version}</version>
51 <classifier>tests</classifier>
52 <scope>test</scope>
53 </dependency>
Thomas Vachuska58de4162015-09-10 16:15:33 -070054 </dependencies>
55 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
60 <extensions>true</extensions>
61 <configuration>
62 <instructions>
63 <_wab>src/main/webapp/</_wab>
64 <Bundle-SymbolicName>
65 ${project.groupId}.${project.artifactId}
66 </Bundle-SymbolicName>
67 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -070068 *,org.glassfish.jersey.servlet
Thomas Vachuska58de4162015-09-10 16:15:33 -070069 </Import-Package>
70 <Web-ContextPath>${web.context}</Web-ContextPath>
71 </instructions>
72 </configuration>
73 </plugin>
74 </plugins>
75 </build>
xuzhang41ad7282015-08-07 15:07:34 +080076
Ray Milkey7c251822016-04-06 17:38:25 -070077</project>