Jian Li | 0967cd7 | 2015-11-25 17:38:48 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Jian Li | c132c11 | 2016-01-28 20:27:34 -0800 | [diff] [blame] | 3 | ~ Copyright 2015-2016 Open Networking Laboratory |
Jian Li | 0967cd7 | 2015-11-25 17:38:48 -0800 | [diff] [blame] | 4 | ~ |
| 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 |
| 8 | ~ |
| 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. |
| 16 | --> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Jian Li | 0967cd7 | 2015-11-25 17:38:48 -0800 | [diff] [blame] | 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
| 23 | <artifactId>onos-apps</artifactId> |
Brian O'Connor | 880dc20d | 2015-12-16 22:53:14 -0800 | [diff] [blame] | 24 | <version>1.5.0-SNAPSHOT</version> |
Jian Li | 0967cd7 | 2015-11-25 17:38:48 -0800 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-app-cpman</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
Jian Li | c132c11 | 2016-01-28 20:27:34 -0800 | [diff] [blame] | 31 | <url>http://onosproject.org</url> |
| 32 | |
Jian Li | 0967cd7 | 2015-11-25 17:38:48 -0800 | [diff] [blame] | 33 | <description>Control Plane Management Application</description> |
| 34 | |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 35 | <properties> |
| 36 | <onos.app.name>org.onosproject.cpman</onos.app.name> |
| 37 | <onos.app.category>default</onos.app.category> |
| 38 | <onos.app.url>http://onosproject.org</onos.app.url> |
Jian Li | e044d1a | 2016-01-25 09:01:20 -0800 | [diff] [blame] | 39 | <onos.app.readme>Control plane management application.</onos.app.readme> |
Jian Li | c132c11 | 2016-01-28 20:27:34 -0800 | [diff] [blame] | 40 | <web.context>/onos/cpman</web.context> |
| 41 | <api.version>1.0.0</api.version> |
| 42 | <api.title>Control Plane Manager REST API</api.title> |
| 43 | <api.description> |
| 44 | APIs for interacting with the Control Plane Management application. |
| 45 | </api.description> |
| 46 | <api.package>org.onosproject.cpman.rest</api.package> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 47 | </properties> |
| 48 | |
Jian Li | 0967cd7 | 2015-11-25 17:38:48 -0800 | [diff] [blame] | 49 | <dependencies> |
| 50 | <dependency> |
Jian Li | 6080432 | 2015-12-02 14:46:31 -0800 | [diff] [blame] | 51 | <groupId>org.osgi</groupId> |
| 52 | <artifactId>org.osgi.compendium</artifactId> |
| 53 | </dependency> |
| 54 | <dependency> |
Jian Li | c132c11 | 2016-01-28 20:27:34 -0800 | [diff] [blame] | 55 | <groupId>org.osgi</groupId> |
| 56 | <artifactId>org.osgi.core</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.apache.karaf.shell</groupId> |
| 64 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 65 | <scope>compile</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.onosproject</groupId> |
| 69 | <artifactId>onos-cli</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onos-core-serializers</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
Jian Li | 6080432 | 2015-12-02 14:46:31 -0800 | [diff] [blame] | 78 | <groupId>org.onosproject</groupId> |
| 79 | <artifactId>onlab-junit</artifactId> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
Jian Li | c132c11 | 2016-01-28 20:27:34 -0800 | [diff] [blame] | 84 | <artifactId>onos-rest</artifactId> |
| 85 | <version>${project.version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.onosproject</groupId> |
| 89 | <artifactId>onlab-rest</artifactId> |
| 90 | <version>${project.version}</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.onosproject</groupId> |
Jian Li | 6080432 | 2015-12-02 14:46:31 -0800 | [diff] [blame] | 94 | <artifactId>onos-api</artifactId> |
| 95 | <version>${project.version}</version> |
| 96 | <classifier>tests</classifier> |
| 97 | <scope>test</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.onosproject</groupId> |
| 101 | <artifactId>onlab-misc</artifactId> |
Jian Li | c132c11 | 2016-01-28 20:27:34 -0800 | [diff] [blame] | 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>javax.ws.rs</groupId> |
| 105 | <artifactId>jsr311-api</artifactId> |
| 106 | <version>1.1.1</version> |
| 107 | <scope>provided</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>com.sun.jersey</groupId> |
| 111 | <artifactId>jersey-servlet</artifactId> |
| 112 | </dependency> |
| 113 | |
| 114 | <dependency> |
| 115 | <groupId>com.fasterxml.jackson.core</groupId> |
| 116 | <artifactId>jackson-databind</artifactId> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>com.fasterxml.jackson.core</groupId> |
| 120 | <artifactId>jackson-annotations</artifactId> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>com.sun.jersey</groupId> |
| 124 | <artifactId>jersey-client</artifactId> |
| 125 | <scope>test</scope> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>org.easymock</groupId> |
| 129 | <artifactId>easymock</artifactId> |
| 130 | <scope>test</scope> |
| 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 134 | <artifactId>jersey-test-framework-core</artifactId> |
| 135 | <scope>test</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 139 | <artifactId>jersey-test-framework-grizzly2</artifactId> |
| 140 | <scope>test</scope> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>org.onosproject</groupId> |
| 144 | <artifactId>onlab-osgi</artifactId> |
Jian Li | 6080432 | 2015-12-02 14:46:31 -0800 | [diff] [blame] | 145 | <version>${project.version}</version> |
| 146 | <classifier>tests</classifier> |
| 147 | <scope>test</scope> |
Jian Li | 0967cd7 | 2015-11-25 17:38:48 -0800 | [diff] [blame] | 148 | </dependency> |
| 149 | </dependencies> |
Jian Li | 6080432 | 2015-12-02 14:46:31 -0800 | [diff] [blame] | 150 | |
| 151 | <build> |
| 152 | <plugins> |
| 153 | <plugin> |
| 154 | <groupId>org.apache.felix</groupId> |
| 155 | <artifactId>maven-bundle-plugin</artifactId> |
Jian Li | c132c11 | 2016-01-28 20:27:34 -0800 | [diff] [blame] | 156 | <extensions>true</extensions> |
| 157 | <configuration> |
| 158 | <instructions> |
| 159 | <_wab>src/main/webapp/</_wab> |
| 160 | <Include-Resource> |
| 161 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 162 | {maven-resources} |
| 163 | </Include-Resource> |
| 164 | <Bundle-SymbolicName> |
| 165 | ${project.groupId}.${project.artifactId} |
| 166 | </Bundle-SymbolicName> |
| 167 | <Import-Package> |
| 168 | org.slf4j, |
| 169 | org.osgi.framework, |
| 170 | javax.ws.rs, |
| 171 | javax.ws.rs.core, |
| 172 | com.sun.jersey.api.core, |
| 173 | com.sun.jersey.spi.container.servlet, |
| 174 | com.sun.jersey.server.impl.container.servlet, |
| 175 | com.fasterxml.jackson.databind, |
| 176 | com.fasterxml.jackson.databind.node, |
| 177 | com.fasterxml.jackson.core, |
| 178 | org.apache.karaf.shell.commands, |
| 179 | org.apache.karaf.shell.console, |
| 180 | com.google.common.*, |
| 181 | org.onlab.packet.*, |
| 182 | org.onlab.rest.*, |
| 183 | org.onosproject.*, |
| 184 | org.onlab.util.*, |
| 185 | org.jboss.netty.util.* |
| 186 | </Import-Package> |
| 187 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 188 | </instructions> |
| 189 | </configuration> |
Jian Li | 6080432 | 2015-12-02 14:46:31 -0800 | [diff] [blame] | 190 | </plugin> |
| 191 | </plugins> |
| 192 | </build> |
| 193 | </project> |