blob: 036a7d198095b65a0adeb8b6fb86ab3673a87415 [file] [log] [blame]
Thejaswi N K46f36d22016-06-13 21:02:50 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-present 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 -->
17<project
18 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-app-bgpflow</artifactId>
Thomas Vachuskaf402be32016-06-16 20:14:40 -070025 <version>1.6.0-SNAPSHOT</version>
Thejaswi N K46f36d22016-06-13 21:02:50 +053026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-bgp-web</artifactId>
30 <packaging>bundle</packaging>
31 <properties>
32 <web.context>/onos/bgp</web.context>
33 </properties>
34
35 <dependencies>
36 <dependency>
37 <groupId>javax.ws.rs</groupId>
38 <artifactId>javax.ws.rs-api</artifactId>
39 <version>2.0.1</version>
40 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-app-bgp-flowmgr</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-rest</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>com.google.guava</groupId>
53 <artifactId>guava-testlib</artifactId>
54 </dependency>
55 </dependencies>
56 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>maven-bundle-plugin</artifactId>
61 <extensions>true</extensions>
62 <configuration>
63 <instructions>
64 <_wab>src/main/webapp/</_wab>
65 <Bundle-SymbolicName>
66 ${project.groupId}.${project.artifactId}
67 </Bundle-SymbolicName>
68 <Import-Package>
69 *,org.glassfish.jersey.servlet
70 </Import-Package>
71 <Web-ContextPath>${web.context}</Web-ContextPath>
72 </instructions>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
77
78</project>