tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Foundation |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 4 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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 |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 8 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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. |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 16 | --> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 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> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 23 | <groupId>org.onosproject</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 24 | <artifactId>onos</artifactId> |
ONOS Jenkins User | df890c9 | 2018-07-11 20:45:54 +0000 | [diff] [blame] | 25 | <version>1.13.3-SNAPSHOT</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 26 | </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'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 44 | <groupId>org.onosproject</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 45 | <artifactId>onos-api</artifactId> |
| 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 49 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | f0397b5 | 2015-05-29 13:50:17 -0700 | [diff] [blame] | 50 | <artifactId>onos-incubator-api</artifactId> |
| 51 | </dependency> |
| 52 | |
| 53 | <dependency> |
| 54 | <groupId>org.onosproject</groupId> |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 55 | <artifactId>onlab-osgi</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 59 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | a7a4e5d | 2015-02-11 14:20:58 -0800 | [diff] [blame] | 60 | <artifactId>onlab-osgi</artifactId> |
| 61 | <classifier>tests</classifier> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 67 | <artifactId>onlab-rest</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 68 | <version>${project.version}</version> |
| 69 | </dependency> |
Pingping | 32fa30c | 2014-10-23 15:24:26 -0700 | [diff] [blame] | 70 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 71 | <groupId>org.onosproject</groupId> |
Pingping | 32fa30c | 2014-10-23 15:24:26 -0700 | [diff] [blame] | 72 | <artifactId>onlab-junit</artifactId> |
| 73 | <scope>test</scope> |
| 74 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 75 | |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 76 | <!-- 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 Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 81 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 82 | <groupId>org.glassfish.jersey.containers</groupId> |
| 83 | <artifactId>jersey-container-servlet</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 84 | </dependency> |
| 85 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 86 | <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> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 91 | <artifactId>jersey-test-framework-core</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 92 | <scope>test</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 95 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
Jian Li | 4fb7177 | 2016-04-20 09:41:56 -0700 | [diff] [blame] | 96 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 97 | <scope>test</scope> |
| 98 | </dependency> |
Jian Li | 979f634 | 2018-02-27 21:26:12 +0900 | [diff] [blame] | 99 | <dependency> |
| 100 | <groupId>org.glassfish.jersey.core</groupId> |
| 101 | <artifactId>jersey-common</artifactId> |
Jian Li | c5cd662 | 2018-03-08 12:08:56 +0900 | [diff] [blame] | 102 | <scope>test</scope> |
Jian Li | 979f634 | 2018-02-27 21:26:12 +0900 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.glassfish.jersey.inject</groupId> |
| 106 | <artifactId>jersey-hk2</artifactId> |
Jian Li | c5cd662 | 2018-03-08 12:08:56 +0900 | [diff] [blame] | 107 | <scope>test</scope> |
Jian Li | 979f634 | 2018-02-27 21:26:12 +0900 | [diff] [blame] | 108 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 109 | |
| 110 | <dependency> |
| 111 | <groupId>com.fasterxml.jackson.core</groupId> |
| 112 | <artifactId>jackson-databind</artifactId> |
| 113 | </dependency> |
| 114 | |
| 115 | <dependency> |
| 116 | <groupId>com.fasterxml.jackson.core</groupId> |
| 117 | <artifactId>jackson-annotations</artifactId> |
| 118 | </dependency> |
| 119 | |
| 120 | <dependency> |
| 121 | <groupId>org.osgi</groupId> |
| 122 | <artifactId>org.osgi.core</artifactId> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.apache.felix</groupId> |
| 126 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 127 | </dependency> |
| 128 | </dependencies> |
| 129 | |
| 130 | <build> |
| 131 | <plugins> |
| 132 | <plugin> |
| 133 | <groupId>org.apache.felix</groupId> |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 134 | <artifactId>maven-scr-plugin</artifactId> |
| 135 | </plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 136 | </plugins> |
| 137 | </build> |
| 138 | |
| 139 | </project> |