blob: 1e704e2ca78d1b8feb360f75a80114905964df52 [file] [log] [blame]
tom8bb16062014-09-12 14:47:46 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
tom8bb16062014-09-12 14:47:46 -070020<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onlab.onos</groupId>
27 <artifactId>onos-apps</artifactId>
28 <version>1.0.0-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
tom4009d2c2014-09-12 15:53:42 -070032 <artifactId>onos-app-tvue</artifactId>
tom8bb16062014-09-12 14:47:46 -070033 <packaging>bundle</packaging>
34
35 <description>ONOS simple topology viewer</description>
36
37 <properties>
38 <web.context>/onos/tvue</web.context>
39 </properties>
40
tomf297f392014-09-15 14:46:49 -070041 <dependencies>
42 <dependency>
43 <groupId>org.onlab.onos</groupId>
44 <artifactId>onlab-rest</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>com.sun.jersey</groupId>
50 <artifactId>jersey-servlet</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>com.sun.jersey.jersey-test-framework</groupId>
54 <artifactId>jersey-test-framework-core</artifactId>
55 <version>1.18.1</version>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>com.sun.jersey.jersey-test-framework</groupId>
60 <artifactId>jersey-test-framework-grizzly2</artifactId>
61 <version>1.18.1</version>
62 <scope>test</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>com.fasterxml.jackson.core</groupId>
67 <artifactId>jackson-databind</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>com.fasterxml.jackson.core</groupId>
72 <artifactId>jackson-annotations</artifactId>
73 </dependency>
74
75 <dependency>
76 <groupId>org.osgi</groupId>
77 <artifactId>org.osgi.core</artifactId>
78 </dependency>
tomf297f392014-09-15 14:46:49 -070079 </dependencies>
80
81 <build>
82 <plugins>
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-bundle-plugin</artifactId>
86 <extensions>true</extensions>
87 <configuration>
88 <instructions>
89 <_wab>src/main/webapp/</_wab>
90 <Bundle-SymbolicName>
91 ${project.groupId}.${project.artifactId}
92 </Bundle-SymbolicName>
93 <Import-Package>
94 org.osgi.framework,
95 javax.ws.rs,javax.ws.rs.core,
96 com.sun.jersey.api.core,
97 com.sun.jersey.spi.container.servlet,
98 com.sun.jersey.server.impl.container.servlet,
99 com.fasterxml.jackson.databind,
100 com.fasterxml.jackson.databind.node,
alshabib8aef1ad2014-09-15 17:47:31 -0700101 org.onlab.packet.*,
tomf297f392014-09-15 14:46:49 -0700102 org.onlab.rest.*,
103 org.onlab.onos.*
104 </Import-Package>
105 <Web-ContextPath>${web.context}</Web-ContextPath>
106 </instructions>
107 </configuration>
108 </plugin>
109 </plugins>
110 </build>
111
tom8bb16062014-09-12 14:47:46 -0700112</project>