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