blob: 70c0306fd7d39a464bdc6adb1b683340e178c608 [file] [log] [blame]
Thomas Vachuskab6451472015-03-31 16:03:56 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
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 -->
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>
24 <artifactId>onos-apps-test</artifactId>
25 <version>1.2.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-demo</artifactId>
30 <packaging>bundle</packaging>
31
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070032 <description>Flow throughput test application</description>
Thomas Vachuskab6451472015-03-31 16:03:56 -070033
34 <properties>
35 <web.context>/onos/demo</web.context>
36 </properties>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.osgi</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onlab-rest</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-rest</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54
55 <dependency>
56 <groupId>com.sun.jersey</groupId>
57 <artifactId>jersey-servlet</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-databind</artifactId>
62 </dependency>
63
64 <dependency>
65 <groupId>com.fasterxml.jackson.core</groupId>
66 <artifactId>jackson-annotations</artifactId>
67 </dependency>
68
69 <dependency>
70 <groupId>org.osgi</groupId>
71 <artifactId>org.osgi.core</artifactId>
72 </dependency>
73 </dependencies>
74
75 <build>
76 <plugins>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
80 <extensions>true</extensions>
81 <configuration>
82 <instructions>
83 <_wab>src/main/webapp/</_wab>
84 <Bundle-SymbolicName>
85 ${project.groupId}.${project.artifactId}
86 </Bundle-SymbolicName>
87 <Import-Package>
88 org.slf4j,
89 org.osgi.framework,
90 javax.ws.rs,javax.ws.rs.core,
91 com.sun.jersey.api.core,
92 com.sun.jersey.spi.container.servlet,
93 com.sun.jersey.server.impl.container.servlet,
94 com.fasterxml.jackson.databind,
95 com.fasterxml.jackson.databind.node,
96 org.apache.commons.lang.math.*,
97 com.google.common.*,
98 org.onlab.packet.*,
99 org.onlab.rest.*,
100 org.onosproject.*,
101 org.onlab.util.*,
102 org.jboss.netty.util.*
103 </Import-Package>
104 <Web-ContextPath>${web.context}</Web-ContextPath>
105 </instructions>
106 </configuration>
107 </plugin>
108 </plugins>
109 </build>
110
111</project>