blob: f3581a2fe0fe33373b0293f16f5a05fd2a6bfdc7 [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>
Brian O'Connor30a412d2015-05-21 18:04:26 -070025 <version>1.2.0-SNAPSHOT</version>
Thomas Vachuskab6451472015-03-31 16:03:56 -070026 <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>
Thomas Vachuska586afd82015-04-17 11:06:53 -070035 <onos.app.name>org.onosproject.demo</onos.app.name>
Thomas Vachuskab6451472015-03-31 16:03:56 -070036 <web.context>/onos/demo</web.context>
37 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.compendium</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onlab-rest</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-rest</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55
56 <dependency>
57 <groupId>com.sun.jersey</groupId>
58 <artifactId>jersey-servlet</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>com.fasterxml.jackson.core</groupId>
62 <artifactId>jackson-databind</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>com.fasterxml.jackson.core</groupId>
67 <artifactId>jackson-annotations</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.osgi</groupId>
72 <artifactId>org.osgi.core</artifactId>
73 </dependency>
74 </dependencies>
75
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 <extensions>true</extensions>
82 <configuration>
83 <instructions>
84 <_wab>src/main/webapp/</_wab>
85 <Bundle-SymbolicName>
86 ${project.groupId}.${project.artifactId}
87 </Bundle-SymbolicName>
88 <Import-Package>
89 org.slf4j,
90 org.osgi.framework,
91 javax.ws.rs,javax.ws.rs.core,
92 com.sun.jersey.api.core,
93 com.sun.jersey.spi.container.servlet,
94 com.sun.jersey.server.impl.container.servlet,
95 com.fasterxml.jackson.databind,
96 com.fasterxml.jackson.databind.node,
97 org.apache.commons.lang.math.*,
98 com.google.common.*,
99 org.onlab.packet.*,
100 org.onlab.rest.*,
101 org.onosproject.*,
102 org.onlab.util.*,
103 org.jboss.netty.util.*
104 </Import-Package>
105 <Web-ContextPath>${web.context}</Web-ContextPath>
106 </instructions>
107 </configuration>
108 </plugin>
109 </plugins>
110 </build>
111
112</project>