Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Laboratory |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -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 | --> |
| 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/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
| 23 | <artifactId>onos-cpman</artifactId> |
Brian O'Connor | 955c316 | 2016-03-10 15:27:19 -0800 | [diff] [blame] | 24 | <version>1.6.0-SNAPSHOT</version> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-app-cpman</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <url>http://onosproject.org</url> |
| 32 | |
| 33 | <description>Control Plane Management Application</description> |
| 34 | |
| 35 | <properties> |
| 36 | <web.context>/onos/cpman</web.context> |
| 37 | <api.version>1.0.0</api.version> |
| 38 | <api.title>Control Plane Manager REST API</api.title> |
| 39 | <api.description> |
| 40 | APIs for interacting with the Control Plane Management application. |
| 41 | </api.description> |
| 42 | <api.package>org.onosproject.cpman.rest</api.package> |
| 43 | </properties> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-app-cpman-api</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
Jian Li | 1446aef | 2016-02-11 10:05:08 -0800 | [diff] [blame] | 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-of-provider-message</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 57 | <groupId>org.osgi</groupId> |
| 58 | <artifactId>org.osgi.compendium</artifactId> |
| 59 | </dependency> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.onosproject</groupId> |
| 62 | <artifactId>onos-cli</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 65 | <dependency> |
| 66 | <groupId>org.apache.karaf.shell</groupId> |
| 67 | <artifactId>org.apache.karaf.shell.console</artifactId> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 68 | </dependency> |
Jian Li | 85060ac | 2016-02-04 09:58:56 -0800 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.apache.felix</groupId> |
| 71 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 72 | </dependency> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>org.onosproject</groupId> |
| 75 | <artifactId>onlab-junit</artifactId> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
| 80 | <artifactId>onos-core-serializers</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.onosproject</groupId> |
| 86 | <artifactId>onos-incubator-api</artifactId> |
| 87 | <version>${project.version}</version> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.onosproject</groupId> |
| 91 | <artifactId>onos-api</artifactId> |
| 92 | <version>${project.version}</version> |
| 93 | <classifier>tests</classifier> |
| 94 | <scope>test</scope> |
| 95 | </dependency> |
| 96 | |
| 97 | <dependency> |
| 98 | <groupId>org.onosproject</groupId> |
| 99 | <artifactId>onos-rest</artifactId> |
| 100 | <version>${project.version}</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.onosproject</groupId> |
| 104 | <artifactId>onlab-rest</artifactId> |
| 105 | <version>${project.version}</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>javax.ws.rs</groupId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 109 | <artifactId>javax.ws.rs-api</artifactId> |
| 110 | <version>2.0.1</version> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 111 | </dependency> |
| 112 | <dependency> |
Jian Li | 4614890 | 2016-01-29 13:33:50 -0800 | [diff] [blame] | 113 | <groupId>org.rrd4j</groupId> |
| 114 | <artifactId>rrd4j</artifactId> |
| 115 | <version>2.2</version> |
Jian Li | 7d180c5 | 2016-02-01 21:53:08 -0800 | [diff] [blame] | 116 | <scope>provided</scope> |
Jian Li | 4614890 | 2016-01-29 13:33:50 -0800 | [diff] [blame] | 117 | </dependency> |
| 118 | <dependency> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 119 | <groupId>com.fasterxml.jackson.core</groupId> |
| 120 | <artifactId>jackson-databind</artifactId> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>com.fasterxml.jackson.core</groupId> |
| 124 | <artifactId>jackson-annotations</artifactId> |
| 125 | </dependency> |
| 126 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 127 | <groupId>org.glassfish.jersey.core</groupId> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 128 | <artifactId>jersey-client</artifactId> |
| 129 | <scope>test</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 132 | <groupId>org.glassfish.jersey.containers</groupId> |
| 133 | <artifactId>jersey-container-servlet</artifactId> |
| 134 | </dependency> |
| 135 | <dependency> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 136 | <groupId>org.easymock</groupId> |
| 137 | <artifactId>easymock</artifactId> |
| 138 | <scope>test</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 141 | <groupId>org.glassfish.jersey.test-framework</groupId> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 142 | <artifactId>jersey-test-framework-core</artifactId> |
| 143 | <scope>test</scope> |
| 144 | </dependency> |
| 145 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 146 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
Jian Li | 4fb7177 | 2016-04-20 09:41:56 -0700 | [diff] [blame] | 147 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 148 | <scope>test</scope> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>org.onosproject</groupId> |
| 152 | <artifactId>onlab-osgi</artifactId> |
| 153 | <version>${project.version}</version> |
| 154 | <classifier>tests</classifier> |
| 155 | <scope>test</scope> |
| 156 | </dependency> |
Ray Milkey | 7c25182 | 2016-04-06 17:38:25 -0700 | [diff] [blame] | 157 | <dependency> |
| 158 | <groupId>org.onosproject</groupId> |
| 159 | <artifactId>onos-rest</artifactId> |
| 160 | <version>${project.version}</version> |
| 161 | <classifier>tests</classifier> |
| 162 | <scope>test</scope> |
| 163 | </dependency> |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 164 | </dependencies> |
| 165 | |
| 166 | <build> |
| 167 | <plugins> |
| 168 | <plugin> |
| 169 | <groupId>org.apache.felix</groupId> |
| 170 | <artifactId>maven-bundle-plugin</artifactId> |
| 171 | <extensions>true</extensions> |
| 172 | <configuration> |
| 173 | <instructions> |
| 174 | <_wab>src/main/webapp/</_wab> |
| 175 | <Include-Resource> |
| 176 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 177 | {maven-resources} |
| 178 | </Include-Resource> |
| 179 | <Bundle-SymbolicName> |
| 180 | ${project.groupId}.${project.artifactId} |
| 181 | </Bundle-SymbolicName> |
| 182 | <Import-Package> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 183 | *,org.glassfish.jersey.servlet |
Jian Li | 6b86a76 | 2016-01-29 09:30:40 -0800 | [diff] [blame] | 184 | </Import-Package> |
| 185 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 186 | </instructions> |
| 187 | </configuration> |
| 188 | </plugin> |
| 189 | </plugins> |
| 190 | </build> |
Ray Milkey | 7c25182 | 2016-04-06 17:38:25 -0700 | [diff] [blame] | 191 | </project> |