blob: 160c8c6dacff2e94513a99057cf1b10eab67ed98 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -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 -->
tom0eb04ca2014-08-25 14:34:51 -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</artifactId>
28 <version>1.0.0-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <artifactId>onos-web</artifactId>
33 <packaging>pom</packaging>
34
35 <description>ONOS web root project</description>
36
37 <modules>
38 <module>gui</module>
39 <module>api</module>
40 </modules>
41
42 <properties>
43 <web.context>default</web.context>
44 </properties>
45
46 <dependencies>
47 <dependency>
48 <groupId>org.onlab.onos</groupId>
49 <artifactId>onos-api</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.onlab.onos</groupId>
tom94bb4a42014-08-27 22:12:02 -070054 <artifactId>onlab-osgi</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070055 <version>${project.version}</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onlab.onos</groupId>
tom94bb4a42014-08-27 22:12:02 -070060 <artifactId>onlab-rest</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070061 <version>${project.version}</version>
62 </dependency>
63
64 <dependency>
Thomas Vachuska9252bc32014-10-23 02:33:25 -070065 <groupId>com.google.guava</groupId>
66 <artifactId>guava</artifactId>
67 </dependency>
68
69 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070070 <groupId>com.sun.jersey</groupId>
71 <artifactId>jersey-servlet</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>com.sun.jersey.jersey-test-framework</groupId>
75 <artifactId>jersey-test-framework-core</artifactId>
76 <version>1.18.1</version>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>com.sun.jersey.jersey-test-framework</groupId>
81 <artifactId>jersey-test-framework-grizzly2</artifactId>
82 <version>1.18.1</version>
83 <scope>test</scope>
84 </dependency>
85
86 <dependency>
87 <groupId>com.fasterxml.jackson.core</groupId>
88 <artifactId>jackson-databind</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>com.fasterxml.jackson.core</groupId>
93 <artifactId>jackson-annotations</artifactId>
94 </dependency>
95
96 <dependency>
97 <groupId>org.osgi</groupId>
98 <artifactId>org.osgi.core</artifactId>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>org.apache.felix.scr.annotations</artifactId>
103 </dependency>
104 </dependencies>
105
106 <build>
107 <plugins>
108 <plugin>
109 <groupId>org.apache.felix</groupId>
110 <artifactId>maven-bundle-plugin</artifactId>
111 <extensions>true</extensions>
112 <configuration>
113 <instructions>
114 <_wab>src/main/webapp/</_wab>
115 <Bundle-SymbolicName>
116 ${project.groupId}.${project.artifactId}
117 </Bundle-SymbolicName>
118 <Import-Package>
Thomas Vachuska9252bc32014-10-23 02:33:25 -0700119 org.slf4j,
tom0eb04ca2014-08-25 14:34:51 -0700120 org.osgi.framework,
121 javax.ws.rs,javax.ws.rs.core,
122 com.sun.jersey.api.core,
123 com.sun.jersey.spi.container.servlet,
124 com.sun.jersey.server.impl.container.servlet,
125 com.fasterxml.jackson.databind,
126 com.fasterxml.jackson.databind.node,
Thomas Vachuska9252bc32014-10-23 02:33:25 -0700127 com.google.common.base.*,
128 org.onlab.packet.*,
tom0eb04ca2014-08-25 14:34:51 -0700129 org.onlab.rest.*,
tom5ac51882014-08-27 18:10:33 -0700130 org.onlab.onos.*
tom0eb04ca2014-08-25 14:34:51 -0700131 </Import-Package>
132 <Web-ContextPath>${web.context}</Web-ContextPath>
133 </instructions>
134 </configuration>
135 </plugin>
136 </plugins>
137 </build>
138
139</project>