blob: 2fe26d8277ffea3c2ab1e954e2ca141c7fdf497c [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<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2014-present 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>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tom0eb04ca2014-08-25 14:34:51 -070024 <artifactId>onos</artifactId>
Ray Milkey54a78512017-02-13 11:13:52 -080025 <version>1.10.0-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 </parent>
27
28 <artifactId>onos-web</artifactId>
29 <packaging>pom</packaging>
30
31 <description>ONOS web root project</description>
32
33 <modules>
34 <module>gui</module>
35 <module>api</module>
36 </modules>
37
38 <properties>
39 <web.context>default</web.context>
40 </properties>
41
42 <dependencies>
43 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080044 <groupId>org.onosproject</groupId>
tom0eb04ca2014-08-25 14:34:51 -070045 <artifactId>onos-api</artifactId>
46 </dependency>
47
48 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080049 <groupId>org.onosproject</groupId>
Thomas Vachuskaf0397b52015-05-29 13:50:17 -070050 <artifactId>onos-incubator-api</artifactId>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
tom94bb4a42014-08-27 22:12:02 -070055 <artifactId>onlab-osgi</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070056 </dependency>
57
58 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080059 <groupId>org.onosproject</groupId>
Yuta HIGUCHIa7a4e5d2015-02-11 14:20:58 -080060 <artifactId>onlab-osgi</artifactId>
61 <classifier>tests</classifier>
62 <scope>test</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>org.onosproject</groupId>
tom94bb4a42014-08-27 22:12:02 -070067 <artifactId>onlab-rest</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070068 <version>${project.version}</version>
69 </dependency>
Pingping32fa30c2014-10-23 15:24:26 -070070 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080071 <groupId>org.onosproject</groupId>
Pingping32fa30c2014-10-23 15:24:26 -070072 <artifactId>onlab-junit</artifactId>
73 <scope>test</scope>
74 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070075
Brian O'Connora450bd02016-04-04 14:00:37 -070076 <!-- TODO jersey-container-servlet and core may not be needed as dependencies
77
78 They are definitely not needed at compile time, but need to be added
79 as a bundle import for runtime; references are specified in web.xml
80 -->
Thomas Vachuska9252bc32014-10-23 02:33:25 -070081 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080082 <groupId>org.glassfish.jersey.containers</groupId>
83 <artifactId>jersey-container-servlet</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070084 </dependency>
85 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080086 <groupId>org.glassfish.jersey.containers</groupId>
87 <artifactId>jersey-container-servlet-core</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.glassfish.jersey.test-framework</groupId>
tom0eb04ca2014-08-25 14:34:51 -070091 <artifactId>jersey-test-framework-core</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070092 <scope>test</scope>
93 </dependency>
94 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080095 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
Jian Li4fb71772016-04-20 09:41:56 -070096 <artifactId>jersey-test-framework-provider-jetty</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070097 <scope>test</scope>
98 </dependency>
99
100 <dependency>
101 <groupId>com.fasterxml.jackson.core</groupId>
102 <artifactId>jackson-databind</artifactId>
103 </dependency>
104
105 <dependency>
106 <groupId>com.fasterxml.jackson.core</groupId>
107 <artifactId>jackson-annotations</artifactId>
108 </dependency>
109
110 <dependency>
111 <groupId>org.osgi</groupId>
112 <artifactId>org.osgi.core</artifactId>
113 </dependency>
114 <dependency>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>org.apache.felix.scr.annotations</artifactId>
117 </dependency>
118 </dependencies>
119
120 <build>
121 <plugins>
122 <plugin>
123 <groupId>org.apache.felix</groupId>
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -0800124 <artifactId>maven-scr-plugin</artifactId>
125 </plugin>
tom0eb04ca2014-08-25 14:34:51 -0700126 </plugins>
127 </build>
128
129</project>