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 | <!-- |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 3 | ~ Copyright 2014 Open Networking Laboratory |
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> |
Brian O'Connor | 7f2e9bf | 2014-12-04 23:35:13 -0800 | [diff] [blame] | 25 | <version>1.1.0-SNAPSHOT</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 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> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 45 | <groupId>org.onosproject</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 46 | <artifactId>onos-api</artifactId> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 50 | <groupId>org.onosproject</groupId> |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 51 | <artifactId>onlab-osgi</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 56 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | a7a4e5d | 2015-02-11 14:20:58 -0800 | [diff] [blame] | 57 | <artifactId>onlab-osgi</artifactId> |
| 58 | <classifier>tests</classifier> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>org.onosproject</groupId> |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 64 | <artifactId>onlab-rest</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 65 | <version>${project.version}</version> |
| 66 | </dependency> |
Pingping | 32fa30c | 2014-10-23 15:24:26 -0700 | [diff] [blame] | 67 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 68 | <groupId>org.onosproject</groupId> |
Pingping | 32fa30c | 2014-10-23 15:24:26 -0700 | [diff] [blame] | 69 | <artifactId>onlab-junit</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 72 | |
Ray Milkey | 4f5de00 | 2014-12-17 19:26:11 -0800 | [diff] [blame] | 73 | |
Thomas Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 74 | |
| 75 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 76 | <groupId>com.sun.jersey</groupId> |
| 77 | <artifactId>jersey-servlet</artifactId> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 81 | <artifactId>jersey-test-framework-core</artifactId> |
| 82 | <version>1.18.1</version> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 87 | <artifactId>jersey-test-framework-grizzly2</artifactId> |
| 88 | <version>1.18.1</version> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
| 93 | <groupId>com.fasterxml.jackson.core</groupId> |
| 94 | <artifactId>jackson-databind</artifactId> |
| 95 | </dependency> |
| 96 | |
| 97 | <dependency> |
| 98 | <groupId>com.fasterxml.jackson.core</groupId> |
| 99 | <artifactId>jackson-annotations</artifactId> |
| 100 | </dependency> |
| 101 | |
| 102 | <dependency> |
| 103 | <groupId>org.osgi</groupId> |
| 104 | <artifactId>org.osgi.core</artifactId> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.apache.felix</groupId> |
| 108 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 109 | </dependency> |
| 110 | </dependencies> |
| 111 | |
| 112 | <build> |
| 113 | <plugins> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.felix</groupId> |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 116 | <artifactId>maven-scr-plugin</artifactId> |
| 117 | </plugin> |
| 118 | <plugin> |
| 119 | <groupId>org.apache.felix</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 120 | <artifactId>maven-bundle-plugin</artifactId> |
| 121 | <extensions>true</extensions> |
| 122 | <configuration> |
| 123 | <instructions> |
| 124 | <_wab>src/main/webapp/</_wab> |
| 125 | <Bundle-SymbolicName> |
| 126 | ${project.groupId}.${project.artifactId} |
| 127 | </Bundle-SymbolicName> |
| 128 | <Import-Package> |
Thomas Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 129 | org.slf4j, |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 130 | org.osgi.framework, |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 131 | javax.ws.rs,javax.ws.rs.core,javax.ws.rs.ext, |
Ray Milkey | 2287d88 | 2015-01-30 10:15:20 -0800 | [diff] [blame] | 132 | com.sun.jersey.api, |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 133 | com.sun.jersey.spi.container.servlet, |
| 134 | com.sun.jersey.server.impl.container.servlet, |
| 135 | com.fasterxml.jackson.databind, |
| 136 | com.fasterxml.jackson.databind.node, |
Thomas Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 137 | com.google.common.base.*, |
Ray Milkey | 4f5de00 | 2014-12-17 19:26:11 -0800 | [diff] [blame] | 138 | com.google.common.collect.*, |
Thomas Vachuska | 7d638d3 | 2014-11-07 10:24:43 -0800 | [diff] [blame] | 139 | org.eclipse.jetty.websocket.*, |
Thomas Vachuska | 21e0364 | 2014-11-11 10:23:02 -0800 | [diff] [blame] | 140 | org.onlab.util.*, |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 141 | org.onlab.osgi.*, |
Thomas Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 142 | org.onlab.packet.*, |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 143 | org.onlab.rest.*, |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 144 | org.onosproject.* |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 145 | </Import-Package> |
| 146 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 147 | </instructions> |
| 148 | </configuration> |
| 149 | </plugin> |
| 150 | </plugins> |
| 151 | </build> |
| 152 | |
| 153 | </project> |