blob: 0efbd599c2ef951d62e50617310d556843b26ae3 [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<!--
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 ~ Copyright 2014 Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ 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
Thomas Vachuska781d18b2014-10-27 10:31:25 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ 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.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070016 -->
tom0eb04ca2014-08-25 14:34:51 -070017<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.onlab.onos</groupId>
24 <artifactId>onos</artifactId>
25 <version>1.0.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-web</artifactId>
30 <packaging>pom</packaging>
31
32 <description>ONOS web root project</description>
33
34 <modules>
35 <module>gui</module>
36 <module>api</module>
37 </modules>
38
39 <properties>
40 <web.context>default</web.context>
41 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onlab.onos</groupId>
46 <artifactId>onos-api</artifactId>
47 </dependency>
48
49 <dependency>
50 <groupId>org.onlab.onos</groupId>
tom94bb4a42014-08-27 22:12:02 -070051 <artifactId>onlab-osgi</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070052 <version>${project.version}</version>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onlab.onos</groupId>
tom94bb4a42014-08-27 22:12:02 -070057 <artifactId>onlab-rest</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070058 <version>${project.version}</version>
59 </dependency>
Pingping32fa30c2014-10-23 15:24:26 -070060 <dependency>
61 <groupId>org.onlab.onos</groupId>
62 <artifactId>onlab-junit</artifactId>
63 <scope>test</scope>
64 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070065
66 <dependency>
Thomas Vachuska9252bc32014-10-23 02:33:25 -070067 <groupId>com.google.guava</groupId>
68 <artifactId>guava</artifactId>
69 </dependency>
70
71 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070072 <groupId>com.sun.jersey</groupId>
73 <artifactId>jersey-servlet</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>com.sun.jersey.jersey-test-framework</groupId>
77 <artifactId>jersey-test-framework-core</artifactId>
78 <version>1.18.1</version>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>com.sun.jersey.jersey-test-framework</groupId>
83 <artifactId>jersey-test-framework-grizzly2</artifactId>
84 <version>1.18.1</version>
85 <scope>test</scope>
86 </dependency>
87
88 <dependency>
89 <groupId>com.fasterxml.jackson.core</groupId>
90 <artifactId>jackson-databind</artifactId>
91 </dependency>
92
93 <dependency>
94 <groupId>com.fasterxml.jackson.core</groupId>
95 <artifactId>jackson-annotations</artifactId>
96 </dependency>
97
98 <dependency>
99 <groupId>org.osgi</groupId>
100 <artifactId>org.osgi.core</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>org.apache.felix.scr.annotations</artifactId>
105 </dependency>
106 </dependencies>
107
108 <build>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>maven-bundle-plugin</artifactId>
113 <extensions>true</extensions>
114 <configuration>
115 <instructions>
116 <_wab>src/main/webapp/</_wab>
117 <Bundle-SymbolicName>
118 ${project.groupId}.${project.artifactId}
119 </Bundle-SymbolicName>
120 <Import-Package>
Thomas Vachuska9252bc32014-10-23 02:33:25 -0700121 org.slf4j,
tom0eb04ca2014-08-25 14:34:51 -0700122 org.osgi.framework,
123 javax.ws.rs,javax.ws.rs.core,
124 com.sun.jersey.api.core,
125 com.sun.jersey.spi.container.servlet,
126 com.sun.jersey.server.impl.container.servlet,
127 com.fasterxml.jackson.databind,
128 com.fasterxml.jackson.databind.node,
Thomas Vachuska9252bc32014-10-23 02:33:25 -0700129 com.google.common.base.*,
130 org.onlab.packet.*,
tom0eb04ca2014-08-25 14:34:51 -0700131 org.onlab.rest.*,
tom5ac51882014-08-27 18:10:33 -0700132 org.onlab.onos.*
tom0eb04ca2014-08-25 14:34:51 -0700133 </Import-Package>
134 <Web-ContextPath>${web.context}</Web-ContextPath>
135 </instructions>
136 </configuration>
137 </plugin>
138 </plugins>
139 </build>
140
141</project>