blob: 9f037bbde14abeb377bf3a449105c65a4faf8bf2 [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>
Jonathan Hart63ddb742016-01-04 11:20:08 -080025 <version>1.5.0-SNAPSHOT</version>
Brian O'Connoraf0915a2015-03-17 21:07:18 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-tvue</artifactId>
30 <packaging>bundle</packaging>
31
Thomas Vachuska4f5008c2015-04-14 23:27:44 -070032 <description>Early prototype GUI - deprecated</description>
Brian O'Connoraf0915a2015-03-17 21:07:18 -070033
34 <properties>
Thomas Vachuskac83f3d32015-04-14 23:27:44 -070035 <onos.app.name>org.onosproject.tvue</onos.app.name>
Brian O'Connoraf0915a2015-03-17 21:07:18 -070036 <web.context>/onos/tvue</web.context>
37 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onlab-rest</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45
46 <dependency>
47 <groupId>com.sun.jersey</groupId>
48 <artifactId>jersey-servlet</artifactId>
49 </dependency>
50 <dependency>
Brian O'Connoraf0915a2015-03-17 21:07:18 -070051 <groupId>com.fasterxml.jackson.core</groupId>
52 <artifactId>jackson-databind</artifactId>
53 </dependency>
54
55 <dependency>
56 <groupId>com.fasterxml.jackson.core</groupId>
57 <artifactId>jackson-annotations</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.osgi</groupId>
62 <artifactId>org.osgi.core</artifactId>
63 </dependency>
64 </dependencies>
65
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 <extensions>true</extensions>
72 <configuration>
73 <instructions>
74 <_wab>src/main/webapp/</_wab>
75 <Bundle-SymbolicName>
76 ${project.groupId}.${project.artifactId}
77 </Bundle-SymbolicName>
78 <Import-Package>
79 org.osgi.framework,
80 javax.ws.rs,javax.ws.rs.core,
81 com.sun.jersey.api.core,
82 com.sun.jersey.spi.container.servlet,
83 com.sun.jersey.server.impl.container.servlet,
84 com.fasterxml.jackson.databind,
85 com.fasterxml.jackson.databind.node,
86 org.onlab.packet.*,
87 org.onlab.rest.*,
88 org.onosproject.*
89 </Import-Package>
90 <Web-ContextPath>${web.context}</Web-ContextPath>
91 </instructions>
92 </configuration>
93 </plugin>
94 </plugins>
95 </build>
96
97</project>