blob: bbd03a746a5be399cdf039797037969871eea069 [file] [log] [blame]
Brian O'Connoraf0915a2015-03-17 21:07:18 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 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 xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
Brian O'Connor32e74602015-03-17 21:30:27 -070024 <artifactId>onos-app-samples</artifactId>
Brian O'Connoraf0915a2015-03-17 21:07:18 -070025 <version>1.2.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-tvue</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONOS simple topology viewer</description>
33
34 <properties>
35 <web.context>/onos/tvue</web.context>
36 </properties>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onlab-rest</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44
45 <dependency>
46 <groupId>com.sun.jersey</groupId>
47 <artifactId>jersey-servlet</artifactId>
48 </dependency>
49 <dependency>
Brian O'Connoraf0915a2015-03-17 21:07:18 -070050 <groupId>com.fasterxml.jackson.core</groupId>
51 <artifactId>jackson-databind</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>com.fasterxml.jackson.core</groupId>
56 <artifactId>jackson-annotations</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>org.osgi</groupId>
61 <artifactId>org.osgi.core</artifactId>
62 </dependency>
63 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-bundle-plugin</artifactId>
70 <extensions>true</extensions>
71 <configuration>
72 <instructions>
73 <_wab>src/main/webapp/</_wab>
74 <Bundle-SymbolicName>
75 ${project.groupId}.${project.artifactId}
76 </Bundle-SymbolicName>
77 <Import-Package>
78 org.osgi.framework,
79 javax.ws.rs,javax.ws.rs.core,
80 com.sun.jersey.api.core,
81 com.sun.jersey.spi.container.servlet,
82 com.sun.jersey.server.impl.container.servlet,
83 com.fasterxml.jackson.databind,
84 com.fasterxml.jackson.databind.node,
85 org.onlab.packet.*,
86 org.onlab.rest.*,
87 org.onosproject.*
88 </Import-Package>
89 <Web-ContextPath>${web.context}</Web-ContextPath>
90 </instructions>
91 </configuration>
92 </plugin>
93 </plugins>
94 </build>
95
96</project>