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> |
| 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> |
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> |
| 56 | <groupId>org.onlab.onos</groupId> |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 57 | <artifactId>onlab-rest</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 58 | <version>${project.version}</version> |
| 59 | </dependency> |
Pingping | 32fa30c | 2014-10-23 15:24:26 -0700 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.onlab.onos</groupId> |
| 62 | <artifactId>onlab-junit</artifactId> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 65 | |
| 66 | <dependency> |
Thomas Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 67 | <groupId>com.google.guava</groupId> |
| 68 | <artifactId>guava</artifactId> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 72 | <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> |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 112 | <artifactId>maven-scr-plugin</artifactId> |
| 113 | </plugin> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.felix</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 116 | <artifactId>maven-bundle-plugin</artifactId> |
| 117 | <extensions>true</extensions> |
| 118 | <configuration> |
| 119 | <instructions> |
| 120 | <_wab>src/main/webapp/</_wab> |
| 121 | <Bundle-SymbolicName> |
| 122 | ${project.groupId}.${project.artifactId} |
| 123 | </Bundle-SymbolicName> |
| 124 | <Import-Package> |
Thomas Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 125 | org.slf4j, |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 126 | org.osgi.framework, |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 127 | javax.ws.rs,javax.ws.rs.core,javax.ws.rs.ext, |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 128 | com.sun.jersey.api.core, |
| 129 | com.sun.jersey.spi.container.servlet, |
| 130 | com.sun.jersey.server.impl.container.servlet, |
| 131 | com.fasterxml.jackson.databind, |
| 132 | com.fasterxml.jackson.databind.node, |
Thomas Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 133 | com.google.common.base.*, |
Thomas Vachuska | 7d638d3 | 2014-11-07 10:24:43 -0800 | [diff] [blame] | 134 | org.eclipse.jetty.websocket.*, |
Thomas Vachuska | 21e0364 | 2014-11-11 10:23:02 -0800 | [diff] [blame] | 135 | org.onlab.util.*, |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 136 | org.onlab.osgi.*, |
Thomas Vachuska | 9252bc3 | 2014-10-23 02:33:25 -0700 | [diff] [blame] | 137 | org.onlab.packet.*, |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 138 | org.onlab.rest.*, |
tom | 5ac5188 | 2014-08-27 18:10:33 -0700 | [diff] [blame] | 139 | org.onlab.onos.* |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 140 | </Import-Package> |
| 141 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 142 | </instructions> |
| 143 | </configuration> |
| 144 | </plugin> |
| 145 | </plugins> |
| 146 | </build> |
| 147 | |
| 148 | </project> |